.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-fishing-games__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-fishing-games__section-title {
  font-size: 38px;
  color: #0A2E36;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__section-description,
.page-fishing-games__dark-bg .page-fishing-games__card h3,
.page-fishing-games__dark-bg .page-fishing-games__card p {
  color: #ffffff;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-top: 0; /* Assuming shared.css sets body padding-top */
  padding-bottom: 80px;
  overflow: hidden;
}

.page-fishing-games__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.page-fishing-games__hero-content {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}

.page-fishing-games__hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for highlight */
}

.page-fishing-games__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-fishing-games__hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-fishing-games__hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__btn-primary {
  background-color: #FFD700;
  color: #0A2E36;
}

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

.page-fishing-games__btn-secondary {
  background-color: #0A2E36;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #1a4f5d;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-fishing-games__btn-tertiary {
  background-color: transparent;
  color: #0A2E36;
  border: 2px solid #0A2E36;
  padding: 10px 20px;
  font-size: 16px;
}

.page-fishing-games__dark-bg .page-fishing-games__btn-tertiary {
  color: #FFD700;
  border-color: #FFD700;
}

.page-fishing-games__btn-tertiary:hover {
  background-color: #0A2E36;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-fishing-games__dark-bg .page-fishing-games__btn-tertiary:hover {
  background-color: #FFD700;
  color: #0A2E36;
}

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

