.page-fishing-games {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-fishing-games__hero-section {
  text-align: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.page-fishing-games__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-fishing-games__button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

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

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

.page-fishing-games__button--secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
}

.page-fishing-games__button--center {
  margin: 30px auto 0 auto;
  display: block;
  max-width: 250px;
}

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

.page-fishing-games__intro-section,
.page-fishing-games__features-section,
.page-fishing-games__game-showcase,
.page-fishing-games__how-to-play-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  padding: 60px 0;
  background-color: #08160F;
}

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

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

.page-fishing-games__feature-card,
.page-fishing-games__game-card {
  background-color: #11271B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-icon,
.page-fishing-games__game-thumbnail,
.page-fishing-games__promotion-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-fishing-games__game-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__game-title a:hover {
  color: #2AD16F;
}

.page-fishing-games__feature-description,
.page-fishing-games__game-description {
  font-size: 1em;
  color: #A7D9B8;
}

.page-fishing-games__how-to-play-section {
  background-color: #0A4B2C;
}

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

.page-fishing-games__step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.page-fishing-games__step-number {
  background-color: #2AD16F;
  color: #08160F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  font-weight: bold;
  flex-shrink: 0;
}

.page-fishing-games__step-title {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 5px;
}

.page-fishing-games__step-description {
  font-size: 0.95em;
  color: #A7D9B8;
}

.page-fishing-games__promotion-card {
  background-color: #11271B;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__promotion-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-fishing-games__promotion-content {
  padding: 30px;
  text-align: center;
}

.page-fishing-games__promotion-title {
  font-size: 1.8em;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-fishing-games__promotion-description {
  font-size: 1.05em;
  color: #A7D9B8;
  margin-bottom: 25px;
}

.page-fishing-games__faq-list {
  display: grid;
  gap: 20px;
}

.page-fishing-games__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__faq-question {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.page-fishing-games__faq-answer {
  font-size: 1em;
  color: #A7D9B8;
  display: none;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  display: block;
}

.page-fishing-games__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A4B2C;
}

.page-fishing-games__cta-title {
  font-size: 2.8em;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card {
    padding: 20px;
  }
  .page-fishing-games__feature-icon,
  .page-fishing-games__game-thumbnail,
  .page-fishing-games__promotion-image {
    max-width: 100%;
    height: auto;
  }
  .page-fishing-games__promotion-card {
    flex-direction: column;
  }
  .page-fishing-games__promotion-content {
    padding: 20px;
  }
  .page-fishing-games__faq-item {
    padding: 20px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__cta-title {
    font-size: 2em;
  }
  .page-fishing-games__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    padding: 30px 0;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-fishing-games__description {
    font-size: 0.95em;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games__text {
    font-size: 0.95em;
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__game-title {
    font-size: 1.3em;
  }
  .page-fishing-games__step-title {
    font-size: 1.2em;
  }
  .page-fishing-games__promotion-title {
    font-size: 1.5em;
  }
  .page-fishing-games__faq-question {
    font-size: 1.2em;
  }
  .page-fishing-games__cta-title {
    font-size: 1.8em;
  }
}