.page-fishing-games {
  font-family: Arial, sans-serif;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--black-color, #0d0d0d);
}

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

.page-fishing-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  overflow: hidden;
  background-color: #000000; /* Ensure dark background for hero */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim image for text readability */
}

.page-fishing-games__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 8px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play-now,
.page-fishing-games__btn-view-promo {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
  background: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
  background: #ffffff;
  color: #26A9E0;
  transform: translateY(-2px);
}

.page-fishing-games__btn-play-now {
  background: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
  padding: 10px 20px;
  font-size: 1rem;
}

.page-fishing-games__btn-play-now:hover {
  background: #c76506;
  border-color: #c76506;
}

.page-fishing-games__btn-view-promo {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  padding: 10px 20px;
  font-size: 1rem;
}

.page-fishing-games__btn-view-promo:hover {
  background: #1e87c0;
  border-color: #1e87c0;
}

.page-fishing-games__intro-section,
.page-fishing-games__game-types-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__contact-cta {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__features-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__tips-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__dark-section {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-fishing-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #000000;
}

.page-fishing-games__section-description {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-fishing-games__dark-section .page-fishing-games__section-description {
  color: #cccccc;
}

.page-fishing-games__light-bg .page-fishing-games__section-description {
  color: #555555;
}

.page-fishing-games__text-block {
  text-align: left;
  margin-top: 30px;
  padding: 0 20px;
}

.page-fishing-games__text-block h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games__text-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__game-card,
.page-fishing-games__promo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.page-fishing-games__light-bg .page-fishing-games__feature-card,
.page-fishing-games__light-bg .page-fishing-games__game-card,
.page-fishing-games__light-bg .page-fishing-games__promo-card {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__game-card:hover,
.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__light-bg .page-fishing-games__feature-card:hover,
.page-fishing-games__light-bg .page-fishing-games__game-card:hover,
.page-fishing-games__light-bg .page-fishing-games__promo-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__feature-title,
.page-fishing-games__game-title,
.page-fishing-games__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games__feature-card p,
.page-fishing-games__game-card p,
.page-fishing-games__promo-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__dark-section .page-fishing-games__feature-card p {
  color: #cccccc;
}

.page-fishing-games__light-bg .page-fishing-games__feature-card p,
.page-fishing-games__light-bg .page-fishing-games__game-card p,
.page-fishing-games__light-bg .page-fishing-games__promo-card p {
  color: #555555;
}

.page-fishing-games__advantage-list,
.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 900px;
  text-align: left;
}

.page-fishing-games__advantage-list li,
.page-fishing-games__tips-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #f0f0f0;
}

.page-fishing-games__advantage-list li strong,
.page-fishing-games__tips-list li strong {
  color: #26A9E0;
  flex-shrink: 0;
  width: 120px;
}

.page-fishing-games__light-bg .page-fishing-games__advantage-list li,
.page-fishing-games__light-bg .page-fishing-games__tips-list li {
  background: #f8f8f8;
  color: #333333;
  border: 1px solid #e0e0e0;
}

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

.page-fishing-games__step-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games__step-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-fishing-games__light-bg .page-fishing-games__faq-item {
  background: #f8f8f8;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: #ffffff;
}

.page-fishing-games__light-bg .page-fishing-games__faq-question {
  color: #333333;
}

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

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  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: 0 25px 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
}

.page-fishing-games__light-bg .page-fishing-games__faq-answer {
  color: #555555;
}

.page-fishing-games__contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #26A9E0, #1e87c0);
  color: #ffffff;
}

.page-fishing-games__cta-wrapper .page-fishing-games__section-title,
.page-fishing-games__cta-wrapper .page-fishing-games__section-description {
  color: #ffffff;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 15px;
  }

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

  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    margin-bottom: 20px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  .page-fishing-games__section-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin-bottom: 30px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-types-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card {
    padding: 25px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__game-title,
  .page-fishing-games__promo-title {
    font-size: 1.3rem;
  }

  .page-fishing-games__advantage-list li,
  .page-fishing-games__tips-list li {
    font-size: 1rem;
    padding: 15px 20px;
  }

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

  .page-fishing-games__step-card {
    padding: 25px;
  }

  .page-fishing-games__step-title {
    font-size: 1.4rem;
  }

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

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
}

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

  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-fishing-games__hero-image {
    filter: brightness(0.5); /* Dim more on mobile for text */
  }

  .page-fishing-games__hero-content {
    position: static; /* Allow content to flow naturally */
    transform: none; /* Remove transform */
    padding: 20px 15px; /* Adjust padding */
    background: none; /* Remove background overlay */
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .page-fishing-games__main-title {
    font-size: 2rem !important;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .page-fishing-games__hero-description {
    font-size: 1rem !important;
    margin-bottom: 20px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 按钮与按钮容器 */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play-now,
  .page-fishing-games__btn-view-promo,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__features-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__contact-cta {
    padding: 40px 0;
  }

  .page-fishing-games__container {
    padding: 0 15px; /* Adjust container padding for mobile */
  }

  .page-fishing-games__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 15px;
  }

  .page-fishing-games__section-description {
    font-size: 1rem !important;
    margin-bottom: 20px;
  }

  .page-fishing-games__text-block {
    padding: 0;
  }

  .page-fishing-games__text-block h3 {
    font-size: 1.3rem !important;
  }

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

  /* 产品展示图区域 (通用网格卡片) */
  .page-fishing-games__features-grid,
  .page-fishing-games__game-types-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__guide-steps {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
    margin-top: 20px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__step-card {
    padding: 20px;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__game-title,
  .page-fishing-games__promo-title {
    font-size: 1.2rem;
  }

  .page-fishing-games__feature-card p,
  .page-fishing-games__game-card p,
  .page-fishing-games__promo-card p {
    font-size: 0.95rem;
  }

  /* 通用图片与容器 */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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__advantage-list,
  .page-fishing-games__tips-list {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-fishing-games__advantage-list li,
  .page-fishing-games__tips-list li {
    font-size: 0.95rem;
    padding: 12px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .page-fishing-games__advantage-list li strong,
  .page-fishing-games__tips-list li strong {
    width: auto;
  }

  .page-fishing-games__step-title {
    font-size: 1.3rem;
  }

  .page-fishing-games__step-card p {
    font-size: 0.95rem;
  }

  .page-fishing-games__faq-list {
    margin-top: 20px;
    padding: 0 15px;
  }

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

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

  .page-fishing-games__contact-cta {
    padding: 50px 0;
  }
}