.page-fishing-games__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__dark-card {
  background-color: #1a4f5d;
  border: 1px solid #0A2E36;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__dark-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-title,
.page-fishing-games__game-title,
.page-fishing-games__step-title,
.page-fishing-games__tip-title,
.page-fishing-games__promo-title {
  font-size: 24px;
  font-weight: 700;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-fishing-games__dark-bg .page-fishing-games__feature-title,
.page-fishing-games__dark-bg .page-fishing-games__game-title,
.page-fishing-games__dark-bg .page-fishing-games__step-title,
.page-fishing-games__dark-bg .page-fishing-games__tip-title,
.page-fishing-games__dark-bg .page-fishing-games__promo-title {
  color: #FFD700;
}

.page-fishing-games__feature-text,
.page-fishing-games__game-description,
.page-fishing-games__step-text,
.page-fishing-games__tip-text,
.page-fishing-games__promo-text {
  font-size: 16px;
  color: #666666;
}

.page-fishing-games__dark-bg .page-fishing-games__feature-text,
.page-fishing-games__dark-bg .page-fishing-games__game-description,
.page-fishing-games__dark-bg .page-fishing-games__step-text,
.page-fishing-games__dark-bg .page-fishing-games__tip-text,
.page-fishing-games__dark-bg .page-fishing-games__promo-text {
  color: #e0e0e0;
}

.page-fishing-games__image-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-fishing-games__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Game Showcase Grid */
.page-fishing-games__game-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games__game-card {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-fishing-games__game-card .page-fishing-games__btn-secondary {
  margin-top: auto;
}

/* Guide Section */
.page-fishing-games__guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-fishing-games__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-fishing-games__step-item {
  text-align: left;
  padding: 25px;
  position: relative;
  padding-left: 70px;
}

.page-fishing-games__step-number {
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: #FFD700;
  color: #0A2E36;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.page-fishing-games__guide-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tips Section */
.page-fishing-games__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games__tip-item {
  text-align: left;
  padding: 25px;
}

/* Promotions Section */
.page-fishing-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-fishing-games__promo-card {
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__promo-card .page-fishing-games__btn-tertiary {
  margin-top: auto;
  align-self: flex-start;
}

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

/* FAQ Section */
.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 50px auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games__dark-bg .page-fishing-games__faq-question {
  background: #1a4f5d;
  border-color: #0A2E36;
}

.page-fishing-games__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-fishing-games__dark-bg .page-fishing-games__faq-question:hover {
  background: #2a6f7d;
  border-color: #1a4f5d;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #0A2E36;
}

.page-fishing-games__dark-bg .page-fishing-games__faq-question h3 {
  color: #ffffff;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-fishing-games__dark-bg .page-fishing-games__faq-toggle {
  color: #FFD700;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Changed from '-' to '+' rotation for visual */
}

.page-fishing-games__dark-bg .page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #FFD700;
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 25px;
  opacity: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games__dark-bg .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  background: #0f3d47;
  border-color: #0A2E36;
}

.page-fishing-games__faq-answer p {
  color: #444444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-fishing-games__dark-bg .page-fishing-games__faq-answer p {
  color: #cccccc;
}

.page-fishing-games__faq-answer .page-fishing-games__btn-tertiary {
  margin-top: 15px;
}

/* Final CTA Section */
.page-fishing-games__cta-final {
  padding-bottom: 100px;
}

.page-fishing-games__cta-final .page-fishing-games__btn-primary {
  margin-top: 30px;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    padding-bottom: 60px;
  }
  .page-fishing-games__hero-container {
    flex-direction: column-reverse;
    text-align: center;
    padding: 0 15px;
    gap: 30px;
  }
  .page-fishing-games__hero-content {
    padding-right: 0;
    text-align: center;
  }
  .page-fishing-games__hero-title {
    font-size: 44px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__hero-image {
    justify-content: center;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-fishing-games__guide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-fishing-games__guide-image {
    order: -1; /* Image first on smaller screens */
  }
  .page-fishing-games__faq-question h3 {
    font-size: 17px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 26px;
  }
  .page-fishing-games__faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 0 !important; /* Assuming shared.css sets body padding-top */
    padding-bottom: 40px;
  }
  .page-fishing-games__hero-container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-fishing-games__hero-content {
    padding: 0 !important;
  }
  .page-fishing-games__hero-title {
    font-size: 36px !important;
  }
  .page-fishing-games__hero-description {
    font-size: 16px !important;
  }

  /* 其他内容模块 - 通用容器 */
  .page-fishing-games__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-fishing-games__section {
    padding: 40px 0 !important;
  }
  .page-fishing-games__section-title {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }
  .page-fishing-games__section-description {
    font-size: 15px !important;
    margin-bottom: 25px !important;
  }

  /* 通用图片与容器 */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__image-wrapper {
    margin-top: 20px !important;
  }
  .page-fishing-games__image-wrapper img {
    border-radius: 8px !important;
  }

  /* 按钮与按钮容器 */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-tertiary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
  .page-fishing-games__hero-section .page-fishing-games__btn-primary {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .page-fishing-games__game-card .page-fishing-games__btn-secondary {
    width: auto !important; /* Allow button to shrink */
    max-width: fit-content !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-fishing-games__promo-card .page-fishing-games__btn-tertiary {
    align-self: center !important;
    width: auto !important;
    max-width: fit-content !important;
  }

  /* Feature Grid */
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .page-fishing-games__card {
    padding: 20px !important;
  }

  /* Game Showcase Grid */
  .page-fishing-games__game-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 30px !important;
  }
  .page-fishing-games__game-card {
    padding: 20px !important;
  }
  .page-fishing-games__game-image {
    height: 180px !important;
  }

  /* Guide Section */
  .page-fishing-games__guide-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 30px !important;
  }
  .page-fishing-games__guide-steps {
    gap: 15px !important;
  }
  .page-fishing-games__step-item {
    padding: 20px !important;
    padding-left: 60px !important;
  }
  .page-fishing-games__step-number {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
    left: 20px !important;
    top: 20px !important;
  }
  .page-fishing-games__step-title {
    font-size: 20px !important;
  }
  .page-fishing-games__step-text {
    font-size: 15px !important;
  }
  .page-fishing-games__guide-image {
    order: -1 !important;
  }

  /* Tips Section */
  .page-fishing-games__tips-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 30px !important;
  }
  .page-fishing-games__tip-item {
    padding: 20px !important;
  }

  /* Promotions Section */
  .page-fishing-games__promotions-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .page-fishing-games__promo-card {
    padding: 20px !important;
  }

  /* FAQ Section */
  .page-fishing-games__faq-list {
    margin: 30px auto !important;
  }
  .page-fishing-games__faq-item {
    margin-bottom: 10px !important;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px !important;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px !important;
    width: calc(100% - 40px) !important;
  }
  .page-fishing-games__faq-toggle {
    margin-left: 10px !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 22px !important;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px !important;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }
  .page-fishing-games__faq-answer p {
    font-size: 14px !important;
  }

  /* Final CTA Section */
  .page-fishing-games__cta-final {
    padding-bottom: 60px !important;
  }
  .page-fishing-games__cta-final .page-fishing-games__btn-primary {
    margin-top: 20px !important;
  }
}