.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8;
}

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

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #C91F17;
  line-height: 1.2;
}

.page-fishing-games__section-title--light {
  color: #FFF5E1;
}

.page-fishing-games__section-description {
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.page-fishing-games__section-description--light {
  color: #FFF5E1;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding for hero section */
  background-color: #B71C1C;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

.page-fishing-games__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: #FFF5E1;
}

.page-fishing-games__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFF5E1;
}

.page-fishing-games__hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 30px;
  line-height: 1.5;
  color: #FFF5E1;
}

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

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

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-fishing-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-fishing-games__btn-secondary {
  background: #C91F17;
  color: #FFF5E1;
  border: 2px solid #F4D34D;
  box-shadow: 0 4px 10px rgba(201, 31, 23, 0.3);
}

.page-fishing-games__btn-secondary:hover {
  background: #E53935;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.5);
}

.page-fishing-games__btn-tertiary {
  background: #7A0E0E;
  color: #FFF5E1;
  border: 1px solid #F4D34D;
  padding: 10px 20px;
  font-size: 16px;
}

.page-fishing-games__btn-tertiary:hover {
  background: #B71C1C;
}

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

/* Features Section */
.page-fishing-games__dark-section {
  background-color: #B71C1C;
  color: #FFF5E1;
}

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

.page-fishing-games__feature-card {
  background: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.page-fishing-games__feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F4D34D;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #FFF5E1;
}

/* Popular Games Section */
.page-fishing-games__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__game-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #C91F17;
}

.page-fishing-games__game-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-fishing-games__light-bg {
  background-color: #f0f0f0;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__guide-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__guide-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 216, 106, 0.4);
}

.page-fishing-games__guide-step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #C91F17;
}

.page-fishing-games__guide-step-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Promotions Section */
.page-fishing-games__promotion-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-fishing-games__promotion-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  display: block;
}

.page-fishing-games__promotion-list {
  list-style: none;
  padding: 0;
  flex: 1;
}

.page-fishing-games__promotion-item {
  background: #D32F2F;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.6;
  color: #FFF5E1;
  border-left: 5px solid #F4D34D;
}

.page-fishing-games__promotion-item strong {
  color: #FFCC66;
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  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: #f5f5f5;
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #C91F17;
}
.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 12px 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
.page-fishing-games__faq-answer p {
  margin: 0;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  background-color: #7A0E0E;
  padding: 80px 0;
  text-align: center;
  color: #FFF5E1;
}

/* General Image Responsiveness */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .page-fishing-games__hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-fishing-games__promotion-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-fishing-games__promotion-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__section-spacing {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 20px;
  }
  .page-fishing-games__section-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding for hero section */
  }
  .page-fishing-games__hero-image-wrapper {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for better mobile display */
  }
  .page-fishing-games__hero-image {
    object-fit: contain !important; /* 禁止 cover 裁切两侧 */
    aspect-ratio: unset !important;
  }
  .page-fishing-games__hero-content {
    padding: 20px 15px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 10px;
  }
  .page-fishing-games__hero-subtitle {
    font-size: clamp(15px, 3.5vw, 18px);
    margin-bottom: 20px;
  }
  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* 按钮与按钮容器 */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-tertiary,
  .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__hero-cta-buttons,
  .page-fishing-games__cta-buttons--center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking for better UX */
  }

  /* 通用图片与容器 */
  .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,
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__guide-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 产品展示图区域 - 2 列 */
  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 20px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
  .page-fishing-games__feature-card, .page-fishing-games__game-card {
    padding: 15px;
  }
  .page-fishing-games__feature-title, .page-fishing-games__game-title {
    font-size: 18px;
  }
  .page-fishing-games__feature-description, .page-fishing-games__game-description {
    font-size: 14px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-fishing-games__introduction-section .page-fishing-games__section-description,
  .page-fishing-games__guide-section .page-fishing-games__section-description,
  .page-fishing-games__promotions-section .page-fishing-games__section-description {
    text-align: left;
    padding: 0 5px;
  }
  .page-fishing-games__guide-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__guide-item {
    padding: 20px;
  }

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

  /* Final CTA */
  .page-fishing-games__cta-final-section {
    padding: 50px 0;
  }
}