/* style/blog-how-to-win-at-fishing-games.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --login-button-color: #EA7C07;
  --background-color: #FFFFFF;
  --border-color: #e0e0e0;
}

.page-blog-how-to-win-at-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-blog-how-to-win-at-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-blog-how-to-win-at-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  background-color: #f8f8f8;
  border-bottom: 1px solid var(--border-color);
}

.page-blog-how-to-win-at-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.page-blog-how-to-win-at-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-win-at-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px 40px;
}

.page-blog-how-to-win-at-fishing-games__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-how-to-win-at-fishing-games__intro-text {
  font-size: 1.1em;
  color: var(--text-color-dark);
  margin-bottom: 20px;
}

.page-blog-how-to-win-at-fishing-games__meta-info {
  font-size: 0.9em;
  color: #666;
}

/* Content Sections */
.page-blog-how-to-win-at-fishing-games__content-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-blog-how-to-win-at-fishing-games__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-win-at-fishing-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-blog-how-to-win-at-fishing-games__subsection-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  color: var(--text-color-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-win-at-fishing-games__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-blog-how-to-win-at-fishing-games__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-how-to-win-at-fishing-games__list-item {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-blog-how-to-win-at-fishing-games__article-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-blog-how-to-win-at-fishing-games__article-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Call to Action Section */
.page-blog-how-to-win-at-fishing-games__cta-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 60px 0;
  text-align: center;
}

.page-blog-how-to-win-at-fishing-games__cta-section .page-blog-how-to-win-at-fishing-games__section-title {
  color: var(--text-color-light);
}

.page-blog-how-to-win-at-fishing-games__cta-section .page-blog-how-to-win-at-fishing-games__paragraph {
  color: var(--text-color-light);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-how-to-win-at-fishing-games__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-how-to-win-at-fishing-games__btn-primary,
.page-blog-how-to-win-at-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-win-at-fishing-games__btn-primary {
  background-color: var(--login-button-color);
  color: var(--text-color-light);
  border: 2px solid var(--login-button-color);
}

.page-blog-how-to-win-at-fishing-games__btn-primary:hover {
  background-color: darken(var(--login-button-color), 10%);
  border-color: darken(var(--login-button-color), 10%);
}

.page-blog-how-to-win-at-fishing-games__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-win-at-fishing-games__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* FAQ Section */
.page-blog-how-to-win-at-fishing-games__faq-section {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.page-blog-how-to-win-at-fishing-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-win-at-fishing-games__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-win-at-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

.page-blog-how-to-win-at-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-win-at-fishing-games__faq-qtext {
  flex-grow: 1;
  font-size: 1.1em;
}

.page-blog-how-to-win-at-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-how-to-win-at-fishing-games__faq-item[open] .page-blog-how-to-win-at-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-win-at-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-color-dark);
}

/* Responsive Styles */

/* General responsive styles for all images and containers */
.page-blog-how-to-win-at-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-how-to-win-at-fishing-games__section,
.page-blog-how-to-win-at-fishing-games__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  .page-blog-how-to-win-at-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-win-at-fishing-games__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hero Section */
  .page-blog-how-to-win-at-fishing-games__hero-section {
    padding-top: 10px !important; /* Ensure small padding, not header offset */
  }

  .page-blog-how-to-win-at-fishing-games__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-blog-how-to-win-at-fishing-games__hero-image {
    object-fit: contain !important; /* Mobile main image contain, not cover */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

  .page-blog-how-to-win-at-fishing-games__hero-content {
    padding: 0 15px 30px;
  }

  .page-blog-how-to-win-at-fishing-games__main-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-win-at-fishing-games__intro-text {
    font-size: 1em;
  }

  /* Content Sections */
  .page-blog-how-to-win-at-fishing-games__content-section {
    padding: 30px 0;
  }

  .page-blog-how-to-win-at-fishing-games__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-win-at-fishing-games__subsection-title {
    font-size: 1.2em;
    margin-top: 25px;
  }

  .page-blog-how-to-win-at-fishing-games__article-image-wrapper {
    margin: 20px auto;
  }

  .page-blog-how-to-win-at-fishing-games__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Buttons */
  .page-blog-how-to-win-at-fishing-games__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-win-at-fishing-games__btn-primary,
  .page-blog-how-to-win-at-fishing-games__btn-secondary,
  .page-blog-how-to-win-at-fishing-games a[class*="button"],
  .page-blog-how-to-win-at-fishing-games 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: 12px 20px;
  }

  /* FAQ Section */
  .page-blog-how-to-win-at-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-how-to-win-at-fishing-games__faq-qtext {
    font-size: 1em;
  }

  .page-blog-how-to-win-at-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }

  /* Ensure all images within content sections are responsive */
  .page-blog-how-to-win-at-fishing-games__content-section img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* General content area containers */
  .page-blog-how-to-win-at-fishing-games__content-area,
  .page-blog-how-to-win-at-fishing-games__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* No specific game grid or winner list on this blog page, so no mobile rules needed for them */
}

/* Color Contrast Fixes (if needed, applied automatically) */
.page-blog-how-to-win-at-fishing-games__dark-bg {
  color: var(--text-color-light);
  background: var(--primary-color);
}

.page-blog-how-to-win-at-fishing-games__light-bg {
  color: var(--text-color-dark);
  background: var(--secondary-color);
}

.page-blog-how-to-win-at-fishing-games__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-how-to-win-at-fishing-games__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}