.page-game-strategy-guides {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Body background is dark */
}

.page-game-strategy-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-game-strategy-guides__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-game-strategy-guides__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.page-game-strategy-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Slightly transparent overlay for readability */
  border-radius: 10px;
}

.page-game-strategy-guides__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-game-strategy-guides__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategy-guides__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-strategy-guides__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-game-strategy-guides__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid #F2C14E;
  cursor: pointer;
}

.page-game-strategy-guides__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
}

.page-game-strategy-guides__section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.page-game-strategy-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-strategy-guides__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-game-strategy-guides__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-game-strategy-guides__highlight {
  color: #FFD36B;
  font-weight: 600;
}

.page-game-strategy-guides__grid {
  display: grid;
  gap: 30px;
}

.page-game-strategy-guides__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-game-strategy-guides__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-game-strategy-guides__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-strategy-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(242, 193, 78, 0.3);
}

.page-game-strategy-guides__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-game-strategy-guides__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-strategy-guides__card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-game-strategy-guides__card--small {
  text-align: left;
  padding: 25px;
}

.page-game-strategy-guides__card--small .page-game-strategy-guides__btn-secondary {
  margin-top: 20px;
  align-self: flex-start;
}

.page-game-strategy-guides__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-game-strategy-guides__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-game-strategy-guides__text-content {
  flex: 1;
}

.page-game-strategy-guides__sub-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-strategy-guides__image-block {
  flex-shrink: 0;
  max-width: 50%;
}

.page-game-strategy-guides__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-game-strategy-guides__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.page-game-strategy-guides__benefit-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-game-strategy-guides__benefit-title {
  font-size: 1.6rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-strategy-guides__benefit-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #FFF6D6;
}

.page-game-strategy-guides__cta-section {
  background: #111111;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #3A2A12;
}

.page-game-strategy-guides__cta-content {
  max-width: 900px;
}

.page-game-strategy-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* FAQ Section */
details.page-game-strategy-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  color: #FFF6D6;
}

details.page-game-strategy-guides__faq-item summary.page-game-strategy-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-game-strategy-guides__faq-item summary.page-game-strategy-guides__faq-question::-webkit-details-marker {
  display: none;
}

details.page-game-strategy-guides__faq-item summary.page-game-strategy-guides__faq-question:hover {
  background: rgba(242, 193, 78, 0.1); /* Slight hover effect */
}

.page-game-strategy-guides__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}

.page-game-strategy-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-game-strategy-guides__faq-item .page-game-strategy-guides__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
  font-size: 1rem;
  line-height: 1.7;
}

.page-game-strategy-guides__faq-answer p {
  margin-bottom: 10px;
}

.page-game-strategy-guides__faq-answer ul {
  margin-top: 10px;
  padding-left: 20px;
}

.page-game-strategy-guides__faq-answer li {
  margin-bottom: 5px;
}

.page-game-strategy-guides__faq-link {
  color: #F2C14E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-game-strategy-guides__faq-link:hover {
  color: #FFD36B;
}

/* Global image responsiveness */
.page-game-strategy-guides img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-game-strategy-guides__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .page-game-strategy-guides__hero-image {
    object-fit: contain !important; /* HERO image: contain */
    aspect-ratio: unset !important;
    filter: brightness(0.6);
  }

  .page-game-strategy-guides__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-game-strategy-guides__hero-description {
    font-size: 1rem;
  }

  .page-game-strategy-guides__btn-primary,
  .page-game-strategy-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-game-strategy-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Add padding to container */
  }

  .page-game-strategy-guides__section {
    padding: 40px 0;
  }

  .page-game-strategy-guides__container {
    padding: 0 15px;
  }

  .page-game-strategy-guides__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-game-strategy-guides__text-block {
    font-size: 1rem;
    line-height: 1.7;
  }

  .page-game-strategy-guides__grid--3-cols,
  .page-game-strategy-guides__grid--2-cols {
    grid-template-columns: 1fr;
  }

  .page-game-strategy-guides__card {
    padding: 25px;
  }

  .page-game-strategy-guides__card-title {
    font-size: 1.3rem;
  }

  .page-game-strategy-guides__card-text {
    font-size: 0.95rem;
  }

  .page-game-strategy-guides__content-wrapper,
  .page-game-strategy-guides__content-wrapper--reverse {
    flex-direction: column;
    gap: 30px;
  }

  .page-game-strategy-guides__image-block {
    max-width: 100%;
  }

  .page-game-strategy-guides__sub-title {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .page-game-strategy-guides__benefits-list {
    grid-template-columns: 1fr;
  }

  .page-game-strategy-guides__benefit-item {
    padding: 25px;
  }

  .page-game-strategy-guides__benefit-title {
    font-size: 1.4rem;
  }

  .page-game-strategy-guides__benefit-text {
    font-size: 1rem;
  }

  details.page-game-strategy-guides__faq-item summary.page-game-strategy-guides__faq-question {
    padding: 15px;
  }

  .page-game-strategy-guides__faq-qtext {
    font-size: 1rem;
  }

  .page-game-strategy-guides__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }

  details.page-game-strategy-guides__faq-item .page-game-strategy-guides__faq-answer {
    padding: 0 15px 15px;
  }

  .page-game-strategy-guides img,
  .page-game-strategy-guides__card-image,
  .page-game-strategy-guides__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-game-strategy-guides__section,
  .page-game-strategy-guides__card,
  .page-game-strategy-guides__container,
  .page-game-strategy-guides__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}