.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as per rules */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #FFFFFF;
}

.page-fishing-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

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

.page-fishing-games__hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-fishing-games__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}

.page-fishing-games__button:hover {
  opacity: 0.9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__button--secondary {
  background: #FFFFFF;
  color: #2F6BFF;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__button--secondary:hover {
  background: #F0F5FF;
  color: #2F6BFF;
}

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

.page-fishing-games__introduction-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
}

.page-fishing-games__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #1F2D3D;
}

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

.page-fishing-games__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-fishing-games__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 15px;
  color: #1F2D3D;
}

.page-fishing-games__card-description {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 15px;
  color: #1F2D3D;
}

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

.page-fishing-games__step-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.page-fishing-games__step-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2F6BFF;
}

.page-fishing-games__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-fishing-games__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
}

.page-fishing-games__faq-question {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

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

.page-fishing-games__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-image-wrapper {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__main-title {
    font-size: 2em;
  }

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

  .page-fishing-games__hero-cta {
    flex-direction: column;
  }

  .page-fishing-games__button {
    width: 100%;
    padding: 10px 20px;
  }

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

  .page-fishing-games__text-content {
    font-size: 0.95em;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__steps-list {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__feature-image {
    height: 200px; /* Adjust height for smaller screens */
  }

  /* Mandatory mobile image overflow fix */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.8em;
  }

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

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

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

  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__faq-section {
    padding: 40px 0;
  }
}