/* Base Styles for page-fishing-games */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

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

.page-fishing-games__container--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__section-title--light {
  color: #FFF1E8; /* Text Main */
}

.page-fishing-games__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF1E8; /* Text Main */
}

.page-fishing-games__text-block--light {
  color: #FFF1E8;
}

.page-fishing-games__text-block--center {
  text-align: center;
}

.page-fishing-games__text-block a {
  color: #FFB04A;
  text-decoration: underline;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button custom */
  color: #FFF1E8; /* Text Main */
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #FFC06A 0%, #E87A24 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 176, 74, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #FFB04A; /* Gold */
  border: 2px solid #FFB04A;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(255, 176, 74, 0.1);
  color: #FFF1E8;
  border-color: #FFF1E8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 176, 74, 0.4);
}

.page-fishing-games__btn-primary--small,
.page-fishing-games__btn-secondary--small {
  padding: 10px 20px;
  font-size: 16px;
}

.page-fishing-games__btn-primary--large,
.page-fishing-games__btn-secondary--large {
  padding: 16px 35px;
  font-size: 20px;
}

.page-fishing-games__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  position: relative;
  text-align: center;
  background-color: #140C0C; /* Background */
  overflow: hidden;
}

.page-fishing-games__hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-fishing-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #FFF1E8;
  text-align: center;
}

.page-fishing-games__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__intro-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__cta-final-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}

.page-fishing-games__features-section,
.page-fishing-games__strategy-section,
.page-fishing-games__why-choose-section {
  padding: 60px 0;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
}

.page-fishing-games__features-grid,
.page-fishing-games__promotions-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__promo-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__feature-card img,
.page-fishing-games__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
  display: block;
}

.page-fishing-games__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-fishing-games__feature-card p,
.page-fishing-games__promo-card p {
  font-size: 16px;
  color: #FFF1E8; /* Text Main */
  flex-grow: 1;
}

.page-fishing-games__promo-card .page-fishing-games__btn-primary--small {
  margin-top: 20px;
  width: fit-content;
}

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

.page-fishing-games__guide-list li,
.page-fishing-games__strategy-list li {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #FFF1E8; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 45px;
}

.page-fishing-games__guide-list li strong,
.page-fishing-games__strategy-list li strong {
  color: #FFB04A;
}

.page-fishing-games__guide-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFB04A;
  color: #140C0C;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 15px;
}

.page-fishing-games__strategy-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50;
  font-size: 22px;
  font-weight: bold;
}

.page-fishing-games__why-choose-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-fishing-games__why-choose-text {
  flex: 1;
}

.page-fishing-games__why-choose-image {
  flex: 1;
  text-align: center;
}

.page-fishing-games__why-choose-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-fishing-games__bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 17px;
  color: #FFF1E8; /* Text Main */
}

.page-fishing-games__bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FFB04A; /* Gold */
  font-size: 24px;
  line-height: 1;
  top: 0;
}

.page-fishing-games__bullet-list--light li {
  color: #FFF1E8;
}

.page-fishing-games__cta-final-section .page-fishing-games__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 30px;
  background-color: #2A1212; /* Card BG */
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #6A1E1E;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-buttons {
  flex-direction: row;
  gap: 20px;
}

.page-fishing-games__cta-buttons--vertical {
  flex-direction: column;
}

/* FAQ Styles */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card BG */
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: #3A1A1A; /* Slightly lighter Card BG for hover */
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF1E8; /* Text Main */
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04A; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: #140C0C; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF1E8; /* Text Main */
}

.page-fishing-games__faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__container {
    padding: 20px 30px;
  }

  .page-fishing-games__hero-image {
    height: 500px;
  }

  .page-fishing-games__hero-content {
    padding: 30px 20px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }

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

  .page-fishing-games__features-grid,
  .page-fishing-games__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-fishing-games__why-choose-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__why-choose-image img {
    max-width: 80%;
  }
}

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

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

  .page-fishing-games__container--flex {
    flex-direction: column;
    gap: 20px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 25px;
  }

  .page-fishing-games__text-block {
    font-size: 16px;
    margin-bottom: 15px;
  }

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

  .page-fishing-games__hero-image {
    height: auto;
    min-height: 250px;
  }

  .page-fishing-games__hero-image img {
    object-fit: contain !important; /* 禁止 cover 裁切两侧 */
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

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

  .page-fishing-games__main-title {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 15px;
  }

  .page-fishing-games__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* 按钮与按钮容器 */
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 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-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }

  .page-fishing-games__cta-buttons--vertical .page-fishing-games__btn-primary--large,
  .page-fishing-games__cta-buttons--vertical .page-fishing-games__btn-secondary--large {
    font-size: 18px;
  }

  /* 产品展示图区域 (features/promotions grid) */
  .page-fishing-games__features-grid,
  .page-fishing-games__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }

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

  .page-fishing-games__feature-card img,
  .page-fishing-games__promo-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

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

  /* 装饰主标题 + 长文 SEO 区 */
  .page-fishing-games__intro-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__cta-final-section,
  .page-fishing-games__faq-section {
    padding: 40px 0;
  }

  .page-fishing-games__guide-list li,
  .page-fishing-games__strategy-list li {
    font-size: 16px;
    padding: 15px 15px 15px 40px;
  }

  .page-fishing-games__why-choose-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-fishing-games__why-choose-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games__bullet-list li {
    font-size: 16px;
    padding-left: 25px;
  }

  .page-fishing-games__bullet-list li::before {
    font-size: 20px;
  }

  /* FAQ */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px;
  }
  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }
  .page-fishing-games__faq-answer p {
    font-size: 15px;
  }

  /* 通用图片与容器 */
  .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;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__cta-buttons {
    gap: 10px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 15px;
    padding: 12px 20px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .page-fishing-games__section-title {
    font-size: clamp(22px, 7vw, 28px);
  }

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

  .page-fishing-games__text-block,
  .page-fishing-games__guide-list li,
  .page-fishing-games__strategy-list li,
  .page-fishing-games__bullet-list li {
    font-size: 15px;
  }
}