.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Default text color for the main page content on dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

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

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

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

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly over the image for visual flow */
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%); /* Darker background for text readability */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F2FFF6; /* Default for dark background sections */
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #11A84E; /* Brand color for titles on light backgrounds */
}

.page-fishing-games__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.page-fishing-games__light-bg .page-fishing-games__text-block {
  color: #333333; /* Dark text on light background */
}

.page-fishing-games__dark-bg {
  background-color: #08160F; /* Main background color */
  color: #F2FFF6;
  padding: 60px 0;
}

.page-fishing-games__light-bg {
  background-color: #f8f8f8; /* Light background for contrast sections */
  color: #333333;
  padding: 60px 0;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

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

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

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

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__feature-card,
.page-fishing-games__game-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

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

.page-fishing-games__step-item {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-fishing-games__step-item:last-child {
  margin-bottom: 0;
}

.page-fishing-games__step-title {
  font-size: 1.3rem;
  color: #11A84E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__step-item p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
}

.page-fishing-games__step-item a {
  color: #13994A;
  text-decoration: underline;
}

.page-fishing-games__step-item a:hover {
  color: #2AD16F;
}

.page-fishing-games__tips-section .page-fishing-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-fishing-games__image--left {
  flex: 1;
  min-width: 300px; /* Ensure image doesn't get too small */
}

.page-fishing-games__tips-list {
  flex: 2;
  list-style: none;
  padding: 0;
}

.page-fishing-games__tip-item {
  margin-bottom: 20px;
  color: #333333;
}

.page-fishing-games__tip-item:last-child {
  margin-bottom: 0;
}

.page-fishing-games__tip-title {
  font-size: 1.25rem;
  color: #11A84E;
  margin-bottom: 8px;
  font-weight: 600;
}

.page-fishing-games__tip-item p {
  font-size: 0.95rem;
  color: #333333;
}

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

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #11A84E;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−'; /* Changed by JS */
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

.page-fishing-games__cta-final-section {
  text-align: center;
  padding: 80px 0;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
  color: #11A84E;
  margin-bottom: 20px;
}

.page-fishing-games__cta-final-section .page-fishing-games__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-fishing-games__cta-final-section a {
  color: #13994A;
  text-decoration: underline;
}

.page-fishing-games__cta-final-section a:hover {
  color: #2AD16F;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }

  .page-fishing-games__feature-grid, .page-fishing-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .page-fishing-games__tips-section .page-fishing-games__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__image--left {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

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

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

  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 25px;
  }

  .page-fishing-games__text-block {
    font-size: 0.95rem;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

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

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

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

  .page-fishing-games__intro-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding: 40px 0;
  }

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

  .page-fishing-games__faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }

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

  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 10vw, 2.2rem);
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
  }
  .page-fishing-games__hero-description {
    font-size: 0.9rem;
  }
  .page-fishing-games__card-title {
    font-size: 1.3rem;
  }
  .page-fishing-games__step-title,
  .page-fishing-games__tip-title {
    font-size: 1.1rem;
  }
  .page-fishing-games__faq-question {
    font-size: 0.95rem;
  }
  .page-fishing-games__faq-answer p {
    font-size: 0.9rem;
  }
}