/* style/blog-fishing-game-strategy.css */

/* Custom Colors */
:root {
  --win55-run-main-color: #11A84E;
  --win55-run-accent-color: #22C768;
  --win55-run-card-bg: #11271B;
  --win55-run-background: #08160F;
  --win55-run-text-main: #F2FFF6;
  --win55-run-text-secondary: #A7D9B8;
  --win55-run-border-color: #2E7A4E;
  --win55-run-glow-color: #57E38D;
  --win55-run-gold-color: #F2C14E;
  --win55-run-divider-color: #1E3A2A;
  --win55-run-deep-green: #0A4B2C;
  --win55-run-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-fishing-game-strategy {
  background-color: var(--win55-run-background);
  color: var(--win55-run-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-fishing-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-fishing-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-blog-fishing-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-fishing-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-blog-fishing-game-strategy__main-title {
  color: var(--win55-run-text-main);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-fishing-game-strategy__intro-text {
  color: var(--win55-run-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-fishing-game-strategy__btn-primary,
.page-blog-fishing-game-strategy__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-fishing-game-strategy__btn-primary {
  background: var(--win55-run-button-gradient);
  color: var(--win55-run-text-main);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-game-strategy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-fishing-game-strategy__btn-secondary {
  background: transparent;
  color: var(--win55-run-main-color);
  border: 2px solid var(--win55-run-main-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-blog-fishing-game-strategy__btn-secondary:hover {
  background: var(--win55-run-main-color);
  color: var(--win55-run-text-main);
  transform: translateY(-2px);
}

.page-blog-fishing-game-strategy__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-fishing-game-strategy__section-title {
  color: var(--win55-run-gold-color);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-game-strategy__sub-title {
  color: var(--win55-run-text-main);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-fishing-game-strategy__paragraph {
  color: var(--win55-run-text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-fishing-game-strategy__highlight {
  color: var(--win55-run-gold-color);
  font-weight: 700;
}

.page-blog-fishing-game-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  object-fit: cover; /* Ensure image covers its area */
}

.page-blog-fishing-game-strategy__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-fishing-game-strategy__card {
  background-color: var(--win55-run-card-bg);
  border: 1px solid var(--win55-run-border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--win55-run-text-secondary);
}

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

.page-blog-fishing-game-strategy__card-title {
  color: var(--win55-run-gold-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-blog-fishing-game-strategy__card-text {
  font-size: 1rem;
  line-height: 1.7;
}

.page-blog-fishing-game-strategy__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-fishing-game-strategy__list-item {
  background-color: var(--win55-run-card-bg);
  border: 1px solid var(--win55-run-divider-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-fishing-game-strategy__list-title {
  color: var(--win55-run-gold-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-blog-fishing-game-strategy__list-text {
  color: var(--win55-run-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

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

.page-blog-fishing-game-strategy__faq-item {
  background-color: var(--win55-run-card-bg);
  border: 1px solid var(--win55-run-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-fishing-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--win55-run-text-main);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-blog-fishing-game-strategy__faq-question:hover {
  background-color: var(--win55-run-deep-green);
}

.page-blog-fishing-game-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--win55-run-gold-color);
}

.page-blog-fishing-game-strategy__faq-item[open] .page-blog-fishing-game-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-fishing-game-strategy__faq-answer {
  padding: 0 25px 20px;
  color: var(--win55-run-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Ensure images don't have filter for colors */
.page-blog-fishing-game-strategy img:not(.page-blog-fishing-game-strategy__hero-image) {
  filter: none; /* Ensure no color filters */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-fishing-game-strategy__hero-content {
    padding: 15px;
  }

  .page-blog-fishing-game-strategy__main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .page-blog-fishing-game-strategy__intro-text {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  }

  .page-blog-fishing-game-strategy__section {
    padding: 40px 15px;
  }

  .page-blog-fishing-game-strategy__section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  }

  .page-blog-fishing-game-strategy__sub-title {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-game-strategy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-blog-fishing-game-strategy__intro-text {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  .page-blog-fishing-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-fishing-game-strategy__btn-primary,
  .page-blog-fishing-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-fishing-game-strategy__section,
  .page-blog-fishing-game-strategy__card,
  .page-blog-fishing-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-fishing-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog-fishing-game-strategy__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-fishing-game-strategy__card {
    padding: 25px;
  }

  .page-blog-fishing-game-strategy__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .page-blog-fishing-game-strategy__sub-title {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .page-blog-fishing-game-strategy__paragraph,
  .page-blog-fishing-game-strategy__card-text,
  .page-blog-fishing-game-strategy__list-text,
  .page-blog-fishing-game-strategy__faq-answer p {
    font-size: 0.95rem;
  }

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