/* Base styles for the fishing games page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: #08162B; /* Deep Navy from body background */
}

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

.page-fishing-games__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #AFC4E8; /* Text Secondary */
}

.page-fishing-games__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08162B;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 40px; /* Space between image and content */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Desktop: cover the area */
  aspect-ratio: 16 / 9;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(243, 248, 255, 0.5);
}

.page-fishing-games__tagline {
  font-size: 20px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.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,
.page-fishing-games__btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF; /* Text Main */
  border: none;
  box-shadow: 0 5px 15px rgba(17, 68, 166, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 68, 166, 0.6);
  background: linear-gradient(180deg, #3C83FF 0%, #1A52BF 100%);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #F3F8FF; /* Text Main */
  border: 2px solid #1D5FD1; /* Auxiliary color */
  box-shadow: 0 5px 15px rgba(29, 95, 209, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  transform: translateY(-3px);
  background: #1D5FD1;
  box-shadow: 0 8px 20px rgba(29, 95, 209, 0.4);
  color: #F3F8FF;
}

.page-fishing-games__btn-tertiary {
  background: #1B3357; /* Divider */
  color: #AFC4E8; /* Text Secondary */
  border: 1px solid #244D84; /* Border */
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
}

.page-fishing-games__btn-tertiary:hover {
  background: #244D84; /* Border */
  color: #F3F8FF;
}

.page-fishing-games__introduction, .page-fishing-games__benefits, .page-fishing-games__guide, .page-fishing-games__promotions, .page-fishing-games__mobile-app, .page-fishing-games__support, .page-fishing-games__faq, .page-fishing-games__conclusion {
  background-color: #10233F; /* Card BG */
  border-radius: 10px;
  padding: 40px 20px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border: 1px solid #244D84; /* Border */
}

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

.page-fishing-games__game-card,
.page-fishing-games__benefit-item {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px #4FA8FF; /* Glow */
}

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

.page-fishing-games__benefit-icon {
  height: 150px;
  object-fit: contain;
}

.page-fishing-games__card-title,
.page-fishing-games__benefit-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__card-description,
.page-fishing-games__benefit-description {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF; /* Text Main */\  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

.page-fishing-games__card-button:hover {
  background: linear-gradient(180deg, #3C83FF 0%, #1A52BF 100%);
}

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

.page-fishing-games__step-item {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px #4FA8FF;
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1D5FD1; /* Auxiliary color */
  color: #F3F8FF; /* Text Main */
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(29, 95, 209, 0.5);
}

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

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

.page-fishing-games__promotion-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #244D84;
}

.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-fishing-games__promo-list li {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-fishing-games__promo-list li::before {
  content: '★';
  color: #F2C14E; /* Gold */
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
}

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

.page-fishing-games__app-image {
  width: 350px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  border: 1px solid #244D84;
  box-shadow: 0 0 20px rgba(79, 168, 255, 0.5);
  flex-shrink: 0;
}

.page-fishing-games__app-text {
  flex-grow: 1;
}

.page-fishing-games__app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-fishing-games__app-features li {
  font-size: 17px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-fishing-games__app-features li::before {
  content: '✓';
  color: #4FA8FF; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #08162B; /* Deep Navy */
}
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: #113B7A; /* Main color */
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3F8FF; /* Text Main */
}
.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* 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: #10233F; /* Card BG */
  border-radius: 0 0 5px 5px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
  line-height: 1.7;
}

.page-fishing-games__copyright {
  text-align: center;
  font-size: 14px;
  color: #1B3357; /* Divider */
  padding: 40px 20px;
  margin-top: 40px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-fishing-games__hero-image-wrapper {
    max-height: 500px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
  }
  .page-fishing-games__section-title {
    font-size: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 17px;
  }
  .page-fishing-games__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__app-image {
    width: 80%;
    max-width: 400px;
  }
  .page-fishing-games__app-features, .page-fishing-games__promo-list {
    text-align: center;
    padding-left: 0;
  }
  .page-fishing-games__app-features li, .page-fishing-games__promo-list li {
    padding-left: 0;
  }
  .page-fishing-games__app-features li::before, .page-fishing-games__promo-list li::before {
    position: static;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 30px;
  }
  .page-fishing-games__hero-image-wrapper {
    max-height: unset !important;
    margin-bottom: 20px;
  }
  .page-fishing-games__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-fishing-games__tagline {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 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__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    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 multiple buttons */
  }

  /* 通用图片和容器 */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__game-card,
  .page-fishing-games__benefit-item,
  .page-fishing-games__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
  }

  /* 产品展示图区域 */
  .page-fishing-games__games-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 15px;
    overflow-x: hidden;
  }
  .page-fishing-games__game-card {
    padding-bottom: 10px;
  }
  .page-fishing-games__card-image {
    height: 150px;
    margin-bottom: 10px;
  }
  .page-fishing-games__card-title {
    font-size: 18px;
  }
  .page-fishing-games__card-description {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .page-fishing-games__card-button {
    padding: 8px 15px;
    font-size: 14px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-fishing-games__section-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  .page-fishing-games__text-block {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 5px;
    text-align: left; /* Align left for better readability on mobile */
  }
  .page-fishing-games__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__promo-list,
  .page-fishing-games__app-features {
    padding-left: 0;
  }
  .page-fishing-games__promo-list li,
  .page-fishing-games__app-features li {
    font-size: 15px;
    padding-left: 20px;
  }
  .page-fishing-games__promo-list li::before,
  .page-fishing-games__app-features li::before {
    position: absolute;
    left: 0;
  }
  .page-fishing-games__app-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px auto;
  }

  /* FAQ */
  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; }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }
  .page-fishing-games__copyright {
    font-size: 12px;
    padding: 20px 15px;
  }
}