.page-fishing-games-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000000, so text is white */
  background-color: #000000;
}

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

.page-fishing-games-tips__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Rely on body padding-top for header offset */
  padding-bottom: 40px;
  background: linear-gradient(135deg, #26A9E0, #007bff);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-tips__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-fishing-games-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips__hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

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

.page-fishing-games-tips__section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
  line-height: 1.3;
}

.page-fishing-games-tips__paragraph {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: justify;
  color: #f0f0f0; /* Default for dark background sections */
}

.page-fishing-games-tips__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

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

.page-fishing-games-tips__btn-primary:hover {
  background-color: #1e87c7;
  border-color: #1e87c7;
  transform: translateY(-2px);
}

.page-fishing-games-tips__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-tips__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c7;
  border-color: #1e87c7;
  transform: translateY(-2px);
}

.page-fishing-games-tips__introduction-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background */
  color: #f0f0f0;
}

.page-fishing-games-tips__introduction-section .page-fishing-games-tips__section-title {
  color: #26A9E0;
}

.page-fishing-games-tips__introduction-section .page-fishing-games-tips__paragraph {
  color: #f0f0f0;
}

.page-fishing-games-tips__fish-types-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Darker background */
  color: #ffffff;
}

.page-fishing-games-tips__fish-types-section .page-fishing-games-tips__section-title {
  color: #26A9E0;
}

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

.page-fishing-games-tips__fish-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-fishing-games-tips__fish-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-fishing-games-tips__fish-card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games-tips__fish-card-description {
  font-size: 1rem;
  color: #e0e0e0;
}

.page-fishing-games-tips__basic-strategy-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background */
  color: #f0f0f0;
}

.page-fishing-games-tips__basic-strategy-section .page-fishing-games-tips__section-title {
  color: #26A9E0;
}

.page-fishing-games-tips__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games-tips__list-item {
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games-tips__list-description {
  font-size: 1.1rem;
  color: #e0e0e0;
}

.page-fishing-games-tips__advanced-strategy-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Darker background */
  color: #ffffff;
}

.page-fishing-games-tips__advanced-strategy-section .page-fishing-games-tips__section-title {
  color: #26A9E0;
}

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

.page-fishing-games-tips__strategy-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

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

.page-fishing-games-tips__strategy-card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games-tips__strategy-card-description {
  font-size: 1rem;
  color: #e0e0e0;
}

.page-fishing-games-tips__optimization-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background */
  color: #f0f0f0;
}

.page-fishing-games-tips__optimization-section .page-fishing-games-tips__section-title {
  color: #26A9E0;
}

.page-fishing-games-tips__optimization-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games-tips__optimization-list .page-fishing-games-tips__list-item {
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips__optimization-list .page-fishing-games-tips__list-title {
  font-size: 1.8rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games-tips__optimization-list .page-fishing-games-tips__list-description {
  font-size: 1.1rem;
  color: #e0e0e0;
}

.page-fishing-games-tips__optimization-list .page-fishing-games-tips__list-description a {
  color: #EA7C07; /* Login color for internal links */
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games-tips__optimization-list .page-fishing-games-tips__list-description a:hover {
  text-decoration: underline;
}

.page-fishing-games-tips__faq-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Darker background */
  color: #ffffff;
}

.page-fishing-games-tips__faq-section .page-fishing-games-tips__section-title {
  color: #26A9E0;
}

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

.page-fishing-games-tips__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

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

.page-fishing-games-tips__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

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

.page-fishing-games-tips__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-fishing-games-tips__faq-answer a {
  color: #EA7C07; /* Login color for internal links */
  text-decoration: none;
  font-weight: bold;
}

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

.page-fishing-games-tips__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: #1a1a1a; /* Dark background */
  color: #f0f0f0;
}

.page-fishing-games-tips__conclusion-section .page-fishing-games-tips__section-title {
  color: #26A9E0;
}

.page-fishing-games-tips__conclusion-section .page-fishing-games-tips__paragraph {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-fishing-games-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HERO 主图区域 */
  .page-fishing-games-tips__hero-section {
    padding-top: 10px !important; /* Fixed header spacing */
    padding-bottom: 30px;
  }

  .page-fishing-games-tips__hero-content {
    padding: 0 15px;
  }

  .page-fishing-games-tips__main-title {
    font-size: 2rem !important;
    margin-bottom: 10px;
  }

  .page-fishing-games-tips__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* 产品展示图区域 */
  .page-fishing-games-tips__fish-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-tips__fish-card {
    padding: 20px;
  }

  .page-fishing-games-tips__fish-image {
    height: 150px;
  }

  .page-fishing-games-tips__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-tips__strategy-card {
    padding: 20px;
  }

  .page-fishing-games-tips__strategy-image {
    height: 200px;
  }

  /* 通用图片与容器 */
  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games-tips__container,
  .page-fishing-games-tips__introduction-section,
  .page-fishing-games-tips__fish-types-section,
  .page-fishing-games-tips__basic-strategy-section,
  .page-fishing-games-tips__advanced-strategy-section,
  .page-fishing-games-tips__optimization-section,
  .page-fishing-games-tips__faq-section,
  .page-fishing-games-tips__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary,
  .page-fishing-games-tips a[class*="button"],
  .page-fishing-games-tips 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;
    font-size: 1rem;
  }

  /* 按钮容器移动端适配 */
  .page-fishing-games-tips__hero-content .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__introduction-section .page-fishing-games-tips__btn-secondary,
  .page-fishing-games-tips__basic-strategy-section .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__advanced-strategy-section .page-fishing-games-tips__btn-secondary,
  .page-fishing-games-tips__optimization-section .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__conclusion-section .page-fishing-games-tips__btn-primary {
    margin-top: 15px;
  }

  /* 其他内容模块 */
  .page-fishing-games-tips__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-fishing-games-tips__paragraph,
  .page-fishing-games-tips__list-description,
  .page-fishing-games-tips__fish-card-description,
  .page-fishing-games-tips__strategy-card-description,
  .page-fishing-games-tips__faq-answer p {
    font-size: 0.95rem;
  }

  .page-fishing-games-tips__list-title {
    font-size: 1.5rem;
  }

  .page-fishing-games-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-fishing-games-tips__faq-toggle {
    font-size: 1.5rem;
  }

  .page-fishing-games-tips__faq-answer {
    padding: 0 20px 15px;
  }
}