.page-blog-fishing-game-beginners-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-blog-fishing-game-beginners-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0; /* Handled by body padding-top in shared.css */
  padding-bottom: 40px;
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-blog-fishing-game-beginners-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-blog-fishing-game-beginners-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-fishing-game-beginners-guide__hero-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-blog-fishing-game-beginners-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFFF00; /* Register and Login font color for emphasis */
}

.page-blog-fishing-game-beginners-guide__intro-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

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

.page-blog-fishing-game-beginners-guide__cta-buttons--center {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-fishing-game-beginners-guide__btn-primary,
.page-blog-fishing-game-beginners-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

.page-blog-fishing-game-beginners-guide__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-fishing-game-beginners-guide__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-blog-fishing-game-beginners-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-blog-fishing-game-beginners-guide__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-fishing-game-beginners-guide__section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-blog-fishing-game-beginners-guide__sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-fishing-game-beginners-guide__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-fishing-game-beginners-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-fishing-game-beginners-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-fishing-game-beginners-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #333333;
}

.page-blog-fishing-game-beginners-guide__list-item {
  margin-bottom: 10px;
}

.page-blog-fishing-game-beginners-guide__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-fishing-game-beginners-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-fishing-game-beginners-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #017439;
  cursor: pointer;
  background-color: #eaf7f0; /* Lighter shade of primary */
  border-bottom: 1px solid #d8e5df;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-blog-fishing-game-beginners-guide__faq-question:hover {
  background-color: #d8e5df;
}

.page-blog-fishing-game-beginners-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #017439;
}

.page-blog-fishing-game-beginners-guide__faq-item[open] .page-blog-fishing-game-beginners-guide__faq-toggle {
  content: '−';
}

.page-blog-fishing-game-beginners-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1.1rem;
  color: #333333;
  background-color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-fishing-game-beginners-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-fishing-game-beginners-guide__intro-description {
    font-size: 1rem;
  }

  .page-blog-fishing-game-beginners-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-fishing-game-beginners-guide__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-fishing-game-beginners-guide__paragraph,
  .page-blog-fishing-game-beginners-guide__list-item,
  .page-blog-fishing-game-beginners-guide__faq-answer {
    font-size: 1rem;
  }

  .page-blog-fishing-game-beginners-guide__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  /* General content area padding and font size */
  .page-blog-fishing-game-beginners-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-fishing-game-beginners-guide__content-area {
    padding: 20px 15px;
  }

  /* Hero Section */
  .page-blog-fishing-game-beginners-guide__hero-section {
    padding-top: 0 !important; /* Ensure no double padding */
    padding-bottom: 30px;
  }

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

  .page-blog-fishing-game-beginners-guide__hero-content {
    padding: 0 15px;
  }

  .page-blog-fishing-game-beginners-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-blog-fishing-game-beginners-guide__intro-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  /* Buttons and Button Containers */
  .page-blog-fishing-game-beginners-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-blog-fishing-game-beginners-guide__btn-primary,
  .page-blog-fishing-game-beginners-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Section Titles */
  .page-blog-fishing-game-beginners-guide__section-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-fishing-game-beginners-guide__sub-title {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  /* Paragraphs and Lists */
  .page-blog-fishing-game-beginners-guide__paragraph,
  .page-blog-fishing-game-beginners-guide__list-item {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .page-blog-fishing-game-beginners-guide__list {
    margin-left: 20px;
  }

  /* Images and Image Containers */
  .page-blog-fishing-game-beginners-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-fishing-game-beginners-guide__image-wrapper {
    margin: 20px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  /* FAQ Section */
  .page-blog-fishing-game-beginners-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-fishing-game-beginners-guide__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-blog-fishing-game-beginners-guide__faq-toggle {
    font-size: 1.3rem;
  }

  /* All content containers for mobile */
  .page-blog-fishing-game-beginners-guide__container,
  .page-blog-fishing-game-beginners-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}