.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for dark sections */
  background-color: #08160F; /* Overall page background */
}

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

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

.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 contrast */
  display: block;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Ensure text readability */
  border-radius: 10px;
}

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

.page-fishing-games__hero-description {
  color: #A7D9B8;
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

.page-fishing-games__btn-secondary:hover {
  background: #11A84E;
  color: #F2FFF6;
}

.page-fishing-games__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-fishing-games__introduction-section,
.page-fishing-games__advantages-section,
.page-fishing-games__strategy-section,
.page-fishing-games__why-choose-us-section,
.page-fishing-games__final-cta-section {
  padding: 80px 0;
}

.page-fishing-games__games-showcase-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG color for dark sections */
}

.page-fishing-games__text-content {
  color: #A7D9B8;
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__text-secondary {
  color: #A7D9B8;
}

.page-fishing-games__light-bg .page-fishing-games__section-title,
.page-fishing-games__light-bg .page-fishing-games__text-content,
.page-fishing-games__light-bg .page-fishing-games__advantage-title,
.page-fishing-games__light-bg .page-fishing-games__advantage-description,
.page-fishing-games__light-bg .page-fishing-games__strategy-title,
.page-fishing-games__light-bg .page-fishing-games__strategy-description,
.page-fishing-games__light-bg .page-fishing-games__reason-title,
.page-fishing-games__light-bg .page-fishing-games__reason-description {
  color: #F2FFF6; /* Ensure text is light on light background, but here light-bg is relative to dark-bg */
}

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__text-content,
.page-fishing-games__dark-bg .page-fishing-games__card-title,
.page-fishing-games__dark-bg .page-fishing-games__card-description,
.page-fishing-games__dark-bg .page-fishing-games__faq-question,
.page-fishing-games__dark-bg .page-fishing-games__faq-answer {
  color: #F2FFF6;
}

.page-fishing-games__dark-bg .page-fishing-games__text-secondary {
  color: #A7D9B8;
}

/* Game Cards Grid */
.page-fishing-games__game-cards-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card,
.page-fishing-games__step-card,
.page-fishing-games__promo-card {
  background-color: #11271B;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E;
}

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

.page-fishing-games__game-card h3,
.page-fishing-games__step-card h3,
.page-fishing-games__promo-card h3 {
  color: #F2FFF6;
  font-size: 1.4em;
  margin: 20px 15px 10px;
}

.page-fishing-games__game-card p,
.page-fishing-games__step-card p,
.page-fishing-games__promo-card p {
  color: #A7D9B8;
  font-size: 0.95em;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-fishing-games__card-button {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

/* Advantages & Reasons List */
.page-fishing-games__advantage-list,
.page-fishing-games__strategy-list,
.page-fishing-games__reason-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__advantage-item,
.page-fishing-games__strategy-item,
.page-fishing-games__reason-item {
  background-color: #11271B;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-fishing-games__advantage-title,
.page-fishing-games__strategy-title,
.page-fishing-games__reason-title {
  color: #F2FFF6;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-fishing-games__advantage-description,
.page-fishing-games__strategy-description,
.page-fishing-games__reason-description {
  color: #A7D9B8;
  font-size: 1em;
  text-align: justify;
}

/* CTA Center */
.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games__large-button {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* Remove default marker for summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.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 {
  color: #A7D9B8;
  padding: 0 20px 20px;
  font-size: 1em;
  text-align: justify;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 30px 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2em, 6vw, 3em);
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.6em, 5vw, 2.5em);
  }
  .page-fishing-games__advantage-list,
  .page-fishing-games__strategy-list,
  .page-fishing-games__reason-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    min-height: 400px;
    padding: 40px 10px;
    padding-top: 10px !important;
  }
  .page-fishing-games__hero-content {
    max-width: 90%;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games 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: 12px 20px;
  }

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

  .page-fishing-games__advantage-list,
  .page-fishing-games__strategy-list,
  .page-fishing-games__reason-list {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__advantages-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__why-choose-us-section,
  .page-fishing-games__final-cta-section,
  .page-fishing-games__games-showcase-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section {
    padding: 50px 0;
  }

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

  .page-fishing-games__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-fishing-games__text-content,
  .page-fishing-games__advantage-description,
  .page-fishing-games__strategy-description,
  .page-fishing-games__reason-description,
  .page-fishing-games__faq-answer {
    font-size: 0.95em;
  }

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

  .page-fishing-games__game-card,
  .page-fishing-games__step-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__advantage-item,
  .page-fishing-games__strategy-item,
  .page-fishing-games__reason-item,
  .page-fishing-games__faq-item,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__hero-content,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__large-button,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promo-cards-grid,
  .page-fishing-games__advantage-list,
  .page-fishing-games__strategy-list,
  .page-fishing-games__reason-list,
  .page-fishing-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
}