.page-game-guides {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--background-color); /* Default background for the page content */
}

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

.page-game-guides__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-game-guides__card-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-game-guides__text-main {
  color: var(--text-main);
}

.page-game-guides__text-secondary {
  color: var(--text-secondary);
}

.page-game-guides__text-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  background-color: var(--deep-green);
  text-align: center;
  overflow: hidden;
}

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

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 1920px; /* Ensure image doesn't stretch beyond its intended max */
}

.page-game-guides__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  z-index: 1;
  background-color: rgba(17, 168, 78, 0.1); /* Subtle overlay for readability */
  border-radius: 10px;
  margin-top: 30px;
}

.page-game-guides__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-main);
}

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

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.page-game-guides__introduction-section,
.page-game-guides__guide-section,
.page-game-guides__faq-section,
.page-game-guides__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-game-guides__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main);
}

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

.page-game-guides__paragraph {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-game-guides__image-block {
  text-align: center;
  margin: 40px 0;
}

.page-game-guides__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element for max-width */
  margin: 0 auto;
}

.page-game-guides__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-game-guides__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-game-guides__list-item::before {
  content: '✔️'; /* Unicode checkmark */
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-game-guides__faq-list {
  margin-top: 30px;
}

.page-game-guides__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-game-guides__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none; /* Remove default marker for details */
  outline: none;
}

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

.page-game-guides__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-game-guides__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--secondary-color);
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
  content: '−'; /* Change to minus when open, handled by JS for non-native details */
}

.page-game-guides__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides__hero-content {
    padding: 30px 15px;
  }
  .page-game-guides__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-game-guides__hero-description {
    font-size: 1rem;
  }
  .page-game-guides__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-game-guides__sub-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  }
  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  .page-game-guides__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-game-guides {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-game-guides__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-game-guides__hero-content {
    padding: 25px 15px;
    margin-top: 20px;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-game-guides__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-game-guides__cta-button,
  .page-game-guides__cta-button--large {
    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;
    margin-bottom: 10px;
  }
  .page-game-guides__container {
    padding: 0 15px;
  }
  .page-game-guides__introduction-section,
  .page-game-guides__guide-section,
  .page-game-guides__faq-section,
  .page-game-guides__conclusion-section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-game-guides__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-top: 25px;
  }
  .page-game-guides__paragraph,
  .page-game-guides__list-item,
  .page-game-guides__faq-answer {
    font-size: 0.9rem;
  }
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides__image-block,
  .page-game-guides__faq-item,
  .page-game-guides__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-game-guides__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-game-guides__faq-toggle {
    font-size: 1.3rem;
  }
}