.page-fishing-games {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  color: #333333;
  background-color: #FFFFFF;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Minimal padding-top for first section */
  background-color: #017439;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9; /* For 1920x1080 */
  object-fit: cover;
  object-position: center;
  max-width: 100%; /* Ensure responsiveness */
}

.page-fishing-games__hero-content {
  position: relative; /* Not absolute, for upper-image-lower-text */
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  background-color: #017439;
  color: #FFFFFF;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-fishing-games__btn--register {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-fishing-games__btn--register:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-fishing-games__btn--play {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-fishing-games__btn--play:hover {
  background-color: #005a2d;
  transform: translateY(-2px);
}

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

.page-fishing-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #C30808;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-fishing-games__intro-section, .page-fishing-games__guide-section, .page-fishing-games__promotions-section, .page-fishing-games__faq-section, .page-fishing-games__cta-section {
  padding: 60px 0;
}

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

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

.page-fishing-games__text-content {
  flex: 1;
  line-height: 1.7;
  font-size: 1.05rem;
}

.page-fishing-games__text-content p {
  margin-bottom: 15px;
}

.page-fishing-games__image {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-fishing-games__image--right {
  order: 2;
}

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

.page-fishing-games__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px; /* Adjust max-width for smaller display, but source image is larger */
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-fishing-games__guide-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 20px;
}

.page-fishing-games__guide-list li {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.page-fishing-games__guide-list li strong {
  color: #017439;
}

.page-fishing-games__promo-text {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-fishing-games__btn--view-all {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.page-fishing-games__btn--view-all:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

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

.page-fishing-games__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-fishing-games__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #017439;
  margin-bottom: 10px;
}

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

.page-fishing-games__btn--more-faq {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
  margin: 40px auto 0;
  display: block;
  width: fit-content;
}

.page-fishing-games__btn--more-faq:hover {
  background-color: #005a2d;
  transform: translateY(-2px);
}

.page-fishing-games__cta-description {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333333;
}

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

.page-fishing-games__btn--register-account {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-fishing-games__btn--register-account:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-fishing-games__btn--download-app {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-fishing-games__btn--download-app:hover {
  background-color: #005a2d;
  transform: translateY(-2px);
}

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

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

  .page-fishing-games__image--right {
    order: unset;
  }

  .page-fishing-games__text-content {
    order: 2;
  }

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

  .page-fishing-games__btn {
    width: 80%;
    max-width: 300px;
  }

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

  .page-fishing-games__section-title {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 20px 12px;
  }
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
  .page-fishing-games__feature-icon {
    max-width: 100%; /* Allow full width within parent */
  }
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }
}

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

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

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

  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 25px;
  }

  .page-fishing-games__intro-section, .page-fishing-games__features-section, .page-fishing-games__guide-section, .page-fishing-games__promotions-section, .page-fishing-games__faq-section, .page-fishing-games__cta-section {
    padding: 40px 0;
  }

  .page-fishing-games__text-content p, .page-fishing-games__guide-list li, .page-fishing-games__promo-text, .page-fishing-games__faq-answer, .page-fishing-games__cta-description {
    font-size: 0.95rem;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1rem;
  }
}

/* Ensure content images are at least 200x200px in CSS */
.page-fishing-games__intro-section .page-fishing-games__image,
.page-fishing-games__guide-section .page-fishing-games__image,
.page-fishing-games__features-section .page-fishing-games__feature-icon {
    min-width: 200px;
    min-height: 200px;
}

/* Specific rule to prevent smaller sizes for img within page-fishing-games */
.page-fishing-games__features-section .page-fishing-games__feature-icon {
    width: 200px; /* Base size for icon, but max-width: 100% will make it responsive */
    height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
  .page-fishing-games__features-section .page-fishing-games__feature-icon {
    width: 100%; /* Override fixed width for responsiveness */
    height: auto; /* Override fixed height for responsiveness */
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
  }
  .page-fishing-games__intro-section .page-fishing-games__image,
  .page-fishing-games__guide-section .page-fishing-games__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}