.page-blog-fishing-games-beginner-guide {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color: #333333;
  --heading-color: #017439;
  --light-bg: #f8f8f8;
  --dark-text: #333333;
  --light-text: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--secondary-color); /* Assuming body background is light */
}

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

.page-blog-fishing-games-beginner-guide__hero-section {
  padding-top: 0; /* Handled by body padding-top in shared.css */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.page-blog-fishing-games-beginner-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-blog-fishing-games-beginner-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-fishing-games-beginner-guide__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual effect, but not text on image */
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: relative;
}

.page-blog-fishing-games-beginner-guide__main-title {
  font-weight: bold;
  color: var(--heading-color);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 100%;
  text-align: center;
}

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

.page-blog-fishing-games-beginner-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-fishing-games-beginner-guide__btn-primary,
.page-blog-fishing-games-beginner-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 300px;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fishing-games-beginner-guide__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-blog-fishing-games-beginner-guide__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-blog-fishing-games-beginner-guide__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-fishing-games-beginner-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-fishing-games-beginner-guide__content-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-blog-fishing-games-beginner-guide__text-block {
  flex: 1;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-fishing-games-beginner-guide__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-fishing-games-beginner-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.page-blog-fishing-games-beginner-guide__section-title {
  color: var(--heading-color);
  font-size: 2.2em;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-blog-fishing-games-beginner-guide__sub-title {
  color: var(--heading-color);
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-fishing-games-beginner-guide p {
  margin-bottom: 1em;
  color: var(--dark-text);
}

.page-blog-fishing-games-beginner-guide__ordered-list,
.page-blog-fishing-games-beginner-guide__unordered-list {
  margin-bottom: 1em;
  padding-left: 25px;
  color: var(--dark-text);
}

.page-blog-fishing-games-beginner-guide__ordered-list li,
.page-blog-fishing-games-beginner-guide__unordered-list li {
  margin-bottom: 0.5em;
}

.page-blog-fishing-games-beginner-guide__faq-section {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 60px 20px;
  border-radius: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-fishing-games-beginner-guide__faq-section .page-blog-fishing-games-beginner-guide__section-title {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-fishing-games-beginner-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--light-text);
}

.page-blog-fishing-games-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* For details/summary */
}

.page-blog-fishing-games-beginner-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-fishing-games-beginner-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-blog-fishing-games-beginner-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95em;
  line-height: 1.5;
  color: var(--light-text);
}

/* Floating action buttons for login/register */
.page-blog-fishing-games-beginner-guide__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-blog-fishing-games-beginner-guide__floating-button {
  background-color: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-blog-fishing-games-beginner-guide__floating-button:hover {
  background-color: #a00606;
}

/* Media Queries for Responsiveness */

/* Tablet and Mobile */
@media (max-width: 1024px) {
  .page-blog-fishing-games-beginner-guide__section {
    padding: 40px 15px;
  }

  .page-blog-fishing-games-beginner-guide__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-blog-fishing-games-beginner-guide__main-title {
    font-size: clamp(2em, 5vw, 2.8em); /* Using clamp for H1 */
  }

  .page-blog-fishing-games-beginner-guide__section-title {
    font-size: 2em;
  }

  .page-blog-fishing-games-beginner-guide__sub-title {
    font-size: 1.4em;
  }

  .page-blog-fishing-games-beginner-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-fishing-games-beginner-guide__btn-primary,
  .page-blog-fishing-games-beginner-guide__btn-secondary {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  /* 1. LOGO 轮播区域 (Not present in this page, but if it were, it would be here) */
  /* If there was a logo carousel: */
  /* .page-blog-fishing-games-beginner-guide__logo-carousel-section { padding: 10px 15px 20px !important; } */
  /* .page-blog-fishing-games-beginner-guide__logo-carousel { flex-wrap: wrap; justify-content: center; } */
  /* .page-blog-fishing-games-beginner-guide__logo-item { width: 80px !important; height: 80px !important; max-width: 80px !important; margin: 5px !important; } */

  /* 2. HERO 主图区域 */
  .page-blog-fishing-games-beginner-guide__hero-section {
    padding-top: 0 !important; /* Ensure no double padding */
  }
  .page-blog-fishing-games-beginner-guide__hero-content {
    margin-top: -40px; /* Adjust overlap for smaller screens */
    padding: 20px 15px;
    border-radius: 5px;
  }
  .page-blog-fishing-games-beginner-guide__main-title {
    font-size: 1.8em; /* Smaller font for mobile H1 */
    line-height: 1.3;
  }
  .page-blog-fishing-games-beginner-guide__hero-description {
    font-size: 1em;
  }

  /* 3. 游戏展示区域 (General content blocks) */
  .page-blog-fishing-games-beginner-guide__content-area {
    gap: 30px;
  }
  .page-blog-fishing-games-beginner-guide__text-block,
  .page-blog-fishing-games-beginner-guide__image-block {
    padding: 15px;
  }
  .page-blog-fishing-games-beginner-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-blog-fishing-games-beginner-guide__sub-title {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  /* 4. 通用图片与容器 */
  .page-blog-fishing-games-beginner-guide img:not(.page-blog-fishing-games-beginner-guide__logo-item) {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-fishing-games-beginner-guide__section,
  .page-blog-fishing-games-beginner-guide__text-block,
  .page-blog-fishing-games-beginner-guide__image-block,
  .page-blog-fishing-games-beginner-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 5. 按钮与按钮容器 */
  .page-blog-fishing-games-beginner-guide__cta-button,
  .page-blog-fishing-games-beginner-guide__btn-primary,
  .page-blog-fishing-games-beginner-guide__btn-secondary,
  .page-blog-fishing-games-beginner-guide a[class*="button"],
  .page-blog-fishing-games-beginner-guide 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-fishing-games-beginner-guide__cta-buttons,
  .page-blog-fishing-games-beginner-guide__button-group,
  .page-blog-fishing-games-beginner-guide__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;
    flex-direction: column; /* Stack buttons vertically */
  }

  /* 6. 其他内容模块 (FAQ specific adjustments) */
  .page-blog-fishing-games-beginner-guide__faq-section {
    padding: 30px 15px;
  }
  .page-blog-fishing-games-beginner-guide__faq-question {
    padding: 15px;
    font-size: 1em;
  }
  .page-blog-fishing-games-beginner-guide__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.9em;
  }

  .page-blog-fishing-games-beginner-guide__floating-buttons {
    bottom: 15px;
    right: 15px;
  }
  .page-blog-fishing-games-beginner-guide__floating-button {
    padding: 10px 18px;
    font-size: 0.9em;
  }
}