.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background: #FFFFFF; /* Default body background is white */
}

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

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

.page-fishing-games__sub-title {
  font-size: clamp(22px, 3vw, 30px);
  color: #017439;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding */
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: 600px; /* Fixed height for desktop hero */
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.page-fishing-games__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 80%;
  z-index: 10;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-fishing-games__hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-fishing-games__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-fishing-games__btn-primary {
  background: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-fishing-games__btn-primary:hover {
  background: #005f2c;
  border-color: #005f2c;
}

.page-fishing-games__btn-secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-fishing-games__btn-secondary:hover {
  background: #f0f0f0;
  color: #005f2c;
  border-color: #005f2c;
}

.page-fishing-games__btn-register {
  background: #C30808;
  color: #FFFF00;
  border-color: #C30808;
}

.page-fishing-games__btn-register:hover {
  background: #a30606;
  border-color: #a30606;
}

/* About Section */
.page-fishing-games__about-section {
  padding: 60px 0;
  margin-bottom: 50px;
}

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

.page-fishing-games__image-wrapper,
.page-fishing-games__content-wrapper {
  flex: 1;
}

.page-fishing-games__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  padding: 60px 0;
  margin-bottom: 50px;
  background: #017439;
  color: #ffffff;
}

.page-fishing-games__why-choose-section .page-fishing-games__section-title,
.page-fishing-games__why-choose-section .page-fishing-games__card-title {
  color: #ffffff;
}

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

.page-fishing-games__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-card .page-fishing-games__card-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.page-fishing-games__feature-card .page-fishing-games__card-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* Game Showcase Section */
.page-fishing-games__game-showcase-section {
  padding: 60px 0;
  margin-bottom: 50px;
}

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

.page-fishing-games__game-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-fishing-games__game-card img {
  width: 100%;
  height: 250px; /* Fixed height for game cards */
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-card .page-fishing-games__card-title {
  font-size: 22px;
  color: #017439;
  margin: 20px 15px 10px;
  font-weight: 600;
}

.page-fishing-games__game-card .page-fishing-games__card-description {
  font-size: 15px;
  color: #555555;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

/* Bonus Info Section */
.page-fishing-games__bonus-info-section {
  padding: 60px 0;
  margin-bottom: 50px;
  background: #017439;
  color: #ffffff;
}

.page-fishing-games__bonus-info-section .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__bonus-info-section .page-fishing-games__text-block {
  color: #f0f0f0;
}

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

.page-fishing-games__bonus-steps .page-fishing-games__step-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__bonus-steps .page-fishing-games__card-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-fishing-games__bonus-steps .page-fishing-games__card-description {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-fishing-games__bonus-info-section .page-fishing-games__note {
  font-size: 14px;
  color: #cccccc;
  margin-top: 30px;
  text-align: center;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  padding: 60px 0;
  margin-bottom: 50px;
}

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

.page-fishing-games__strategy-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-fishing-games__strategy-card img {
  width: 100%;
  height: 200px; /* Fixed height for strategy cards */
  object-fit: cover;
  display: block;
}

.page-fishing-games__strategy-card .page-fishing-games__card-title {
  font-size: 22px;
  color: #017439;
  margin: 20px 15px 10px;
  font-weight: 600;
}

.page-fishing-games__strategy-card .page-fishing-games__card-description {
  font-size: 15px;
  color: #555555;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
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: #f5f5f5;
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  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: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

/* CTA Section */
.page-fishing-games__cta-section {
  padding: 60px 0;
  background: #017439;
  color: #ffffff;
  text-align: center;
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__cta-section .page-fishing-games__text-block {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-fishing-games__cta-section .page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

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

  .page-fishing-games__hero-content {
    padding: 25px;
    max-width: 90%;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(30px, 4.5vw, 50px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(16px, 2vw, 20px);
  }

  .page-fishing-games__image-content-split {
    flex-direction: column;
  }

  .page-fishing-games__image-wrapper,
  .page-fishing-games__content-wrapper {
    width: 100%;
  }

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

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

  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
    margin-bottom: 30px;
  }

  .page-fishing-games__hero-image img {
    height: 300px !important; /* Adjust height for mobile */
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    border-radius: 0;
  }

  .page-fishing-games__hero-content {
    position: static;
    transform: none;
    background: none;
    padding: 20px 15px;
    max-width: 100%;
    color: #333333; /* Darker text on mobile when hero image is contain */
  }

  .page-fishing-games__hero-title {
    font-size: clamp(28px, 8vw, 38px);
    color: #017439;
    text-shadow: none;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
    color: #555555;
    text-shadow: none;
  }

  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* General Text & Titles */
  .page-fishing-games__section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 30px;
  }

  .page-fishing-games__sub-title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .page-fishing-games__text-block {
    font-size: 16px;
    text-align: left;
  }

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

  .page-fishing-games__image-wrapper,
  .page-fishing-games__content-wrapper,
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__step-card,
  .page-fishing-games__strategy-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 产品展示图区域 */
  .page-fishing-games__products-grid {
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }

  .page-fishing-games__game-card img {
    height: 200px !important;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-fishing-games__about-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__game-showcase-section,
  .page-fishing-games__bonus-info-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .page-fishing-games__image-content-split {
    flex-direction: column;
    gap: 20px;
  }

  .page-fishing-games__feature-grid,
  .page-fishing-games__bonus-steps,
  .page-fishing-games__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__bonus-steps .page-fishing-games__step-card,
  .page-fishing-games__strategy-card {
    padding: 20px;
  }

  .page-fishing-games__feature-card .page-fishing-games__card-title,
  .page-fishing-games__bonus-steps .page-fishing-games__card-title,
  .page-fishing-games__strategy-card .page-fishing-games__card-title {
    font-size: 20px;
  }

  .page-fishing-games__game-card .page-fishing-games__card-title {
    font-size: 20px;
  }

  /* 按钮与按钮容器 */
  .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 15px;
    font-size: 16px;
  }

  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 15px;
  }

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