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

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

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

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

.page-fishing-games__hero-content {
  text-align: center;
  padding: 40px 20px;
  background-color: #0A4B2C; /* Deep Green for contrast below image */
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  color: #F2FFF6;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2em, 4vw, 3.5em);
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

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

.page-fishing-games__about-section, 
.page-fishing-games__why-choose-section, 
.page-fishing-games__popular-games-section, 
.page-fishing-games__how-to-play-section, 
.page-fishing-games__promotions-section, 
.page-fishing-games__faq-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #08160F;
}

.page-fishing-games__text-content {
  font-size: 1.05em;
  line-height: 1.8;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__text-content strong {
  color: #F2FFF6;
}

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

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

.page-fishing-games__feature-icon, .page-fishing-games__game-image, .page-fishing-games__step-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensures images are not too wide */
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 20px auto;
}

.page-fishing-games__feature-title, .page-fishing-games__game-title, .page-fishing-games__step-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__feature-description, .page-fishing-games__game-description, .page-fishing-games__step-description {
  font-size: 0.95em;
  color: #A7D9B8;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__game-button, .page-fishing-games__step-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-fishing-games__game-button:hover, .page-fishing-games__step-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(42, 209, 111, 0.5);
}

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

.page-fishing-games__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  font-size: 1.2em;
  color: #F2FFF6;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #0A4B2C;
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games__faq-answer {
  font-size: 1em;
  color: #A7D9B8;
  padding: 0 25px 20px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
}

.page-fishing-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-fishing-games__section-title {
    font-size: 2em;
  }

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

  .page-fishing-games__hero-section img,
  .page-fishing-games__about-section img,
  .page-fishing-games__why-choose-section img,
  .page-fishing-games__popular-games-section img,
  .page-fishing-games__how-to-play-section img,
  .page-fishing-games__promotions-section img,
  .page-fishing-games__faq-section img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__hero-content {
    padding: 30px 15px;
  }

  .page-fishing-games__text-content {
    text-align: left;
  }

  .page-fishing-games__feature-icon, .page-fishing-games__game-image, .page-fishing-games__step-icon {
    max-width: 100%;
    height: auto;
  }

  .page-fishing-games__faq-question,
  .page-fishing-games__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__faq-question::after {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games__feature-title, .page-fishing-games__game-title, .page-fishing-games__step-title {
    font-size: 1.3em;
  }

  .page-fishing-games__game-button, .page-fishing-games__step-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}