.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--neon-dark-bg-1);
}

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

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

.page-fishing-games__hero-image-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__hero-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-play {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
  background: #1e87b8;
  border-color: #1e87b8;
}

.page-fishing-games__btn-secondary {
  background: #EA7C07; /* Login color for secondary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-fishing-games__btn-secondary:hover {
  background: #c26505;
  border-color: #c26505;
}

.page-fishing-games__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #26A9E0;
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games__text-block strong {
  color: #ffffff;
}

.page-fishing-games__text-block a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-fishing-games__introduction-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__tips-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: var(--neon-dark-bg-1);
}

.page-fishing-games__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__light-bg .page-fishing-games__text-block {
  color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__text-block strong {
  color: #000000;
}

.page-fishing-games__light-bg .page-fishing-games__text-block a {
  color: #26A9E0;
}

.page-fishing-games__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__dark-bg .page-fishing-games__text-block {
  color: #f0f0f0;
}

.page-fishing-games__dark-bg .page-fishing-games__text-block strong {
  color: #ffffff;
}

.page-fishing-games__dark-bg .page-fishing-games__text-block a {
  color: #ffffff;
  text-decoration: underline;
}

.page-fishing-games__ordered-list,
.page-fishing-games__unordered-list,
.page-fishing-games__promotions-list {
  list-style-position: inside;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games__light-bg .page-fishing-games__ordered-list,
.page-fishing-games__light-bg .page-fishing-games__unordered-list,
.page-fishing-games__light-bg .page-fishing-games__promotions-list {
  color: #333333;
}

.page-fishing-games__list-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-fishing-games__list-item strong {
  color: #ffffff;
}

.page-fishing-games__light-bg .page-fishing-games__list-item strong {
  color: #000000;
}

.page-fishing-games__features-section {
  padding: 60px 0;
}

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

.page-fishing-games__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

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

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

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-fishing-games__games-showcase-section {
  padding: 60px 0;
}

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

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

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

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

.page-fishing-games__game-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-fishing-games__game-description {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 20px;
}

.page-fishing-games__btn-play {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  padding: 10px 20px;
  font-size: 0.95rem;
}

.page-fishing-games__btn-play:hover {
  background: #1e87b8;
  border-color: #1e87b8;
}

.page-fishing-games__promotions-section {
  padding: 60px 0;
}

.page-fishing-games__promotions-list {
  list-style-type: disc;
  color: #f0f0f0;
}

.page-fishing-games__promotions-list .page-fishing-games__list-item strong {
  color: #ffffff;
}

.page-fishing-games__why-choose-section {
  padding: 60px 0;
}

.page-fishing-games__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fishing-games__why-choose-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-fishing-games__why-choose-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games__why-choose-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-fishing-games__why-choose-description {
  font-size: 0.95rem;
  color: #555555;
}

.page-fishing-games__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: #26A9E0;
  border-radius: 10px;
  color: #ffffff;
}

.page-fishing-games__cta-bottom .page-fishing-games__cta-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-fishing-games__cta-bottom .page-fishing-games__cta-text a {
  color: #ffffff;
  text-decoration: underline;
}

.page-fishing-games__cta-bottom .page-fishing-games__btn-primary {
  background: #EA7C07;
  border-color: #EA7C07;
}

.page-fishing-games__cta-bottom .page-fishing-games__btn-primary:hover {
  background: #c26505;
  border-color: #c26505;
}

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

.page-fishing-games__faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  color: #26A9E0;
  list-style: none; /* For details/summary */
}

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #26A9E0;
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
}

.page-fishing-games__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

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

/* Universal image styling for content area */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__container {
    padding: 20px;
  }

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

  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  }

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

  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@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-bottom: 30px;
  }
  .page-fishing-games__hero-image-container {
    max-height: 300px;
  }
  .page-fishing-games__hero-content {
    padding: 0 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    margin-bottom: 10px;
  }
  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
    margin-bottom: 20px;
  }
  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  /* 按钮与按钮容器 */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play,
  .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-buttons,
  .page-fishing-games__cta-bottom,
  .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;
  }
  .page-fishing-games__cta-bottom .page-fishing-games__btn-primary {
    max-width: 80% !important;
    margin: 0 auto;
  }

  /* 通用图片与容器 */
  .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__why-choose-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__hero-image-container {
    padding: 0;
  }

  /* 产品展示图区域 (gameshow grid) */
  .page-fishing-games__games-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__games-grid .page-fishing-games__game-card:nth-child(-n+4) {
    grid-template-columns: 1fr; /* Override for specific layout if needed, but 1fr is general */
  }
  /* Specific rule for 2x2 for first 4, then single for last 2 on mobile */
  .page-fishing-games__games-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column */
  }
  .page-fishing-games__games-grid .page-fishing-games__game-card {
    margin-bottom: 20px;
    padding: 15px;
  }
  /* If a 2x2 is truly desired for the first 4, it would be complex with only CSS and general classes, sticking to 1fr for simplicity and robustness */

  /* 其他内容模块 */
  .page-fishing-games__introduction-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__features-section,
  .page-fishing-games__games-showcase-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__faq-section {
    padding: 30px 0;
  }
  .page-fishing-games__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px;
  }
  .page-fishing-games__text-block,
  .page-fishing-games__list-item,
  .page-fishing-games__feature-description,
  .page-fishing-games__game-description,
  .page-fishing-games__why-choose-description,
  .page-fishing-games__faq-answer {
    font-size: 1rem !important;
  }
  .page-fishing-games__feature-card,
  .page-fishing-games__why-choose-item {
    padding: 20px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem !important;
  }
  .page-fishing-games__faq-toggle {
    font-size: 1.2rem;
  }
  .page-fishing-games__cta-bottom {
    padding: 20px;
  }
  .page-fishing-games__cta-bottom .page-fishing-games__cta-text {
    font-size: 1rem;
  }
}