:root {
  --fcb8-primary: #11A84E;
  --fcb8-secondary: #22C768;
  --fcb8-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --fcb8-card-bg: #11271B;
  --fcb8-background: #08160F;
  --fcb8-text-main: #F2FFF6;
  --fcb8-text-secondary: #A7D9B8;
  --fcb8-border: #2E7A4E;
  --fcb8-glow: #57E38D;
  --fcb8-gold: #F2C14E;
  --fcb8-divider: #1E3A2A;
  --fcb8-deep-green: #0A4B2C;
}

.page-fishing-games {
  background-color: var(--fcb8-background);
  color: var(--fcb8-text-main);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.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 as body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

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

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

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--fcb8-gold);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__description {
  font-size: 1.2rem;
  color: var(--fcb8-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.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;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  cursor: pointer;
}

.page-fishing-games__btn-primary {
  background: var(--fcb8-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.3);
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.5);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--fcb8-primary);
  border: 2px solid var(--fcb8-primary);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--fcb8-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__cta-buttons--centered {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  color: var(--fcb8-gold);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  color: var(--fcb8-text-main);
  margin-bottom: 20px;
}

.page-fishing-games__text-block span.page-fishing-games__keyword {
  color: var(--fcb8-gold);
  font-weight: bold;
}

.page-fishing-games__link {
  color: var(--fcb8-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__link:hover {
  color: var(--fcb8-primary);
  text-decoration: underline;
}

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

.page-fishing-games__feature-card {
  background-color: var(--fcb8-card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: var(--fcb8-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__card-description {
  font-size: 1rem;
  color: var(--fcb8-text-secondary);
}

.page-fishing-games__game-list,
.page-fishing-games__promo-list,
.page-fishing-games__tip-list,
.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-fishing-games__list-item {
  background-color: var(--fcb8-card-bg);
  border-left: 5px solid var(--fcb8-primary);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__list-item-title {
  font-size: 1.3rem;
  color: var(--fcb8-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__list-item-description {
  font-size: 1rem;
  color: var(--fcb8-text-secondary);
}

.page-fishing-games__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
  max-width: 800px;
}

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

.page-fishing-games__faq-item {
  background-color: var(--fcb8-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--fcb8-text-main);
  cursor: pointer;
  background-color: var(--fcb8-deep-green);
  border-bottom: 1px solid var(--fcb8-divider);
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  color: var(--fcb8-gold);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--fcb8-text-secondary);
  background-color: var(--fcb8-card-bg);
  border-top: 1px solid var(--fcb8-divider);
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
  color: var(--fcb8-text-secondary);
}

.page-fishing-games__cta-final-section {
  background-color: var(--fcb8-deep-green);
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

/* Ensure content area images are not smaller than 200px (desktop/tablet) */
.page-fishing-games__hero-image,
.page-fishing-games__feature-image,
.page-fishing-games__image-full-width {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__download-guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

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

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

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

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

  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__feature-card,
  .page-fishing-games__image-full-width,
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}