/* style/resources-wim33-popular-game-strategy.css */
.page-resources-wim33-popular-game-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
}

.page-resources-wim33-popular-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  background: #017439; /* Brand primary color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-wim33-popular-game-strategy__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-wim33-popular-game-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-wim33-popular-game-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-wim33-popular-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-resources-wim33-popular-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Only for darkening, not changing color */
}

.page-resources-wim33-popular-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-wim33-popular-game-strategy__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  color: #017439; /* Primary color for titles on light background */
}

.page-resources-wim33-popular-game-strategy__dark-bg .page-resources-wim33-popular-game-strategy__section-title {
  color: #ffffff; /* White for titles on dark background */
}

.page-resources-wim33-popular-game-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-wim33-popular-game-strategy__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-resources-wim33-popular-game-strategy__dark-bg {
  background: #1a1a2e;
  color: #ffffff;
}

.page-resources-wim33-popular-game-strategy__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-wim33-popular-game-strategy__image-center {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-wim33-popular-game-strategy__game-category {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.05); /* Slightly visible background on dark */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-wim33-popular-game-strategy__game-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

.page-resources-wim33-popular-game-strategy__game-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-wim33-popular-game-strategy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-wim33-popular-game-strategy__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-wim33-popular-game-strategy__btn-primary,
.page-resources-wim33-popular-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-wim33-popular-game-strategy__btn-primary {
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
  margin: 10px;
}

.page-resources-wim33-popular-game-strategy__btn-primary:hover {
  background: #a30606;
  border-color: #a30606;
}

.page-resources-wim33-popular-game-strategy__btn-secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
  margin: 10px;
}

.page-resources-wim33-popular-game-strategy__btn-secondary:hover {
  background: #f0f0f0;
  color: #005a2e;
}

.page-resources-wim33-popular-game-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-wim33-popular-game-strategy__faq-list {
  margin-top: 30px;
}

.page-resources-wim33-popular-game-strategy__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-wim33-popular-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-wim33-popular-game-strategy__faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-resources-wim33-popular-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-resources-wim33-popular-game-strategy__faq-item[open] .page-resources-wim33-popular-game-strategy__faq-question {
  border-bottom: 1px solid transparent;
}

.page-resources-wim33-popular-game-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-wim33-popular-game-strategy__faq-item summary {
  list-style: none;
}

.page-resources-wim33-popular-game-strategy__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-resources-wim33-popular-game-strategy__hero-title {
    font-size: 2em;
  }

  .page-resources-wim33-popular-game-strategy__hero-description {
    font-size: 1em;
  }

  .page-resources-wim33-popular-game-strategy__section-title {
    font-size: 1.8em;
  }

  .page-resources-wim33-popular-game-strategy__game-title {
    font-size: 1.5em;
  }

  .page-resources-wim33-popular-game-strategy__paragraph,
  .page-resources-wim33-popular-game-strategy__list li,
  .page-resources-wim33-popular-game-strategy__faq-answer {
    font-size: 1em;
  }

  .page-resources-wim33-popular-game-strategy__container {
    padding: 20px 15px;
  }

  .page-resources-wim33-popular-game-strategy__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-wim33-popular-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-wim33-popular-game-strategy__game-category,
  .page-resources-wim33-popular-game-strategy__introduction-section,
  .page-resources-wim33-popular-game-strategy__games-section,
  .page-resources-wim33-popular-game-strategy__principles-section,
  .page-resources-wim33-popular-game-strategy__analysis-section,
  .page-resources-wim33-popular-game-strategy__expert-advice-section,
  .page-resources-wim33-popular-game-strategy__faq-section,
  .page-resources-wim33-popular-game-strategy__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-resources-wim33-popular-game-strategy__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-wim33-popular-game-strategy__btn-primary,
  .page-resources-wim33-popular-game-strategy__btn-secondary {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
  }

  .page-resources-wim33-popular-game-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-resources-wim33-popular-game-strategy__faq-answer {
    padding: 10px 20px 15px;
  }
}