.page-fishing-games {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color from custom palette */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__section p {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color from custom palette */
  margin-bottom: 20px;
}

.page-fishing-games__dark-section {
  background-color: #11271B; /* Card BG from custom palette */
  color: #F2FFF6; /* Main text color */
}

.page-fishing-games__light-bg {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F; /* Ensure dark background for hero */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height to maintain aspect ratio for 16:9 at 1200px width */
  overflow: hidden;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly, but not over the image */
  background-color: rgba(17, 39, 27, 0.8); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-fishing-games__hero-title {
  color: #F2FFF6; /* Main text color */
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  color: #A7D9B8; /* Secondary text color */
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
  color: #F2FFF6; /* Main text color */
  border: none;
}

.page-fishing-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow color for border */
  border: 2px solid #57E38D;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #57E38D;
  color: #11271B; /* Card BG for text */
}

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

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

.page-fishing-games__benefit-card {
  background-color: #08160F; /* Background color from custom palette */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border color from custom palette */
  text-align: center;
  color: #F2FFF6; /* Main text color */
}

.page-fishing-games__benefit-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: #57E38D; /* Glow color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__benefit-card p {
  color: #A7D9B8; /* Secondary text color */
}

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

.page-fishing-games__game-card {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border color */
  text-align: center;
  color: #F2FFF6; /* Main text color */
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

.page-fishing-games__game-card p {
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 20px;
}

/* Video Section */
.page-fishing-games__video-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-fishing-games__video-description {
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%; /* Explicitly set width for desktop */
  background: #000;
  margin: 0 auto 30px auto;
  border-radius: 10px;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-fishing-games__video-cta {
  margin-top: 30px;
}

/* How-to-play Section */
.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-fishing-games__step-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Main text color */
}

.page-fishing-games__step-title {
  font-size: 1.3em;
  color: #57E38D; /* Glow color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__step-list p {
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 0;
}

/* Tips & Strategies Section */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-fishing-games__strategy-list li {
  background-color: #08160F; /* Background color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Main text color */
}

.page-fishing-games__list-item-title {
  font-size: 1.3em;
  color: #57E38D; /* Glow color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__strategy-list p {
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 0;
}

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

.page-fishing-games__promo-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border color */
  text-align: center;
  color: #F2FFF6; /* Main text color */
}

.page-fishing-games__promo-card h3 {
  color: #57E38D; /* Glow color */
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-fishing-games__promo-card p {
  color: #A7D9B8; /* Secondary text color */
}

/* Why AF88 Section */
.page-fishing-games__advantages-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-fishing-games__advantages-list li {
  background-color: #08160F; /* Background color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Main text color */
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Main text color */
  background-color: #11271B; /* Card BG */
  list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  color: #57E38D; /* Glow color */
  margin-left: 15px;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Secondary text color */
  background-color: #08160F; /* Background color */
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8;
}

/* Final CTA Section */
.page-fishing-games__cta-final {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

.page-fishing-games__cta-final .page-fishing-games__section-title {
  color: #F2FFF6;
}

.page-fishing-games__cta-final p {
  color: #A7D9B8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__hero-content,
  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__benefits-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__video-section,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__step-list,
  .page-fishing-games__strategy-list,
  .page-fishing-games__promo-grid,
  .page-fishing-games__advantages-list,
  .page-fishing-games__faq-list,
  .page-fishing-games__cta-final {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__section {
    padding: 40px 0;
  }

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

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

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Images responsive */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsive */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__video-wrapper {
    padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
    height: 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }

  .page-fishing-games__benefit-icon {
    width: 150px;
    height: 150px;
  }
}