.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f9fa; /* Inherited from body, but good to keep in mind */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  text-align: center;
  padding-bottom: 40px; /* Space below content */
  padding-top: 10px; /* Small top padding */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px; /* Space between image and content */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area */
  min-height: 200px; /* Minimum image size */
}

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

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: #11A84E; /* Brand color for main title */
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  color: #555555; /* Slightly darker for contrast */
  margin-bottom: 30px;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  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%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.3);
}

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

.page-fishing-games__btn-secondary {
  background: #ffffff;
  color: #11A84E;
  border: 2px solid #11A84E;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Common Section Styles */
.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(1.8rem, 3vw, 2.5rem); /* Responsive font size */
  font-weight: 700;
  color: #11A84E;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-fishing-games__paragraph {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

/* Dark Background Sections */
.page-fishing-games__dark-bg {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Light text color for dark background */
  padding: 60px 0;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
  color: #57E38D; /* Glow color for titles on dark background */
}

.page-fishing-games__dark-bg .page-fishing-games__paragraph,
.page-fishing-games__dark-bg .page-fishing-games__feature-description,
.page-fishing-games__dark-bg .page-fishing-games__list-description {
  color: #A7D9B8; /* Secondary text color for dark background */
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  padding: 60px 0;
}

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

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

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

.page-fishing-games__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F2FFF6; /* Main text color for dark card */
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Secondary text color for dark card */
}

.page-fishing-games__features-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.page-fishing-games__card {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #F2FFF6; /* Default text color for card */
}

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

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

.page-fishing-games__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F2FFF6;
  padding: 15px 20px 10px;
}

.page-fishing-games__card-description {
  font-size: 0.9rem;
  color: #A7D9B8;
  padding: 0 20px 15px;
  text-align: justify;
}

.page-fishing-games__card-btn {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 10px 15px;
  text-align: center;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.page-fishing-games__card-btn:hover {
  opacity: 0.9;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.page-fishing-games__list-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-fishing-games__list-description {
  font-size: 1rem;
  color: #333333;
  text-align: justify;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 0;
}

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

.page-fishing-games__promo-list .page-fishing-games__list-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  color: #F2FFF6;
}

.page-fishing-games__promo-list .page-fishing-games__list-title {
  color: #57E38D; /* Glow color */
}

.page-fishing-games__promo-list .page-fishing-games__list-description {
  color: #A7D9B8;
}

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

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.page-fishing-games__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #11A84E;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-question::marker {
  display: none;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: #e6e6e6;
  border-bottom-color: transparent;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E;
}

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

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #333333;
  text-align: justify;
}

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

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
  color: #F2FFF6; /* Light text for title */
}

.page-fishing-games__cta-final-section .page-fishing-games__paragraph {
  color: #A7D9B8; /* Secondary text for paragraph */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-buttons {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 30px;
    padding-top: 10px !important; /* Ensure small padding top */
  }

  .page-fishing-games__hero-image-wrapper {
    max-height: 400px;
  }

  .page-fishing-games__hero-image {
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__card-btn {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding: 40px 0;
  }

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

  .page-fishing-games__paragraph,
  .page-fishing-games__list-description,
  .page-fishing-games__feature-description,
  .page-fishing-games__card-description,
  .page-fishing-games__faq-answer p {
    font-size: 0.95rem;
  }

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

  .page-fishing-games__card-image,
  .page-fishing-games__features-image,
  .page-fishing-games__cta-image,
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px !important;
  }

  /* Ensure containers with images also adapt */
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__feature-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

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

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