/* style/blog-sp666-fishing-games-guide.css */
/* Base styles for the page content */
.page-blog-sp666-fishing-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color, assuming dark background */
  background-color: transparent; /* Main content area background is transparent, letting body background show */
}

/* Hero Section */
.page-blog-sp666-fishing-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-sp666-fishing-games-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-blog-sp666-fishing-games-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #F2FFF6;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Slightly transparent dark background for text */
  border-radius: 10px;
}

.page-blog-sp666-fishing-games-guide__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-sp666-fishing-games-guide__hero-description {
  font-size: clamp(1em, 2vw, 1.3em);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary, #A7D9B8);
}

/* General Section Styles */
.page-blog-sp666-fishing-games-guide__section {
  padding: 40px 20px;
  background-color: var(--background, #08160F); /* Main background color */
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-sp666-fishing-games-guide__section:last-of-type {
  border-bottom: none;
}

.page-blog-sp666-fishing-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-sp666-fishing-games-guide__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--gold, #F2C14E);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-sp666-fishing-games-guide__sub-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  color: var(--text-main, #F2FFF6);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  border-left: 4px solid var(--primary-color, #11A84E);
  padding-left: 15px;
}

.page-blog-sp666-fishing-games-guide__paragraph {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 1em;
  text-align: justify;
}

.page-blog-sp666-fishing-games-guide__highlight-text {
  color: var(--primary-color, #11A84E);
  font-weight: bold;
}

.page-blog-sp666-fishing-games-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-sp666-fishing-games-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-blog-sp666-fishing-games-guide__list-item strong {
  color: var(--text-main, #F2FFF6);
}

/* Image Styles */
.page-blog-sp666-fishing-games-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-blog-sp666-fishing-games-guide__image--small {
  max-width: 600px;
}

/* CTA Button Styles */
.page-blog-sp666-fishing-games-guide__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-sp666-fishing-games-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-sp666-fishing-games-guide__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-sp666-fishing-games-guide__cta-button--secondary {
  background: var(--secondary-color, #22C768);
}

.page-blog-sp666-fishing-games-guide__cta-button--secondary:hover {
  background: var(--primary-color, #11A84E);
}

.page-blog-sp666-fishing-games-guide__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-blog-sp666-fishing-games-guide__faq-list {
  margin-top: 30px;
}

.page-blog-sp666-fishing-games-guide__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-sp666-fishing-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  background-color: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider, #1E3A2A);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-sp666-fishing-games-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-sp666-fishing-games-guide__faq-question:hover {
  background-color: var(--primary-color, #11A84E);
}

.page-blog-sp666-fishing-games-guide__faq-item[open] .page-blog-sp666-fishing-games-guide__faq-question {
  background-color: var(--primary-color, #11A84E);
  border-bottom: 1px solid var(--primary-color, #11A84E);
}

.page-blog-sp666-fishing-games-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-sp666-fishing-games-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-blog-sp666-fishing-games-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: var(--text-secondary, #A7D9B8);
  background-color: var(--card-bg, #11271B);
  border-top: 1px solid var(--divider, #1E3A2A);
}

.page-blog-sp666-fishing-games-guide__faq-answer .page-blog-sp666-fishing-games-guide__paragraph:last-child {
  margin-bottom: 0;
}

/* Links within content */
.page-blog-sp666-fishing-games-guide__paragraph a,
.page-blog-sp666-fishing-games-guide__list-item a,
.page-blog-sp666-fishing-games-guide__faq-answer a {
  color: var(--secondary-color, #22C768);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-sp666-fishing-games-guide__paragraph a:hover,
.page-blog-sp666-fishing-games-guide__list-item a:hover,
.page-blog-sp666-fishing-games-guide__faq-answer a:hover {
  text-decoration: underline;
  color: var(--primary-color, #11A84E);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-sp666-fishing-games-guide__hero-content {
    padding: 15px;
  }

  .page-blog-sp666-fishing-games-guide__main-title {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }

  .page-blog-sp666-fishing-games-guide__hero-description {
    font-size: clamp(0.9em, 1.8vw, 1.2em);
  }

  .page-blog-sp666-fishing-games-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-blog-sp666-fishing-games-guide__section-title {
    font-size: clamp(1.6em, 3vw, 2.2em);
  }

  .page-blog-sp666-fishing-games-guide__sub-title {
    font-size: clamp(1.3em, 2.2vw, 1.6em);
  }
}

@media (max-width: 768px) {
  .page-blog-sp666-fishing-games-guide__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-sp666-fishing-games-guide__hero-content {
    padding: 10px;
  }

  .page-blog-sp666-fishing-games-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-blog-sp666-fishing-games-guide__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
    margin-bottom: 20px;
  }

  .page-blog-sp666-fishing-games-guide__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-blog-sp666-fishing-games-guide__cta-button--large {
    padding: 16px 25px;
    font-size: 1.1em;
  }

  .page-blog-sp666-fishing-games-guide__cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-blog-sp666-fishing-games-guide__section {
    padding: 30px 0;
  }

  .page-blog-sp666-fishing-games-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-sp666-fishing-games-guide__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
    margin-bottom: 20px;
  }

  .page-blog-sp666-fishing-games-guide__sub-title {
    font-size: clamp(1.2em, 4vw, 1.5em);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-sp666-fishing-games-guide__paragraph,
  .page-blog-sp666-fishing-games-guide__list-item,
  .page-blog-sp666-fishing-games-guide__faq-answer {
    font-size: 1em;
  }

  .page-blog-sp666-fishing-games-guide__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* FAQ */
  .page-blog-sp666-fishing-games-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-sp666-fishing-games-guide__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-blog-sp666-fishing-games-guide__main-title {
    font-size: clamp(1.3em, 8vw, 2em);
  }

  .page-blog-sp666-fishing-games-guide__hero-description {
    font-size: clamp(0.85em, 3vw, 1em);
  }

  .page-blog-sp666-fishing-games-guide__section-title {
    font-size: clamp(1.2em, 6vw, 1.8em);
  }

  .page-blog-sp666-fishing-games-guide__sub-title {
    font-size: clamp(1.1em, 5vw, 1.4em);
  }

  .page-blog-sp666-fishing-games-guide__list {
    margin-left: 15px;
  }

  .page-blog-sp666-fishing-games-guide__faq-question {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-blog-sp666-fishing-games-guide__faq-answer {
    padding: 12px 15px;
  }
}