.page-fishing-games {
  padding-top: 10px; /* Small top padding for first section */
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-fishing-games__hero-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  padding-bottom: 50px;
  color: #FFFFFF;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.page-fishing-games__hero-content {
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-fishing-games__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-fishing-games__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
}

.page-fishing-games__button--primary:hover {
  box-shadow: 0 6px 12px #A5C4FF;
  transform: translateY(-2px);
}

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

.page-fishing-games__button--secondary:hover {
  background-color: #F0F5FF;
  color: #2F6BFF;
  box-shadow: 0 6px 12px rgba(47, 107, 255, 0.2);
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-fishing-games__section-description {
  font-size: 1.1rem;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__about-section,
.page-fishing-games__tips-section {
  padding: 80px 0;
}

.page-fishing-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-fishing-games__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-fishing-games__text-content {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__text-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-fishing-games__image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__features-list,
.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-fishing-games__features-list li,
.page-fishing-games__tips-list li {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #1F2D3D;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__features-list li::before,
.page-fishing-games__tips-list li::before {
  content: '✅';
  margin-right: 10px;
  font-size: 1.2em;
}

.page-fishing-games__popular-games-section {
  background-color: #F4F7FB;
  padding: 80px 0;
}

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

.page-fishing-games__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__game-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 0.95rem;
  color: #1F2D3D;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-fishing-games__button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-fishing-games__cta-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-fishing-games__cta-content {
  max-width: 900px;
}

.page-fishing-games__cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-fishing-games__cta-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-fishing-games__button--large {
  padding: 18px 36px;
  font-size: 1.15rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games__content-wrapper {
    flex-direction: column;
  }

  .page-fishing-games__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }

  .page-fishing-games__main-title {
    font-size: 2.2rem;
  }

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

  .page-fishing-games__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-fishing-games__cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 20px;
  }

  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-fishing-games__main-title {
    font-size: 1.8rem;
  }

  .page-fishing-games__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-fishing-games__section-title {
    font-size: 1.8rem;
    padding-top: 40px;
  }

  .page-fishing-games__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-fishing-games__about-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__cta-section {
    padding: 50px 0;
  }

  .page-fishing-games__games-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__cta-title {
    font-size: 1.8rem;
  }

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

  /* Critical: Ensure images do not overflow on mobile */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-fishing-games__main-title {
    font-size: 1.5rem;
  }

  .page-fishing-games__section-title {
    font-size: 1.6rem;
  }

  .page-fishing-games__cta-title {
    font-size: 1.6rem;
  }
}