.page-blog-online-fishing-game-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main);
  background-color: var(--Deep-Navy);
}

.page-blog-online-fishing-game-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  color: var(--Text-Main);
}

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

.page-blog-online-fishing-game-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-online-fishing-game-tips__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-online-fishing-game-tips__main-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--Gold);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-online-fishing-game-tips__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--Text-Secondary);
}

.page-blog-online-fishing-game-tips__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.page-blog-online-fishing-game-tips__btn-primary,
.page-blog-online-fishing-game-tips__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-online-fishing-game-tips__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-online-fishing-game-tips__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

.page-blog-online-fishing-game-tips__btn-secondary {
  background: #10233F;
  color: var(--Text-Main);
  border: 1px solid var(--Border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-online-fishing-game-tips__btn-secondary:hover {
  background: var(--Deep-Navy);
  border-color: var(--Glow);
  color: var(--Glow);
  transform: translateY(-2px);
}

.page-blog-online-fishing-game-tips__section {
  padding: 60px 0;
}

.page-blog-online-fishing-game-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-online-fishing-game-tips__section-title {
  font-size: 2.2em;
  color: var(--Gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-online-fishing-game-tips__paragraph {
  font-size: 1.1em;
  color: var(--Text-Secondary);
  text-align: justify;
  margin-bottom: 20px;
}

.page-blog-online-fishing-game-tips__why-fishing .page-blog-online-fishing-game-tips__paragraph,
.page-blog-online-fishing-game-tips__why-fishing .page-blog-online-fishing-game-tips__list-item {
  color: var(--Text-Main);
}

.page-blog-online-fishing-game-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  color: var(--Text-Secondary);
}

.page-blog-online-fishing-game-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-online-fishing-game-tips__list-item strong {
  color: var(--Gold);
}

.page-blog-online-fishing-game-tips__basic-techniques {
  background-color: var(--Card-B-G);
}

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

.page-blog-online-fishing-game-tips__card {
  background-color: var(--Deep-Navy);
  border: 1px solid var(--Border);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-blog-online-fishing-game-tips__card:hover {
  transform: translateY(-5px);
}

.page-blog-online-fishing-game-tips__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-online-fishing-game-tips__card-title {
  font-size: 1.5em;
  color: var(--Glow);
  margin-bottom: 10px;
}

.page-blog-online-fishing-game-tips__card-text {
  font-size: 0.95em;
  color: var(--Text-Secondary);
}

.page-blog-online-fishing-game-tips__advanced-strategies {
  background-color: var(--Deep-Navy);
}

.page-blog-online-fishing-game-tips__article {
  background-color: var(--Card-B-G);
  border: 1px solid var(--Border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-online-fishing-game-tips__article-subtitle {
  font-size: 1.8em;
  color: var(--Gold);
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--Divider);
  padding-bottom: 10px;
}

.page-blog-online-fishing-game-tips__article-subtitle:first-of-type {
  margin-top: 0;
}

.page-blog-online-fishing-game-tips__article-text {
  font-size: 1.05em;
  color: var(--Text-Secondary);
  text-align: justify;
  margin-bottom: 25px;
}

.page-blog-online-fishing-game-tips__common-mistakes {
  background-color: var(--Deep-Navy);
}

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

.page-blog-online-fishing-game-tips__mistake-item {
  background-color: var(--Card-B-G);
  border: 1px solid var(--Border);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-online-fishing-game-tips__mistake-title {
  font-size: 1.4em;
  color: var(--Glow);
  margin-bottom: 10px;
}

.page-blog-online-fishing-game-tips__mistake-description {
  font-size: 0.95em;
  color: var(--Text-Secondary);
}

.page-blog-online-fishing-game-tips__benefits-79king {
  background-color: var(--Card-B-G);
}

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

.page-blog-online-fishing-game-tips__benefit-card {
  background-color: var(--Deep-Navy);
  border: 1px solid var(--Border);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-blog-online-fishing-game-tips__benefit-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-online-fishing-game-tips__benefit-title {
  font-size: 1.4em;
  color: var(--Gold);
  margin-bottom: 10px;
}

.page-blog-online-fishing-game-tips__benefit-text {
  font-size: 0.95em;
  color: var(--Text-Secondary);
}

.page-blog-online-fishing-game-tips__faq-section {
  background-color: var(--Deep-Navy);
}

.page-blog-online-fishing-game-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-online-fishing-game-tips__faq-item {
  background-color: var(--Card-B-G);
  border: 1px solid var(--Border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-online-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--Text-Main);
  cursor: pointer;
  background-color: var(--Card-B-G);
  transition: background-color 0.3s ease;
}

.page-blog-online-fishing-game-tips__faq-question:hover {
  background-color: var(--Border);
}

.page-blog-online-fishing-game-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--Glow);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-online-fishing-game-tips__faq-answer {
  padding: 0 25px 18px;
  font-size: 1em;
  color: var(--Text-Secondary);
  line-height: 1.7;
  overflow: hidden;
}

.page-blog-online-fishing-game-tips__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
}

.page-blog-online-fishing-game-tips__faq-answer a {
  color: var(--Glow);
  text-decoration: none;
}

.page-blog-online-fishing-game-tips__faq-answer a:hover {
  text-decoration: underline;
}

.page-blog-online-fishing-game-tips__conclusion {
  background-color: var(--Deep-Navy);
  text-align: center;
  padding-bottom: 60px;
}

.page-blog-online-fishing-game-tips__conclusion .page-blog-online-fishing-game-tips__paragraph {
  max-width: 900px;
  margin: 0 auto 30px;
  color: var(--Text-Secondary);
}

.page-blog-online-fishing-game-tips__conclusion .page-blog-online-fishing-game-tips__btn-primary {
  display: inline-block;
  margin-top: 20px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-online-fishing-game-tips__main-title {
    font-size: 2.4em;
  }

  .page-blog-online-fishing-game-tips__section-title {
    font-size: 2em;
  }

  .page-blog-online-fishing-game-tips__grid,
  .page-blog-online-fishing-game-tips__mistakes-list,
  .page-blog-online-fishing-game-tips__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .page-blog-online-fishing-game-tips__hero-image-wrapper {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-blog-online-fishing-game-tips__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 30px;
  }

  .page-blog-online-fishing-game-tips__hero-image-wrapper {
    max-height: 250px;
  }

  .page-blog-online-fishing-game-tips__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-blog-online-fishing-game-tips__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  /* 按钮与按钮容器 */
  .page-blog-online-fishing-game-tips__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-online-fishing-game-tips__btn-primary,
  .page-blog-online-fishing-game-tips__btn-secondary,
  .page-blog-online-fishing-game-tips a[class*="button"],
  .page-blog-online-fishing-game-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-left: 15px;
    padding-right: 15px;
  }

  /* 通用图片与容器 */
  .page-blog-online-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-online-fishing-game-tips__container,
  .page-blog-online-fishing-game-tips__section,
  .page-blog-online-fishing-game-tips__card,
  .page-blog-online-fishing-game-tips__article,
  .page-blog-online-fishing-game-tips__benefit-card,
  .page-blog-online-fishing-game-tips__mistake-item,
  .page-blog-online-fishing-game-tips__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-online-fishing-game-tips__section {
    padding: 40px 0;
  }

  .page-blog-online-fishing-game-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-online-fishing-game-tips__paragraph,
  .page-blog-online-fishing-game-tips__list-item,
  .page-blog-online-fishing-game-tips__card-text,
  .page-blog-online-fishing-game-tips__article-text,
  .page-blog-online-fishing-game-tips__mistake-description,
  .page-blog-online-fishing-game-tips__benefit-text,
  .page-blog-online-fishing-game-tips__faq-answer p {
    font-size: 0.95em;
  }

  .page-blog-online-fishing-game-tips__grid,
  .page-blog-online-fishing-game-tips__mistakes-list,
  .page-blog-online-fishing-game-tips__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-online-fishing-game-tips__card-image,
  .page-blog-online-fishing-game-tips__benefit-image {
    height: 150px;
  }

  .page-blog-online-fishing-game-tips__card-title,
  .page-blog-online-fishing-game-tips__mistake-title,
  .page-blog-online-fishing-game-tips__benefit-title {
    font-size: 1.3em;
  }

  .page-blog-online-fishing-game-tips__article-subtitle {
    font-size: 1.6em;
  }

  .page-blog-online-fishing-game-tips__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-online-fishing-game-tips__faq-answer {
    padding: 0 20px 15px;
  }

  /* Other content modules - FAQ, Conclusion */
  .page-blog-online-fishing-game-tips__faq-list {
    padding: 0 15px;
  }

  .page-blog-online-fishing-game-tips__conclusion .page-blog-online-fishing-game-tips__paragraph {
    padding: 0 15px;
  }
}