/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
  font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-fishing-games__btn-secondary {
  background: none;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-fishing-games__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border with some transparency */
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-fishing-games__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__card-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body已承担padding-top, 此处仅小额装饰顶距 */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

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

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games__hero-title {
  font-size: clamp(36px, 5vw, 64px);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: #A7D9B8;
  margin-bottom: 40px;
}

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

/* General Section Styling */
.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__guide-section,
.page-fishing-games__strategies-section,
.page-fishing-games__promotions-section,
.page-fishing-games__showcase-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__cta-section,
.page-fishing-games__faq-section {
  padding: 80px 0;
}

.page-fishing-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.page-fishing-games__image-wrapper {
  text-align: center;
}

.page-fishing-games__image-wrapper--center {
  margin-top: 40px;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

/* Features Section */
.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-fishing-games__feature-card p {
  color: #A7D9B8;
}

/* Guide Section */
.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
}

.page-fishing-games__guide-list li {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  counter-increment: guide-counter;
  position: relative;
  padding-left: 60px;
}

.page-fishing-games__guide-list li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.page-fishing-games__guide-list h3 {
  font-size: 20px;
  color: #F2FFF6;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-fishing-games__guide-list p {
  color: #A7D9B8;
  margin-bottom: 0;
}

/* Strategies Section */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__strategy-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #F2FFF6;
}

.page-fishing-games__strategy-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-size: 16px;
  line-height: 1.6;
}

.page-fishing-games__strategy-list li strong {
  color: #F2C14E; /* Gold */
}

/* Promotions Section */
.page-fishing-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-fishing-games__promotion-card p {
  color: #A7D9B8;
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-fishing-games__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__game-card p {
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Why Choose Section */
.page-fishing-games__reason-list {
  list-style: none;
  padding: 0;
}

.page-fishing-games__reason-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  color: #F2FFF6;
  font-size: 18px;
}

.page-fishing-games__reason-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

.page-fishing-games__reason-list li strong {
  color: #F2C14E; /* Gold */
}

/* CTA Section (final) */
.page-fishing-games__cta-box {
  text-align: center;
  padding: 50px;
  margin: 0 auto;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-fishing-games__faq-item {
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #F2FFF6;
  list-style: none; /* For details summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none; /* For details summary */
}

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

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: #A7D9B8;
  line-height: 1.7;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__content-grid {
    grid-template-columns: 1fr;
  }

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

  .page-fishing-games__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }

  .page-fishing-games__content-grid--reverse .page-fishing-games__image-wrapper {
    order: 0;
  }
}

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

  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__hero-title {
    font-size: 32px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
  }

  .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

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

  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-fishing-games__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .page-fishing-games__about-section,
  .page-fishing-games__features-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__showcase-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__cta-section,
  .page-fishing-games__faq-section {
    padding: 60px 0;
  }

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

  .page-fishing-games__card {
    padding: 25px;
  }

  .page-fishing-games__card-title {
    font-size: 20px;
  }

  .page-fishing-games__faq-question {
    font-size: 18px;
  }

  .page-fishing-games__faq-answer {
    font-size: 15px;
  }

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

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

  /* Video and image containers mobile adaptation */
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__image-wrapper,
  .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;
    overflow: hidden !important;
  }

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

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