.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-fishing-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  background-color: #0D0E12;
}

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

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

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

.page-fishing-games__main-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-fishing-games__hero-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: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  transform: translateY(-2px);
}

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

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

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

.page-fishing-games__section-title {
  font-size: 2.2em;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-fishing-games__section-description {
  font-size: 1em;
  color: #FFF3E6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__dark-section {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
  margin: 40px 0;
}

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

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

.page-fishing-games__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards in a row have same height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF3E6;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__card-text {
  font-size: 0.95em;
  color: #FFF3E6;
  flex-grow: 1;
}

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

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

.page-fishing-games__step-item {
  text-align: center;
  padding: 30px;
  position: relative;
}

.page-fishing-games__step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px auto;
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.5);
}

.page-fishing-games__strategic-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 60px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  color: #FFF3E6;
  background-color: #17191F;
  border: 1px solid #A84F0C;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #17191F;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  color: #FFB04D;
  list-style: none;
}

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid #A84F0C;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFA53A;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  color: #FFF3E6;
}

.page-fishing-games__conclusion-section {
  padding: 60px 0;
  background-color: #17191F;
}

.page-fishing-games__copyright {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85em;
  color: #A84F0C;
  background-color: #0D0E12;
  margin-top: 40px;
}

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

.page-fishing-games__section,
.page-fishing-games__card,
.page-fishing-games__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 2.5em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-content {
    padding: 30px 15px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games__dark-section, .page-fishing-games__faq-section, .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }
  .page-fishing-games__features-grid, .page-fishing-games__game-cards-grid, .page-fishing-games__promo-grid, .page-fishing-games__guide-steps, .page-fishing-games__tips-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
  }
  .page-fishing-games__main-title {
    font-size: 2em !important;
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 0.95em !important;
    margin-bottom: 25px;
  }
  .page-fishing-games__hero-cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px;
  }

  /* 产品展示图区域 & 其他内容模块 */
  .page-fishing-games__features-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__tips-grid {
    grid-template-columns: 1fr !important; /* Single column layout */
    gap: 20px !important;
    padding: 0 15px;
  }
  .page-fishing-games__card {
    padding: 20px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em !important;
    margin-bottom: 25px;
    padding: 0 15px;
  }
  .page-fishing-games__section-description {
    font-size: 0.9em !important;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .page-fishing-games__dark-section, .page-fishing-games__faq-section, .page-fishing-games__conclusion-section {
    padding: 30px 0 !important;
  }

  /* 通用图片与容器 */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__card-image {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 按钮与按钮容器 */
  .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-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-center,
  .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 !important;
  }
  .page-fishing-games__cta-center .page-fishing-games__btn-primary {
    width: auto !important; /* Allow button to size based on content if not full width */
    max-width: 100% !important;
  }
  .page-fishing-games__faq-question {
    font-size: 1em !important;
    padding: 15px 20px !important;
  }
  .page-fishing-games__faq-answer {
    padding: 10px 20px 15px !important;
    font-size: 0.9em !important;
  }
  .page-fishing-games__copyright {
    padding: 20px 15px !important;
    font-size: 0.75em !important;
  }
}