.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Background color */
}

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

.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px; /* Space below content */
  text-align: center;
  overflow: hidden;
  color: #F2FFF6;
  background-color: #08160F; /* Ensure dark background for hero */
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Overlap with image slightly for visual effect */
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-game-guides__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-game-guides__subtitle {
  font-size: clamp(1em, 2vw, 1.3em);
  margin-bottom: 30px;
  color: #A7D9B8;
  line-height: 1.5;
}

.page-game-guides__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-game-guides__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-game-guides__btn-secondary {
  background-color: transparent;
  color: #F2FFF6;
  border: 2px solid #2AD16F;
}

.page-game-guides__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background-color: rgba(42, 209, 111, 0.1);
}

.page-game-guides__intro-section,
.page-game-guides__strategy-section,
.page-game-guides__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

.page-game-guides__intro-section.page-game-guides__light-bg,
.page-game-guides__strategy-section.page-game-guides__light-bg,
.page-game-guides__conclusion-section.page-game-guides__light-bg {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-game-guides__game-sections.page-game-guides__dark-bg,
.page-game-guides__faq-section.page-game-guides__dark-bg {
  background-color: #08160F; /* Main dark background */
  color: #F2FFF6;
  padding: 60px 0;
}

.page-game-guides__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6;
  position: relative;
  padding-bottom: 10px;
}

.page-game-guides__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  border-radius: 2px;
}

.page-game-guides__section-description,
.page-game-guides__text-block {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8;
}

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

.page-game-guides__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E;
}

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

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

.page-game-guides__card-title {
  font-size: 1.4em;
  font-weight: bold;
  padding: 15px 20px 5px;
}

.page-game-guides__card-title a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-game-guides__card-title a:hover {
  color: #2AD16F;
}

.page-game-guides__card-text {
  font-size: 0.95em;
  color: #A7D9B8;
  padding: 0 20px 15px;
  line-height: 1.5;
}

.page-game-guides__card-link {
  display: inline-block;
  background-color: #2AD16F;
  color: #F2FFF6;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-game-guides__card-link:hover {
  background-color: #13994A;
}

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

.page-game-guides__strategy-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-game-guides__strategy-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-game-guides__strategy-text {
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-game-guides__cta-center {
  margin-top: 40px;
}

.page-game-guides__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-game-guides__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  overflow: hidden; /* Ensure content doesn't overflow when closed */
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

.page-game-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
  transform: rotate(45deg);
}

.page-game-guides__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-game-guides__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-game-guides__container {
    padding: 0 15px;
  }

  .page-game-guides__hero-section {
    padding-bottom: 40px;
  }

  .page-game-guides__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

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

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

  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-game-guides__intro-section,
  .page-game-guides__game-sections,
  .page-game-guides__strategy-section,
  .page-game-guides__faq-section,
  .page-game-guides__conclusion-section {
    padding: 40px 0;
  }

  .page-game-guides__section-title {
    font-size: 1.8em;
  }

  .page-game-guides__section-description,
  .page-game-guides__text-block {
    font-size: 0.95em;
  }

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

  .page-game-guides__card-title {
    font-size: 1.2em;
  }

  .page-game-guides__card-text {
    font-size: 0.9em;
  }

  .page-game-guides__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

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

  .page-game-guides__hero-image-wrapper,
  .page-game-guides__game-card,
  .page-game-guides__strategy-item,
  .page-game-guides__faq-item,
  .page-game-guides__container,
  .page-game-guides__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }
}