.page-game-strategy-guides {
  color: #F2FFF6; /* Main text on dark background */
  background-color: var(--bg, #08160F); /* Default background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-game-strategy-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  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); /* Darken image for text readability */
}

.page-game-strategy-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #F2FFF6;
  padding: 20px;
  border-radius: 10px;
  background: rgba(17, 40, 27, 0.7); /* Card BG with transparency */
}

.page-game-strategy-guides__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive H1 font size */
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main title */
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-game-strategy-guides__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-game-strategy-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-guides__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-guides__cta-button--secondary {
  background: #11A84E;
  border: 2px solid #2AD16F;
}

.page-game-strategy-guides__cta-button--secondary:hover {
  background: #22C768;
}

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

.page-game-strategy-guides__intro-section,
.page-game-strategy-guides__strategy-overview-section,
.page-game-strategy-guides__game-specific-section,
.page-game-strategy-guides__advanced-tips-section,
.page-game-strategy-guides__faq-section,
.page-game-strategy-guides__conclusion-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-game-strategy-guides__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: #F2C14E; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  line-height: 1.3;
}

.page-game-strategy-guides__content-block {
  background-color: #11271B; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  color: #F2FFF6;
}

.page-game-strategy-guides__content-block p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #A7D9B8;
}

.page-game-strategy-guides__sub-title {
  font-size: clamp(1.4em, 3vw, 2em);
  color: #2AD16F; /* Green for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-game-strategy-guides__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-game-strategy-guides__intro-text {
  text-align: center;
  font-size: 1.2em;
  color: #A7D9B8;
  margin-bottom: 40px;
}

.page-game-strategy-guides__game-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy-guides__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
}

.page-game-strategy-guides__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-game-strategy-guides__card-title {
  font-size: 1.5em;
  font-weight: 600;
  padding: 20px 20px 10px;
  line-height: 1.3;
  color: #F2C14E; /* Gold for card titles */
}

.page-game-strategy-guides__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-game-strategy-guides__card-title a:hover {
  color: #57E38D;
}

.page-game-strategy-guides__card-content {
  padding: 0 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-game-strategy-guides__card-content p {
  font-size: 0.95em;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-game-strategy-guides__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8;
  flex-grow: 1;
}

.page-game-strategy-guides__list li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-game-strategy-guides__card-link {
  display: inline-block;
  margin-top: auto;
  padding: 10px 15px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-game-strategy-guides__card-link:hover {
  background-color: #11A84E;
}

.page-game-strategy-guides__faq-list {
  margin-top: 40px;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 20px;
}

.page-game-strategy-guides__faq-item {
  border-bottom: 1px solid #1E3A2A; /* Divider */
  padding: 15px 0;
}

.page-game-strategy-guides__faq-item:last-child {
  border-bottom: none;
}

.page-game-strategy-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Main Text */
  padding: 10px 0;
}

.page-game-strategy-guides__faq-question:hover {
  color: #2AD16F;
}

.page-game-strategy-guides__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-game-strategy-guides__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #57E38D; /* Glow */
}

.page-game-strategy-guides__faq-item[open] .page-game-strategy-guides__faq-toggle {
  content: '−';
}

.page-game-strategy-guides__faq-answer {
  padding: 10px 0 10px 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Secondary Text */
  line-height: 1.5;
}

/* Details element specific styling */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-game-strategy-guides__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-game-strategy-guides__hero-content {
    padding: 15px;
  }

  .page-game-strategy-guides__main-title {
    font-size: 2.2em;
  }

  .page-game-strategy-guides__description {
    font-size: 1em;
  }

  .page-game-strategy-guides__cta-button,
  .page-game-strategy-guides__cta-button--secondary {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-game-strategy-guides__intro-section,
  .page-game-strategy-guides__strategy-overview-section,
  .page-game-strategy-guides__game-specific-section,
  .page-game-strategy-guides__advanced-tips-section,
  .page-game-strategy-guides__faq-section,
  .page-game-strategy-guides__conclusion-section {
    padding: 40px 0;
  }

  .page-game-strategy-guides__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-game-strategy-guides__content-block {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-game-strategy-guides__content-block p {
    font-size: 0.95em;
  }

  .page-game-strategy-guides__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-game-strategy-guides__game-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-strategy-guides__card-title {
    font-size: 1.3em;
    padding: 15px 15px 8px;
  }

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

  .page-game-strategy-guides__card-content p,
  .page-game-strategy-guides__list li {
    font-size: 0.9em;
  }

  .page-game-strategy-guides__faq-list {
    padding: 15px;
  }

  .page-game-strategy-guides__faq-question {
    font-size: 1em;
    padding: 8px 0;
  }

  .page-game-strategy-guides__faq-answer {
    padding: 8px 0 8px 15px;
    font-size: 0.95em;
  }

  /* Mobile image responsiveness */
  .page-game-strategy-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-game-strategy-guides__section,
  .page-game-strategy-guides__card,
  .page-game-strategy-guides__container,
  .page-game-strategy-guides__hero-section,
  .page-game-strategy-guides__intro-section,
  .page-game-strategy-guides__strategy-overview-section,
  .page-game-strategy-guides__game-specific-section,
  .page-game-strategy-guides__advanced-tips-section,
  .page-game-strategy-guides__faq-section,
  .page-game-strategy-guides__conclusion-section,
  .page-game-strategy-guides__content-block,
  .page-game-strategy-guides__game-card-grid,
  .page-game-strategy-guides__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-game-strategy-guides__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-game-strategy-guides__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}