/* style/blog-77win9-fishing-games-strategy.css */

/* --- Base Styles --- */
.page-blog-77win9-fishing-games-strategy {
  background-color: var(--bg-color, #08160F); /* Default to a dark background if --bg-color is not set */
  color: #F2FFF6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Ensure images maintain aspect ratio and don't overflow containers */
.page-blog-77win9-fishing-games-strategy img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast; /* Improve image quality */
}

.page-blog-77win9-fishing-games-strategy a {
  color: #2AD16F; /* Link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-77win9-fishing-games-strategy a:hover {
  color: #57E38D; /* Glow color for hover */
  text-decoration: underline;
}

/* --- Hero Section --- */
.page-blog-77win9-fishing-games-strategy__hero-section {
  display: flex;
  flex-direction: column; /* Stacks image and content vertically */
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #08160F; /* Ensure background consistency */
  overflow: hidden;
}

.page-blog-77win9-fishing-games-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-blog-77win9-fishing-games-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability if background is light */
  border-radius: 0; /* Hero image usually full width, no border-radius */
}

.page-blog-77win9-fishing-games-strategy__hero-content-block {
  max-width: 900px;
  width: 90%;
  color: #F2FFF6;
  padding: 20px;
  margin-top: 30px; /* Space between image and text */
  background: #11271B; /* Card BG color for content block */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-blog-77win9-fishing-games-strategy__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6;
  line-height: 1.2;
}

.page-blog-77win9-fishing-games-strategy__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color */
}

.page-blog-77win9-fishing-games-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-77win9-fishing-games-strategy__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* --- Content Area --- */
.page-blog-77win9-fishing-games-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Ensure content area matches body background */
  color: #F2FFF6;
}

.page-blog-77win9-fishing-games-strategy__article {
  background-color: #11271B; /* Card BG for article content */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-77win9-fishing-games-strategy__section-title {
  font-size: 2.2em;
  color: #22C768; /* Auxiliary color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-77win9-fishing-games-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #22C768, transparent);
  border-radius: 2px;
}

.page-blog-77win9-fishing-games-strategy__sub-title {
  font-size: 1.6em;
  color: #57E38D; /* Glow color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #2AD16F;
  padding-left: 15px;
}

.page-blog-77win9-fishing-games-strategy__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-blog-77win9-fishing-games-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-blog-77win9-fishing-games-strategy__list-item {
  margin-bottom: 8px;
  color: #A7D9B8; /* Secondary text color for list items */
}

/* Images within content */
.page-blog-77win9-fishing-games-strategy__image {
  margin: 30px auto;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

/* --- CTA Section at the end of article --- */
.page-blog-77win9-fishing-games-strategy__cta-section {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-77win9-fishing-games-strategy__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
}

.page-blog-77win9-fishing-games-strategy__cta-button--secondary {
  background: #11271B; /* Card BG for secondary button */
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-77win9-fishing-games-strategy__cta-button--secondary:hover {
  background: #2E7A4E; /* Border color for hover */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* --- FAQ Section --- */
.page-blog-77win9-fishing-games-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-77win9-fishing-games-strategy__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-77win9-fishing-games-strategy__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green when open */
}

.page-blog-77win9-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6;
  list-style: none; /* Remove default marker for details/summary */
}

.page-blog-77win9-fishing-games-strategy__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit browsers */
}

.page-blog-77win9-fishing-games-strategy__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6;
}

.page-blog-77win9-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-77win9-fishing-games-strategy__faq-item[open] .page-blog-77win9-fishing-games-strategy__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or similar */
}

.page-blog-77win9-fishing-games-strategy__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  color: #A7D9B8;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .page-blog-77win9-fishing-games-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-77win9-fishing-games-strategy__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 40px;
  }

  .page-blog-77win9-fishing-games-strategy__hero-content-block {
    margin-top: 20px;
    padding: 15px;
    width: 95%;
    max-width: none;
    background: #11271B; /* Card BG color for content block */
  }

  .page-blog-77win9-fishing-games-strategy__main-title {
    font-size: 2em; /* Adjust H1 for mobile */
    margin-bottom: 10px;
  }

  .page-blog-77win9-fishing-games-strategy__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-77win9-fishing-games-strategy__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;
    font-size: 1em;
  }

  .page-blog-77win9-fishing-games-strategy__content-area {
    padding: 30px 15px;
  }

  .page-blog-77win9-fishing-games-strategy__article {
    padding: 20px;
  }

  .page-blog-77win9-fishing-games-strategy__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-77win9-fishing-games-strategy__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 10px;
  }

  .page-blog-77win9-fishing-games-strategy__image {
    margin: 20px auto;
  }

  .page-blog-77win9-fishing-games-strategy__cta-section {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-77win9-fishing-games-strategy__cta-section .page-blog-77win9-fishing-games-strategy__cta-button {
    width: 100%;
  }

  /* Images and their containers */
  .page-blog-77win9-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-77win9-fishing-games-strategy__hero-image-wrapper,
  .page-blog-77win9-fishing-games-strategy__content-area,
  .page-blog-77win9-fishing-games-strategy__article,
  .page-blog-77win9-fishing-games-strategy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-blog-77win9-fishing-games-strategy__hero-image-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-77win9-fishing-games-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-77win9-fishing-games-strategy__faq-answer {
    padding: 0 20px 15px 20px;
  }
}