/* style/fishing-games-strategy.css */
.page-fishing-games-strategy {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-fishing-games-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

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

.page-fishing-games-strategy__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-fishing-games-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games-strategy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-fishing-games-strategy__btn-secondary {
  background: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games-strategy__introduction-section,
.page-fishing-games-strategy__basic-tips-section,
.page-fishing-games-strategy__advanced-strategies-section,
.page-fishing-games-strategy__special-features-section,
.page-fishing-games-strategy__faq-section,
.page-fishing-games-strategy__cta-bottom-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-fishing-games-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games-strategy p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games-strategy p a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
}

.page-fishing-games-strategy p a:hover {
  text-decoration: underline;
}

.page-fishing-games-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  min-width: 200px; /* Ensure min size */
}

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

.page-fishing-games-strategy__tip-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games-strategy__tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__card-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-fishing-games-strategy__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-strategy__feature-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.5;
}

.page-fishing-games-strategy__feature-list li strong {
  color: #57E38D; /* Glow */
  font-weight: 700;
}

.page-fishing-games-strategy__feature-list li a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
  font-weight: 600;
}

.page-fishing-games-strategy__feature-list li a:hover {
  text-decoration: underline;
}

.page-fishing-games-strategy__faq-list {
  margin-top: 40px;
}

.page-fishing-games-strategy__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-fishing-games-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games-strategy__faq-item summary:hover {
  background-color: #13994A; /* Slightly lighter green */
}

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #F2C14E; /* Gold */
  transition: transform 0.3s ease;
}

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

.page-fishing-games-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-fishing-games-strategy__faq-answer p {
  margin-bottom: 0;
}

.page-fishing-games-strategy__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
}

.page-fishing-games-strategy__faq-answer a:hover {
  text-decoration: underline;
}

.page-fishing-games-strategy__cta-bottom-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games-strategy__cta-bottom-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__hero-image-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-strategy__container {
    padding: 0 15px;
  }

  .page-fishing-games-strategy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-fishing-games-strategy__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-strategy__introduction-section,
  .page-fishing-games-strategy__basic-tips-section,
  .page-fishing-games-strategy__advanced-strategies-section,
  .page-fishing-games-strategy__special-features-section,
  .page-fishing-games-strategy__faq-section,
  .page-fishing-games-strategy__cta-bottom-section {
    padding: 40px 0;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-fishing-games-strategy__sub-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy__content-image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games-strategy__tip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-fishing-games-strategy__tip-card {
    padding: 20px;
  }

  .page-fishing-games-strategy__card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .page-fishing-games-strategy__feature-list li {
    padding: 15px;
    margin-bottom: 10px;
    font-size: 0.95rem;
  }

  .page-fishing-games-strategy__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-fishing-games-strategy__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-fishing-games-strategy__cta-bottom-section {
    padding: 60px 15px;
  }
  
  /* Ensure all image containers are responsive */
  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right might be handled by container above */
    overflow: hidden !important;
  }
}