.page-game-guides {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for the page, from custom palette */
  background-color: var(--background, #08160F); /* Page background, from custom palette */
}

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

/* Hero Section */
.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background, #08160F); /* Ensure background for text contrast */
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px; /* Limit height on large screens */
  object-fit: cover;
  display: block;
}

.page-game-guides__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1; /* Ensure content is above any background elements if layered */
  color: var(--text-main, #F2FFF6); /* Light text for dark background */
}

.page-game-guides__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: var(--gold, #F2C14E); /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-game-guides__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8); /* Secondary text color */
}

/* General Section Styling */
.page-game-guides__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold, #F2C14E);
  text-align: center;
  margin: 60px 0 40px;
  line-height: 1.3;
}

.page-game-guides__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  margin: 30px 0 15px;
}

.page-game-guides__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-game-guides__text-block strong {
  color: var(--gold, #F2C14E);
}

.page-game-guides__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-game-guides__list-item {
  margin-bottom: 10px;
}

.page-game-guides__list-item strong {
  color: var(--glow, #57E38D); /* Green glow for list item emphasis */
}

.page-game-guides__dark-section {
  background-color: var(--card-bg, #11271B); /* Darker background for contrast sections */
  padding: 60px 0;
  color: var(--text-main, #F2FFF6);
}

/* Content Grids */
.page-game-guides__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

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

.page-game-guides__content-grid .page-game-guides__text-content,
.page-game-guides__content-grid .page-game-guides__image-wrapper {
  flex: 1;
}

.page-game-guides__image-wrapper {
  min-width: 200px; /* Ensure images are not too small */
}

.page-game-guides__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-game-guides__cta-button--secondary {
  background: none;
  border: 2px solid var(--glow, #57E38D); /* Border with glow color */
  color: var(--glow, #57E38D);
}

.page-game-guides__cta-button--secondary:hover {
  background: var(--glow, #57E38D);
  color: var(--background, #08160F);
}

.page-game-guides__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3rem;
  min-width: 250px;
}

.page-game-guides__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-game-guides__button-group .page-game-guides__cta-button {
  flex-grow: 1;
  max-width: 300px;
}

/* FAQ Section */
.page-game-guides__faq-section {
  padding: 60px 0;
  background-color: var(--background, #08160F);
}

.page-game-guides__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-game-guides__faq-item {
  background-color: var(--card-bg, #11271B); /* Card background */
  border: 1px solid var(--divider, #1E3A2A); /* Divider color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-game-guides__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--glow, #57E38D); /* Question color */
  outline: none;
  list-style: none; /* Hide default marker */
}

.page-game-guides__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-game-guides__faq-qtext {
  flex-grow: 1;
}

.page-game-guides__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold, #F2C14E); /* Toggle color */
}

.page-game-guides__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8); /* Answer text color */
}

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

.page-game-guides__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Links within content */
.page-game-guides a {
  color: var(--glow, #57E38D); /* Link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides a:hover {
  color: var(--gold, #F2C14E); /* Hover color */
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-game-guides__container {
    padding: 0 15px; /* Smaller padding on mobile */
  }

  .page-game-guides__hero-section {
    padding-top: 10px !important; /* Small top padding on mobile */
    padding-bottom: 40px;
  }

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

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

  .page-game-guides__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-game-guides__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin: 40px 0 30px;
  }

  .page-game-guides__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin: 25px 0 10px;
  }

  .page-game-guides__text-block,
  .page-game-guides__list-item,
  .page-game-guides__faq-item summary,
  .page-game-guides__faq-answer {
    font-size: 1rem;
  }

  .page-game-guides__content-grid {
    flex-direction: column; /* Stack content on mobile */
    gap: 30px;
  }

  .page-game-guides__content-grid--reverse {
    flex-direction: column; /* Stack content on mobile */
  }

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

  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container,
  .page-game-guides__image-wrapper,
  .page-game-guides__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video related mobile adaptations (if any video is added) */
  .page-game-guides video,
  .page-game-guides__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides__video-section,
  .page-game-guides__video-container,
  .page-game-guides__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-game-guides__video-section {
    padding-top: 10px !important;
  }
  .page-game-guides__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Button mobile adaptations */
  .page-game-guides__cta-button,
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary,
  .page-game-guides a[class*="button"],
  .page-game-guides a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__button-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__button-group .page-game-guides__cta-button {
    max-width: 100%; /* Ensure buttons take full width */
  }
}