.page-fishing-games {
  font-family: Arial, sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: var(--card-bg, #08162B); /* Deep Navy as fallback for body bg */
}

.page-fishing-games__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
  padding-bottom: 40px;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

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

.page-fishing-games__hero-content {
  position: absolute;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
  margin-top: 50px; /* Adjust as needed to not overlap image top */
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%; /* Ensure container takes full width */
  max-width: 400px; /* Limit width for aesthetics */
  margin: 0 auto;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: none;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-fishing-games__btn-secondary:hover {
  background: #F2C14E;
  color: #113B7A; /* Primary color for contrast */
  transform: translateY(-2px);
}

.page-fishing-games__intro-section,
.page-fishing-games__guide-section,
.page-fishing-games__faq-section {
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-games__dark-section {
  background-color: #10233F; /* Card BG */
  color: #F3F8FF; /* Text Main */
}

.page-fishing-games__intro-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__intro-title,
.page-fishing-games__features-title,
.page-fishing-games__guide-title,
.page-fishing-games__strategy-title,
.page-fishing-games__faq-title,
.page-fishing-games__cta-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-fishing-games__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
}

.page-fishing-games__features-section {
  padding: 60px 20px;
  background-color: #08162B; /* Deep Navy */
}

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

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

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

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

.page-fishing-games__feature-heading {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games__step-card {
  background-color: #08162B; /* Deep Navy */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #1B3357; /* Divider */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__step-icon {
  width: 60px;
  height: 60px;
  background-color: #1D5FD1; /* Auxiliary color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0 auto 20px auto;
}

.page-fishing-games__step-heading {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-fishing-games__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__strategy-section {
  padding: 60px 20px;
  background-color: #08162B; /* Deep Navy */
}

.page-fishing-games__strategy-content {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.page-fishing-games__strategy-text {
  flex: 2;
  text-align: left;
}

.page-fishing-games__strategy-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-fishing-games__strategy-text ul {
  list-style-type: disc;
  margin-left: 25px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-fishing-games__strategy-text ul li {
  margin-bottom: 10px;
}

.page-fishing-games__strategy-text ul li strong {
  color: #F2C14E; /* Gold */
}

.page-fishing-games__strategy-image-wrapper {
  flex: 1;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
}

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

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

.page-fishing-games__faq-item {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #1B3357; /* Divider */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  list-style: none;
  outline: none;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #1D5FD1; /* Auxiliary */
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
}

.page-fishing-games__cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #113B7A 0%, #1D5FD1 100%);
  text-align: center;
}

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

.page-fishing-games__cta-title {
  color: #F2C14E; /* Gold */
  margin-bottom: 25px;
}

.page-fishing-games__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 40px;
}

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

/* Mobile: @media (max-width: 768px) */
@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-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__hero-content {
    padding: 15px;
    margin-top: 20px; /* Reduced margin for mobile */
    position: static; /* Allow content to flow naturally below image */
    background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay for mobile */
    border-radius: 0;
    width: 100%;
  }
  
  .page-fishing-games__hero-image-wrapper {
    max-height: 300px;
  }

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

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

  /* 按钮与按钮容器 */
  .page-fishing-games__hero-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;
    padding: 12px 20px;
  }
  
  /* 深色导语区 */
  .page-fishing-games__intro-section,
  .page-fishing-games__features-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 15px;
  }

  .page-fishing-games__intro-title,
  .page-fishing-games__features-title,
  .page-fishing-games__guide-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__faq-title,
  .page-fishing-games__cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 25px;
  }

  .page-fishing-games__intro-text,
  .page-fishing-games__feature-description,
  .page-fishing-games__step-description,
  .page-fishing-games__strategy-text p,
  .page-fishing-games__strategy-text ul li,
  .page-fishing-games__faq-answer,
  .page-fishing-games__cta-description {
    font-size: 0.95rem;
  }

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

  .page-fishing-games__feature-card,
  .page-fishing-games__step-card,
  .page-fishing-games__strategy-image-wrapper,
  .page-fishing-games__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__guide-steps {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

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

  .page-fishing-games__feature-image {
    max-width: 100%;
  }

  .page-fishing-games__strategy-content {
    flex-direction: column; /* Stack content vertically */
    gap: 30px;
  }

  .page-fishing-games__strategy-text {
    text-align: center;
  }

  .page-fishing-games__strategy-text ul {
    margin-left: 15px;
    text-align: left;
  }

  /* FAQ */
  .page-fishing-games__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

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

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

/* Tablet: @media (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games__intro-title,
  .page-fishing-games__features-title,
  .page-fishing-games__guide-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__faq-title,
  .page-fishing-games__cta-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__guide-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .page-fishing-games__strategy-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .page-fishing-games__strategy-text,
  .page-fishing-games__strategy-image-wrapper {
    flex: none;
    width: 100%;
  }

  .page-fishing-games__hero-cta-buttons {
    max-width: 600px;
  }
}