:root {
  --page-fishing-games-primary-color: #11A84E;
  --page-fishing-games-secondary-color: #22C768;
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-background: #08160F;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-border-color: #2E7A4E;
  --page-fishing-games-glow-color: #57E38D;
  --page-fishing-games-gold-color: #F2C14E;
  --page-fishing-games-divider-color: #1E3A2A;
  --page-fishing-games-deep-green: #0A4B2C;
  --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-fishing-games {
  font-family: Arial, sans-serif;
  background-color: var(--page-fishing-games-background);
  color: var(--page-fishing-games-text-main);
  line-height: 1.6;
}

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

.page-fishing-games__hero-section {
  position: relative;
  padding-top: 0; /* Rely on body padding-top for header offset */
  margin-bottom: 40px;
  text-align: center;
  background-color: var(--page-fishing-games-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-fishing-games__hero-content {
  max-width: 900px;
  padding: 0 20px 40px;
  text-align: center;
}

.page-fishing-games__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Adjusted H1 font size */
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 30px;
}

.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 {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-button-gradient);
  color: var(--page-fishing-games-text-main);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--page-fishing-games-secondary-color);
  border: 2px solid var(--page-fishing-games-secondary-color);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--page-fishing-games-secondary-color);
  color: var(--page-fishing-games-text-main);
  transform: translateY(-2px);
}

.page-fishing-games__btn-inline {
  margin-top: 20px;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-fishing-games__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-fishing-games__logo-carousel-section {
  padding: 10px 20px 40px;
  background-color: var(--page-fishing-games-deep-green);
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--page-fishing-games-divider-color);
}

.page-fishing-games__logo-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.page-fishing-games__logo-item {
  width: 80px;
  height: 80px;
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__logo-item img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.page-fishing-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--page-fishing-games-gold-color);
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

.page-fishing-games__section-description {
  font-size: 1.05em;
  color: var(--page-fishing-games-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-fishing-games__introduction-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__featured-games-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: var(--page-fishing-games-background);
  border-bottom: 1px solid var(--page-fishing-games-divider-color);
}

.page-fishing-games__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.page-fishing-games__content-wrapper p {
  max-width: 900px;
  font-size: 1.05em;
  color: var(--page-fishing-games-text-main);
  text-align: left;
}

.page-fishing-games__content-wrapper p a {
  color: var(--page-fishing-games-secondary-color);
  text-decoration: underline;
}

.page-fishing-games__content-image,
.page-fishing-games__promotions-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__ordered-list li {
  color: var(--page-fishing-games-text-main);
  margin-bottom: 10px;
  text-align: left;
}

.page-fishing-games__ordered-list li strong {
  color: var(--page-fishing-games-gold-color);
}

.page-fishing-games__ordered-list li a {
  color: var(--page-fishing-games-secondary-color);
  text-decoration: underline;
}

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

.page-fishing-games__game-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-fishing-games__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-fishing-games__game-card-title {
  font-size: 1.5em;
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__game-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-fishing-games__game-card-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__game-card-description {
  color: var(--page-fishing-games-text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-fishing-games__view-all-games {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__why-choose-us-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-deep-green);
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games__dark-section {
  background-color: var(--page-fishing-games-deep-green);
  color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__feature-item {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-fishing-games__feature-title {
  font-size: 1.4em;
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 15px;
}

.page-fishing-games__feature-item p {
  color: var(--page-fishing-games-text-secondary);
  font-size: 1em;
}

.page-fishing-games__feature-item p a {
  color: var(--page-fishing-games-secondary-color);
  text-decoration: underline;
}

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

.page-fishing-games__promo-list {
  list-style-type: disc;
  padding-left: 25px;
  max-width: 800px;
  margin: 30px auto 40px;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__promo-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-fishing-games__promo-list li a {
  color: var(--page-fishing-games-secondary-color);
  text-decoration: underline;
}

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

.page-fishing-games__faq-item {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--page-fishing-games-gold-color);
  cursor: pointer;
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

.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.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-fishing-games-secondary-color);
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  color: var(--page-fishing-games-text-secondary);
  font-size: 1em;
}

.page-fishing-games__faq-answer p a {
  color: var(--page-fishing-games-secondary-color);
  text-decoration: underline;
}

.page-fishing-games__register-cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--page-fishing-games-deep-green);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

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

  .page-fishing-games__cta-buttons {
    gap: 15px;
  }

  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.2em);
  }

  .page-fishing-games__introduction-section, .page-fishing-games__how-to-play-section, .page-fishing-games__featured-games-section, .page-fishing-games__promotions-section, .page-fishing-games__faq-section {
    padding: 50px 0;
  }

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

  .page-fishing-games__game-card-image {
    height: 180px;
  }

  .page-fishing-games__feature-item {
    padding: 25px;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

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

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

@media (max-width: 768px) {
  /* LOGO 轮播区域 */
  .page-fishing-games__logo-carousel-section {
    padding: 10px 15px 20px !important; /* ~10px top padding */
  }

  .page-fishing-games__logo-carousel {
    gap: 15px;
  }

  .page-fishing-games__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    box-sizing: border-box;
  }

  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 0 !important; /* Ensure no double padding from header offset */
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-content {
    padding: 0 15px 30px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 10px;
  }

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

  /* 按钮与按钮容器 */
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 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 15px;
  }

  .page-fishing-games__btn-large {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  /* 通用图片与容器 */
  .page-fishing-games img:not(.page-fishing-games__logo-item img) {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-fishing-games__container,
  .page-fishing-games__content-wrapper,
  .page-fishing-games__game-card,
  .page-fishing-games__feature-item,
  .page-fishing-games__faq-item,
  .page-fishing-games__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__content-wrapper {
    gap: 15px;
  }

  /* 游戏展示区域 */
  .page-fishing-games__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
  }

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

  .page-fishing-games__game-card-image {
    height: 180px;
  }

  /* 其他内容模块 */
  .page-fishing-games__introduction-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__featured-games-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section {
    padding: 40px 0;
    margin-bottom: 20px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 20px;
  }

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

  .page-fishing-games__ordered-list,
  .page-fishing-games__promo-list {
    padding-left: 20px;
    margin: 20px auto;
  }

  .page-fishing-games__ordered-list li,
  .page-fishing-games__promo-list li {
    font-size: 0.95em;
  }

  .page-fishing-games__faq-list {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  .page-fishing-games__why-choose-us-section,
  .page-fishing-games__register-cta-section {
    padding: 50px 0;
  }

  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
  }

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

  .page-fishing-games__feature-title {
    font-size: 1.2em;
  }

  .page-fishing-games__cta-center {
    margin-top: 30px;
  }
}