.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main, #F2FFF6); /* Default text color, adjust based on section background */
  background-color: var(--Background, #08160F); /* Default background color */
}

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

.page-fishing-games__section-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__paragraph {
  margin-bottom: 20px;
  text-align: justify;
  color: var(--Text-Secondary, #A7D9B8);
}

.page-fishing-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn--primary:hover {
  opacity: 0.9;
}

.page-fishing-games__btn--secondary {
  background: transparent;
  color: var(--Text-Main, #F2FFF6);
  border: 2px solid var(--Border, #2E7A4E);
}

.page-fishing-games__btn--secondary:hover {
  background: rgba(46, 122, 78, 0.2);
}

.page-fishing-games__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-fishing-games__image--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Color Contrast Handling */
.page-fishing-games__dark-bg {
  background-color: var(--Background, #08160F);
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__dark-bg .page-fishing-games__paragraph,
.page-fishing-games__dark-bg .page-fishing-games__card-text {
  color: var(--Text-Secondary, #A7D9B8);
}

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__card-title {
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__light-bg {
  background-color: #ffffff; /* Explicitly white for contrast */
  color: #333333; /* Dark text for light background */
}

.page-fishing-games__light-bg .page-fishing-games__paragraph,
.page-fishing-games__light-bg .page-fishing-games__card-text {
  color: #555555;
}

.page-fishing-games__light-bg .page-fishing-games__section-title,
.page-fishing-games__light-bg .page-fishing-games__card-title {
  color: #333333;
}

.page-fishing-games__card {
  background-color: var(--Card-B-G, #11271B);
  color: var(--Text-Main, #F2FFF6);
  border: 1px solid var(--Border, #2E7A4E);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games__card-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__card-text {
  font-size: 0.95em;
  color: var(--Text-Secondary, #A7D9B8);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  min-height: 600px;
  text-align: center;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  /* No fixed font-size, rely on clamp if needed, otherwise only relative units */
  font-size: clamp(2.5rem, 5vw, 4.5rem); /* Example clamp for responsive H1 */
}

.page-fishing-games__lead-text {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 80px 0;
}

/* Benefits Section */
.page-fishing-games__benefits-section {
  padding: 80px 0;
}

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

/* Games Showcase */
.page-fishing-games__games-showcase {
  padding: 80px 0;
}

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

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__guide-item {
  background-color: var(--Card-B-G, #11271B);
  border: 1px solid var(--Border, #2E7A4E);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__guide-step-title {
  color: var(--Text-Main, #F2FFF6);
  font-size: 1.25em;
  margin-bottom: 10px;
}

.page-fishing-games__guide-step-text {
  color: var(--Text-Secondary, #A7D9B8);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
}

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

.page-fishing-games__promo-card {
  background-color: var(--Card-B-G, #11271B);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--Border, #2E7A4E);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsibility Section */
.page-fishing-games__responsibility-section {
  padding: 80px 0;
  text-align: center;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: var(--Card-B-G, #11271B);
  border: 1px solid var(--Divider, #1E3A2A);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--Text-Main, #F2FFF6);
  list-style: none;
  user-select: none;
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  color: var(--Text-Secondary, #A7D9B8);
}

.page-fishing-games__faq-answer p {
  margin: 0;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
  }
  .page-fishing-games__lead-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__hero-section {
    min-height: 450px;
    padding-bottom: 40px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 6vw, 3rem) !important;
  }

  .page-fishing-games__lead-text {
    font-size: 1em;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px !important;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__benefits-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__responsibility-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding: 50px 0;
  }

  .page-fishing-games__hero-image,
  .page-fishing-games__image,
  .page-fishing-games__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__intro-section .page-fishing-games__container,
  .page-fishing-games__benefits-section .page-fishing-games__container,
  .page-fishing-games__games-showcase .page-fishing-games__container,
  .page-fishing-games__guide-section .page-fishing-games__container,
  .page-fishing-games__promotions-section .page-fishing-games__container,
  .page-fishing-games__responsibility-section .page-fishing-games__container,
  .page-fishing-games__faq-section .page-fishing-games__container,
  .page-fishing-games__cta-final-section .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__benefits-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
  }
  .page-fishing-games__lead-text {
    font-size: 0.9em;
  }
}

/* Ensure content area images are at least 200px */
.page-fishing-games__intro-section img,
.page-fishing-games__benefits-section img,
.page-fishing-games__games-showcase img,
.page-fishing-games__guide-section img,
.page-fishing-games__promotions-section img,
.page-fishing-games__responsibility-section img,
.page-fishing-games__faq-section img,
.page-fishing-games__cta-final-section img {
  min-width: 200px;
  min-height: 200px;
}