.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

.page-fishing-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relies on body padding-top for header offset */
  padding-bottom: 40px;
  text-align: center;
  background-color: #0A0A0A;
}

.page-fishing-games__hero-image-wrapper {
  margin-bottom: 20px;
}

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

.page-fishing-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

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

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast */
  border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color border */
}

.page-fishing-games__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__intro-section,
.page-fishing-games__gameplay-section,
.page-fishing-games__features-section,
.page-fishing-games__strategy-section,
.page-fishing-games__benefits-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD86A 0%, #DDA11D 100%);
  border-radius: 2px;
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: justify;
  margin-bottom: 20px;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__benefit-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__benefit-card:hover {
  transform: translateY(-5px);
}

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

.page-fishing-games__feature-title,
.page-fishing-games__benefit-title {
  font-size: 1.5em;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
}

.page-fishing-games__feature-description,
.page-fishing-games__benefit-description {
  font-size: 1em;
  color: #FFF6D6;
}

.page-fishing-games__strategy-section .page-fishing-games__strategy-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 40px;
  display: block;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__strategy-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-fishing-games__strategy-subtitle {
  font-size: 1.3em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-fishing-games__strategy-description {
  color: #FFF6D6;
}

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

.page-fishing-games__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFF6D6;
  cursor: pointer;
  background-color: #1a1a1a;
  border-bottom: 1px solid #3A2A12;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid #3A2A12;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E;
}

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

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

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #FFF6D6;
  background-color: #111111;
}

.page-fishing-games__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-fishing-games__cta-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
}

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

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

/* -------------------------------------------------------------------------------------------------- */
/* 响应式设计 - 桌面到平板 (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }

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

  .page-fishing-games__features-grid,
  .page-fishing-games__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

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

  .page-fishing-games__strategy-item {
    padding: 20px;
  }

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

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

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

/* -------------------------------------------------------------------------------------------------- */
/* 响应式设计 - 移动端 (max-width: 768px) */
@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

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

  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* Small top padding, relies on body padding-top for header offset */
    padding-bottom: 30px;
  }

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

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

  .page-fishing-games__hero-buttons,
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .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: 12px 20px;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__gameplay-section,
  .page-fishing-games__features-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__benefits-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 0;
  }

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

  /* 产品展示图区域 & 通用图片与容器 */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-fishing-games__feature-card,
  .page-fishing-games__benefit-card {
    padding: 20px;
  }

  .page-fishing-games__feature-image {
    height: auto;
  }

  .page-fishing-games__strategy-image {
    max-height: 300px;
  }

  .page-fishing-games__strategy-item {
    padding: 18px;
  }

  .page-fishing-games__strategy-subtitle {
    font-size: 1.2em;
  }

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

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

  .page-fishing-games__faq-toggle {
    font-size: 1.2em;
  }

  .page-fishing-games__cta-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__text-block {
    font-size: 0.95em;
  }

  /* 所有包含图片的容器 */
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__feature-card,
  .page-fishing-games__strategy-section,
  .page-fishing-games__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* -------------------------------------------------------------------------------------------------- */
/* Màu sắc thông minh và độ tương phản */
.page-fishing-games__dark-bg {
  color: #ffffff;
  background: #F2C14E;
}

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

.page-fishing-games__medium-bg {
  color: #000000;
  background: #FFD36B;
}

.page-fishing-games__content-area,
.page-fishing-games__text-block {
  color: #FFF6D6; /* Text Main */
  background: #0A0A0A; /* Background */
}

.page-fishing-games p,
.page-fishing-games li {
  color: #FFF6D6; /* Text Main */
}

.page-fishing-games__card {
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  border: 1px solid #3A2A12; /* Border */
}

.page-fishing-games__dark-section {
  background: #F2C14E;
  color: #ffffff;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: 2px solid transparent;
}

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

/* Contrast fix classes */
.page-fishing-games__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-fishing-games__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}