.page-fishing-games {
  background-color: #B71C1C; /* Custom Background */
  color: #FFF5E1; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-fishing-games__hero-image-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  margin-top: -150px; /* Pull content up over the image slightly for visual flow */
  color: #FFF5E1; /* Text Main */
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFD86A; /* Gold-like for emphasis */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1; /* Text Main */
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom Button Color */
  color: #333333; /* Dark text for contrast on bright gradient */
  border: none;
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: #7A0E0E; /* Deep Red for secondary */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border Color */
}

.page-fishing-games__btn-secondary:hover {
  background: #9A1E1E;
  transform: translateY(-2px);
}

.page-fishing-games__section {
  padding: 60px 20px;
  background-color: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
}

.page-fishing-games__section:nth-of-type(even) {
  background-color: #D32F2F; /* Card BG for alternating sections */
}

.page-fishing-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD86A; /* Gold-like for emphasis */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
  text-align: justify;
}

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

.page-fishing-games__card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF5E1; /* Text Main */
  border: 1px solid #F2B544; /* Border Color */
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

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

.page-fishing-games__card-title {
  font-size: 1.6rem;
  color: #FFD86A; /* Gold-like for emphasis */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-fishing-games__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  text-align: justify;
}

.page-fishing-games__list li::before {
  content: '•';
  color: #FFD86A; /* Gold-like for list markers */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  top: -2px;
}

.page-fishing-games__step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-fishing-games__step-list li {
  margin-bottom: 25px;
  position: relative;
  padding-left: 40px;
  text-align: justify;
}

.page-fishing-games__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD86A; /* Gold */
  color: #333333; /* Dark text for contrast */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__faq-section {
  padding: 60px 20px;
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  background-color: #B71C1C; /* Background */
  border: 1px solid #F2B544; /* Border Color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #F2B544; /* Border Color */
  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 25px;
  font-size: 1.1rem;
  color: #FFF5E1; /* Text Main */
  text-align: justify;
}

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

.page-fishing-games__call-to-action {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #C91F17 0%, #7A0E0E 100%); /* Main color to Deep Red gradient */
}

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

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

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

.page-fishing-games a {
  color: #FFD86A;
  text-decoration: none;
}

.page-fishing-games a:hover {
  text-decoration: underline;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -100px;
  }

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

  .page-fishing-games__description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

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

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

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-fishing-games__hero-image-container {
    max-height: 400px;
  }

  .page-fishing-games__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding: 15px;
  }

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

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

  /* 产品展示图区域 (for game types cards) */
  .page-fishing-games__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  /* 通用图片与容器 */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  /* 按钮与按钮容器 */
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    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;
    font-size: 1rem;
    padding: 12px 20px;
  }

  /* 其他内容模块 */
  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

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

  .page-fishing-games__list li,
  .page-fishing-games__step-list li {
    padding-left: 30px;
  }

  .page-fishing-games__step-list li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
  }

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

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

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

  .page-fishing-games__call-to-action {
    padding: 50px 15px;
  }
}