.page-fishing-games {
  padding-top: 10px; /* Small top padding for first section, relying on body for header offset */
  color: #FFFFFF;
  background-color: #000000; /* Dark background as per 3WIN style */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 15px;
  background-color: #0a0909; /* Darker background for hero */
  border-radius: 10px;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9; /* Maintain aspect ratio */
}

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

.page-fishing-games__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* H1 font size with clamp */
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0; /* Main color for emphasis */
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  color: #e0e0e0;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background-color: #EA7C07; /* Login/CTA color */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  min-width: 200px;
  text-align: center;
}

.page-fishing-games__cta-button:hover {
  background-color: #d66a06;
}

.page-fishing-games__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
  min-width: unset;
}

.page-fishing-games__cta-button--large {
  padding: 16px 35px;
  font-size: 1.2rem;
  min-width: 250px;
}

.page-fishing-games__cta-button--secondary {
  background-color: #26A9E0;
  margin-left: 15px;
}

.page-fishing-games__cta-button--secondary:hover {
  background-color: #1f8ec4;
}

.page-fishing-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #26A9E0;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #EA7C07;
  border-radius: 2px;
}

.page-fishing-games__introduction-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__features-section,
.page-fishing-games__tips-section,
.page-fishing-games__faq-section,
.page-fishing-games__action-section {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 0 15px;
}

.page-fishing-games__content-wrapper {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__content-wrapper p {
  margin-bottom: 15px;
  color: #e0e0e0;
  font-size: 1rem;
}

.page-fishing-games__content-wrapper a {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games__content-wrapper a:hover {
  text-decoration: underline;
}

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-fishing-games__step-list,
.page-fishing-games__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-fishing-games__step-item,
.page-fishing-games__tip-item {
  background-color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1rem;
  border-left: 4px solid #26A9E0;
}

.page-fishing-games__step-item strong,
.page-fishing-games__tip-item strong {
  color: #26A9E0;
}

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

.page-fishing-games__feature-card {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2a2a2a;
}

.page-fishing-games__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  object-fit: cover;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
  filter: none; /* No image filters */
}

.page-fishing-games__feature-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.page-fishing-games__faq-list {
  margin-top: 30px;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
}

.page-fishing-games__faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2a2a2a;
}

.page-fishing-games__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-fishing-games__faq-question {
  font-size: 1.15rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
  font-size: 1rem;
  color: #e0e0e0;
}

.page-fishing-games__action-section {
  text-align: center;
  padding: 40px 15px;
  background-color: #0a0909;
  border-radius: 10px;
}

.page-fishing-games__action-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    margin-bottom: 30px;
    padding: 15px 10px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games__cta-button {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 10px;
    min-width: unset;
  }

  .page-fishing-games__cta-button--secondary {
    margin-left: 0;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-fishing-games__content-wrapper,
  .page-fishing-games__faq-list,
  .page-fishing-games__action-section {
    padding: 20px 15px;
  }

  .page-fishing-games__content-wrapper p,
  .page-fishing-games__step-item,
  .page-fishing-games__tip-item,
  .page-fishing-games__feature-description,
  .page-fishing-games__faq-answer {
    font-size: 0.95rem;
  }

  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-fishing-games__feature-icon {
    max-width: 150px; /* Allow slightly smaller icons in mobile, but still > 200px if possible */
    min-width: 200px; /* Enforce global minimum */
    min-height: 200px; /* Enforce global minimum */
  }

  .page-fishing-games__faq-question {
    font-size: 1.05rem;
  }

  .page-fishing-games__action-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-fishing-games__content-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all images within .page-fishing-games are responsive and do not cause overflow */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

/* Color contrast check for specific elements */
.page-fishing-games__main-title { color: #26A9E0; background-color: transparent; } /* Ensure good contrast with dark background */
.page-fishing-games__hero-description { color: #e0e0e0; background-color: transparent; } /* Ensure good contrast with dark background */
.page-fishing-games__cta-button { background-color: #EA7C07; color: #FFFFFF; } /* Good contrast */
.page-fishing-games__cta-button--secondary { background-color: #26A9E0; color: #FFFFFF; } /* Good contrast */
.page-fishing-games__section-title { color: #26A9E0; background-color: transparent; } /* Good contrast */
.page-fishing-games__content-wrapper p { color: #e0e0e0; background-color: transparent; } /* Good contrast */
.page-fishing-games__step-item { background-color: #2a2a2a; color: #f0f0f0; } /* Good contrast */
.page-fishing-games__feature-title { color: #26A9E0; background-color: transparent; } /* Good contrast */
.page-fishing-games__feature-description { color: #e0e0e0; background-color: transparent; } /* Good contrast */
.page-fishing-games__faq-question { color: #26A9E0; background-color: transparent; } /* Good contrast */
.page-fishing-games__faq-answer { color: #e0e0e0; background-color: transparent; } /* Good contrast */