/* style/blog-cwin-fishing-game-strategy.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --background-dark: #08160F;
  --card-bg: #11271B;
  --button-gradient-start: #2AD16F;
  --button-gradient-end: #13994A;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-cwin-fishing-game-strategy {
  background-color: var(--background-dark);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-cwin-fishing-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
}

.page-blog-cwin-fishing-game-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.page-blog-cwin-fishing-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-cwin-fishing-game-strategy__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-main-color);
}

.page-blog-cwin-fishing-game-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-cwin-fishing-game-strategy__description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-cwin-fishing-game-strategy__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
  color: var(--text-main-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-cwin-fishing-game-strategy__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-cwin-fishing-game-strategy__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-blog-cwin-fishing-game-strategy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.page-blog-cwin-fishing-game-strategy__article {
  color: var(--text-main-color);
}

.page-blog-cwin-fishing-game-strategy__section-heading {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 10px;
  font-weight: bold;
}

.page-blog-cwin-fishing-game-strategy__sub-heading {
  font-size: 1.5em;
  color: var(--text-main-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-cwin-fishing-game-strategy__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-blog-cwin-fishing-game-strategy__image-card {
  margin: 30px 0;
  text-align: center;
  background-color: var(--background-dark);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-cwin-fishing-game-strategy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-cwin-fishing-game-strategy__image-caption {
  font-size: 0.9em;
  color: var(--text-secondary-color);
  margin-top: 10px;
}

.page-blog-cwin-fishing-game-strategy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-blog-cwin-fishing-game-strategy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-cwin-fishing-game-strategy__list-item strong {
  color: var(--text-main-color);
}

.page-blog-cwin-fishing-game-strategy__card {
  background-color: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-blog-cwin-fishing-game-strategy__card:hover {
  transform: translateY(-5px);
}

.page-blog-cwin-fishing-game-strategy__card-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-blog-cwin-fishing-game-strategy__card-text {
  font-size: 1em;
  color: var(--text-secondary-color);
}

.page-blog-cwin-fishing-game-strategy__faq-container {
  margin-top: 30px;
}

.page-blog-cwin-fishing-game-strategy__faq-item {
  background-color: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-cwin-fishing-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--deep-green);
  color: var(--text-main-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-cwin-fishing-game-strategy__faq-question::-webkit-details-marker {
    display: none; /* For details summary */
}

.page-blog-cwin-fishing-game-strategy__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-cwin-fishing-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-cwin-fishing-game-strategy__faq-item[open] .page-blog-cwin-fishing-game-strategy__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' or '−' */
}

.page-blog-cwin-fishing-game-strategy__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--text-secondary-color);
  border-top: 1px solid var(--divider-color);
}

.page-blog-cwin-fishing-game-strategy__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--divider-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-cwin-fishing-game-strategy {
    font-size: 15px;
  }

  .page-blog-cwin-fishing-game-strategy__hero-section {
    padding: 30px 15px;
  }

  .page-blog-cwin-fishing-game-strategy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-cwin-fishing-game-strategy__description {
    font-size: 1em;
  }

  .page-blog-cwin-fishing-game-strategy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-cwin-fishing-game-strategy__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-blog-cwin-fishing-game-strategy__content-area {
    padding: 20px 15px;
    margin: 0 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-cwin-fishing-game-strategy__section-heading {
    font-size: 1.6em;
    margin-top: 30px;
  }

  .page-blog-cwin-fishing-game-strategy__sub-heading {
    font-size: 1.3em;
    margin-top: 20px;
  }

  .page-blog-cwin-fishing-game-strategy__text-block,
  .page-blog-cwin-fishing-game-strategy__list-item,
  .page-blog-cwin-fishing-game-strategy__card-text {
    font-size: 0.95em;
  }

  /* Image responsive rules */
  .page-blog-cwin-fishing-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  
  .page-blog-cwin-fishing-game-strategy__hero-image-wrapper,
  .page-blog-cwin-fishing-game-strategy__image-card,
  .page-blog-cwin-fishing-game-strategy__card,
  .page-blog-cwin-fishing-game-strategy__faq-item,
  .page-blog-cwin-fishing-game-strategy__faq-container,
  .page-blog-cwin-fishing-game-strategy__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden !important;
  }

  .page-blog-cwin-fishing-game-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-cwin-fishing-game-strategy__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-blog-cwin-fishing-game-strategy__cta-bottom .page-blog-cwin-fishing-game-strategy__cta-button {
    width: calc(100% - 20px) !important; /* Adjust for padding */
    margin: 0 10px;
  }
}