.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

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

.page-fishing-games__hero-content {
  position: absolute;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-fishing-games__hero-title {
  font-size: clamp(32px, 5vw, 56px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Border color with opacity */
  color: #57E38D; /* Glow */
}

.page-fishing-games__intro-section,
.page-fishing-games__game-types-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__features-section,
.page-fishing-games__promotions-section,
.page-fishing-games__safety-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__intro-section p,
.page-fishing-games__how-to-play-section p,
.page-fishing-games__promotions-section p,
.page-fishing-games__safety-section p,
.page-fishing-games__faq-answer p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  font-size: 17px;
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  object-fit: cover;
}

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

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

.page-fishing-games__game-card,
.page-fishing-games__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__card-title {
  font-size: 22px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__game-card p,
.page-fishing-games__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

.page-fishing-games__text-center {
  text-align: center;
  color: #A7D9B8; /* Text Secondary */
  margin-top: 20px;
  font-size: 17px;
}

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

.page-fishing-games__step-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #11A84E; /* Main color as accent */
}

.page-fishing-games__step-title {
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__subsection-title {
  font-size: 26px;
  color: #F2FFF6; /* Text Main */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.page-fishing-games__list li {
  background-color: #11271B; /* Card BG */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 17px;
  display: flex;
  align-items: flex-start;
}

.page-fishing-games__list li strong {
  color: #F2FFF6; /* Text Main */
  margin-right: 8px;
}

.page-fishing-games__list li::before {
  content: '✔';
  color: #2AD16F; /* Button top color */
  margin-right: 10px;
  font-weight: bold;
  font-size: 18px;
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-fishing-games__promo-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid #F2C14E; /* Gold accent */
}

.page-fishing-games__promo-title {
  font-size: 22px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__promo-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

.page-fishing-games__faq-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  user-select: none;
  list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #2AD16F; /* Button top color */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

.page-fishing-games__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #08160F; /* Background */
}

.page-fishing-games__cta-content {
  max-width: 900px;
}

.page-fishing-games__cta-title {
  font-size: clamp(30px, 4.5vw, 48px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  font-weight: 700;
}

.page-fishing-games__cta-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

.page-fishing-games__btn-large {
  padding: 18px 40px;
  font-size: 20px;
}

/* Global image reset for content area */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px !important;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 30px;
  }

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

  .page-fishing-games__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 15px;
    margin: 20px 15px 0 15px;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker for mobile */
  }

  .page-fishing-games__hero-title {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__features-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__safety-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 0;
  }

  .page-fishing-games__game-grid,
  .page-fishing-games__feature-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card-image {
    height: 180px;
  }

  .page-fishing-games__card-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__step-title {
    font-size: 20px;
  }

  .page-fishing-games__subsection-title {
    font-size: 22px;
  }

  .page-fishing-games__list li {
    font-size: 16px;
    padding: 12px 15px;
  }

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

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

  .page-fishing-games__cta-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .page-fishing-games__cta-description {
    font-size: 17px;
  }

  .page-fishing-games__btn-large {
    padding: 15px 30px;
    font-size: 18px;
  }

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

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__game-card,
  .page-fishing-games__feature-card,
  .page-fishing-games__step-card,
  .page-fishing-games__promo-item,
  .page-fishing-games__faq-item,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-fishing-games__video-section { /* If video section were present */
    padding-top: 10px !important;
  }
}