.page-fishing-games {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
}

.page-fishing-games__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1390px;
  margin: 0 auto;
  gap: 20px;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  border-radius: 12px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9; /* Default aspect ratio for hero */
}

.page-fishing-games__hero-content {
  padding: 0 20px 40px;
  max-width: 900px;
}

.page-fishing-games__main-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem); /* Adjusted H1 for better responsiveness */
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold for section titles */
  text-align: center;
  margin: 60px 20px 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-fishing-games__features-section,
.page-fishing-games__games-showcase,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section,
.page-fishing-games__call-to-action-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-fishing-games__feature-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #57E38D; /* Glow color */
  margin-bottom: 15px;
}

.page-fishing-games__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8;
}

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

.page-fishing-games__game-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency in grid */
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6;
  margin: 20px 15px 15px;
}

.page-fishing-games__game-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: background 0.2s ease;
}

.page-fishing-games__game-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-fishing-games__step-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-card .page-fishing-games__card-title {
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-fishing-games__step-card .page-fishing-games__card-description {
  color: #A7D9B8;
}

.page-fishing-games__step-card .page-fishing-games__card-description a {
  color: #57E38D;
  text-decoration: none;
  font-weight: 600;
}

.page-fishing-games__step-card .page-fishing-games__card-description a:hover {
  text-decoration: underline;
}

.page-fishing-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-fishing-games__faq-item {
  background-color: #11271B;
  border: 1px solid #1E3A2A; /* Divider color */
  border-radius: 10px;
  padding: 20px;
}

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

.page-fishing-games__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-fishing-games__call-to-action-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #0A4B2C;
  border-radius: 15px;
  margin-bottom: 40px;
}

.page-fishing-games__call-to-action-section .page-fishing-games__section-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #F2FFF6; /* Main text color for CTA title */
}

.page-fishing-games__call-to-action-section .page-fishing-games__section-title::after {
  background-color: #F2C14E; /* Gold divider for CTA */
}

.page-fishing-games__cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Adjustments */
@media (max-width: 849px) {
  .page-fishing-games__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .page-fishing-games__hero-image {
    aspect-ratio: 4/3; /* Adjust aspect ratio for smaller screens */
  }

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section,
  .page-fishing-games__features-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__call-to-action-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure all content images are responsive and don't overflow */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }

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

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

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

  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__step-card,
  .page-fishing-games__faq-item {
    padding: 20px;
  }

  .page-fishing-games__game-image {
    height: 150px;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__steps-grid {
    grid-template-columns: 1fr; /* Single column layout for very small screens */
  }

  .page-fishing-games__hero-image {
    aspect-ratio: 3/2;
  }

  .page-fishing-games__game-image {
    height: 200px; /* Adjust height for single column to be larger */
  }

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

  .page-fishing-games__cta-button {
    width: 100%;
    max-width: 300px;
  }
}