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

/* body 已 padding-top: var(--header-offset)；页面禁止再写该变量 */
.page-fishing-games {
  background-color: var(--bg-dark-green);
  color: var(--text-main-light);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  box-sizing: border-box;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.7); /* Slightly darken image for better text contrast */
}

.page-fishing-games__hero-content {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.page-fishing-games__main-title {
  color: var(--text-main-light);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.page-fishing-games__tagline {
  color: var(--text-secondary-light);
  font-size: 1.1rem;
  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 {
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: var(--btn-gradient);
  color: var(--text-main-light);
  border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
  box-shadow: 0 6px 15px var(--glow-green);
  transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
  background: var(--glow-green);
  color: var(--bg-dark-green);
  transform: translateY(-2px);
}

.page-fishing-games__section {
  padding: 80px 0;
  box-sizing: border-box;
}

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

.page-fishing-games__section-title {
  color: var(--gold);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.page-fishing-games__text-block {
  color: var(--text-secondary-light);
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__text-block strong {
  color: var(--text-main-light);
}

.page-fishing-games__introduction {
  background-color: var(--bg-dark-green);
}

.page-fishing-games__why-choose {
  background-color: var(--deep-green);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-fishing-games__card {
  background-color: var(--card-bg-dark-green);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-green);
  min-height: 450px; /* Ensure cards have a minimum height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6), 0 0 15px var(--glow-green);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure image behaves as a block element */
}

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

.page-fishing-games__card-text {
  color: var(--text-secondary-light);
  font-size: 1rem;
  text-align: justify;
  flex-grow: 1;
}

.page-fishing-games__guide {
  background-color: var(--bg-dark-green);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-fishing-games__guide-item {
  background-color: var(--card-bg-dark-green);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border: 1px solid var(--border-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-fishing-games__guide-title {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__guide-text {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  text-align: justify;
}

.page-fishing-games__guide-text a {
  color: var(--glow-green);
  text-decoration: none;
}

.page-fishing-games__guide-text a:hover {
  text-decoration: underline;
}

.page-fishing-games__promotions {
  background-color: var(--deep-green);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-fishing-games__promo-card {
  min-height: 480px; /* Slightly taller for promo content */
}

.page-fishing-games__conclusion {
  background-color: var(--bg-dark-green);
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

.page-fishing-games__conclusion .page-fishing-games__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.page-fishing-games__faq {
  background-color: var(--deep-green);
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  background-color: var(--card-bg-dark-green);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--text-main-light);
  font-size: 1.15rem;
  font-weight: 600;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-green);
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: var(--primary-color);
}

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  pointer-events: none; /* Allow click on entire summary */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-green);
  pointer-events: none; /* Allow click on entire summary */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  color: var(--text-main-light);
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  color: var(--text-secondary-light);
  font-size: 1rem;
  background-color: var(--card-bg-dark-green);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: 30px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }
  .page-fishing-games__tagline {
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  }
  .page-fishing-games__card, .page-fishing-games__guide-item {
    min-height: auto; /* Allow height to adjust on smaller screens */
  }
  .page-fishing-games__promo-card {
    min-height: auto;
  }
}

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

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

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

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-fishing-games__tagline {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important; /* Force full width on mobile */
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-fishing-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

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

  .page-fishing-games__features-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card,
  .page-fishing-games__guide-item,
  .page-fishing-games__promo-card {
    padding: 20px;
    min-height: auto; /* Allow height to adjust */
  }

  .page-fishing-games__card-image,
  .page-fishing-games__guide-image {
    height: 150px;
  }

  .page-fishing-games__card-title,
  .page-fishing-games__guide-title {
    font-size: 1.3rem;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-fishing-games__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

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

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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