.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #000000; /* Inherited from body via shared.css */
}

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

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 0;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure minimum size */
}

.page-fishing-games__hero-content {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  color: #ffffff;
  margin-top: -5px; /* Slight overlap to make it visually connected */
  z-index: 1;
}

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

.page-fishing-games__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
  background-color: #1f8bc2;
  transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-fishing-games__btn-play {
  background-color: #EA7C07;
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-play:hover {
  background-color: #c96706;
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-fishing-games__introduction-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

.page-fishing-games__advantages-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__promotions-section,
.page-fishing-games__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background from body */
}

.page-fishing-games__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

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

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

.page-fishing-games__advantage-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__advantage-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__advantage-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-fishing-games__advantage-description {
  font-size: 1rem;
  color: #cccccc;
}

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

.page-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
  display: block;
}

.page-fishing-games__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 20px 15px 10px;
}

.page-fishing-games__game-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__game-title a:hover {
  color: #ffffff;
}

.page-fishing-games__game-description {
  font-size: 0.95rem;
  color: #cccccc;
  padding: 0 15px 20px;
}

.page-fishing-games__btn-play {
  margin-bottom: 20px;
  display: block;
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}

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

.page-fishing-games__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-fishing-games__step-description {
  font-size: 1rem;
  color: #cccccc;
}

.page-fishing-games__cta-single {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games__tip-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__tip-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-fishing-games__tip-description {
  font-size: 1rem;
  color: #cccccc;
}

.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-fishing-games__promo-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #26A9E0;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-fishing-games__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: "−";
}

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

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

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

.page-fishing-games__faq-answer a:hover {
  color: #ffffff;
}

.page-fishing-games__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0d0d0d; /* Dark background */
}

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

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

/* Responsive styles for smaller screens */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 2rem;
  }

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

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

  .page-fishing-games__advantage-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__strategy-list,
  .page-fishing-games__promo-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-fishing-games__hero-buttons,
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 80%;
    max-width: 300px;
  }

  .page-fishing-games__btn-play {
    width: calc(100% - 30px);
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 0 !important;
  }
  .page-fishing-games__hero-image {
    min-height: 250px !important;
  }
  .page-fishing-games__hero-content {
    padding: 30px 15px !important;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
  }
  .page-fishing-games__hero-description {
    font-size: 1rem !important;
  }
  .page-fishing-games__hero-buttons {
    gap: 10px !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* 产品展示图区域 */
  .page-fishing-games__game-grid {
    grid-template-columns: 1fr !important; /* Single column for mobile */
    gap: 20px !important;
  }
  .page-fishing-games__game-card {
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-fishing-games__game-card img {
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
  }

  /* 通用图片与容器 */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__container,
  .page-fishing-games__introduction-section,
  .page-fishing-games__advantages-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section,
  .page-fishing-games__advantage-item,
  .page-fishing-games__game-card,
  .page-fishing-games__step-item,
  .page-fishing-games__tip-item,
  .page-fishing-games__promo-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }

  /* 按钮与按钮容器 */
  .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 !important;
    padding-right: 15px !important;
    min-width: unset !important;
  }
  .page-fishing-games__hero-buttons,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__cta-single {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    flex-direction: column !important; /* Ensure vertical stacking for multiple buttons */
    align-items: center !important;
  }

  /* 其他内容模块 */
  .page-fishing-games__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
  }
  .page-fishing-games__text-block,
  .page-fishing-games__advantage-description,
  .page-fishing-games__game-description,
  .page-fishing-games__step-description,
  .page-fishing-games__tip-description,
  .page-fishing-games__promo-item,
  .page-fishing-games__faq-answer {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  .page-fishing-games__advantage-item,
  .page-fishing-games__step-item,
  .page-fishing-games__tip-item,
  .page-fishing-games__promo-item,
  .page-fishing-games__faq-item {
    padding: 20px !important;
  }
  .page-fishing-games__advantage-title,
  .page-fishing-games__game-title,
  .page-fishing-games__step-title,
  .page-fishing-games__tip-title {
    font-size: 1.3rem !important;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1rem !important;
    padding: 15px !important;
  }
  .page-fishing-games__advantage-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__strategy-list,
  .page-fishing-games__promo-list {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-fishing-games__introduction-section,
  .page-fishing-games__advantages-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 0 !important;
  }
}