/* style/fishing-games-tips-strategy.css */
/* Custom Colors */
:root {
  --page-fishing-games-tips-strategy__primary-color: #11A84E;
  --page-fishing-games-tips-strategy__secondary-color: #22C768;
  --page-fishing-games-tips-strategy__button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-fishing-games-tips-strategy__card-bg: #11271B;
  --page-fishing-games-tips-strategy__background: #08160F;
  --page-fishing-games-tips-strategy__text-main: #F2FFF6;
  --page-fishing-games-tips-strategy__text-secondary: #A7D9B8;
  --page-fishing-games-tips-strategy__border-color: #2E7A4E;
  --page-fishing-games-tips-strategy__glow-color: #57E38D;
  --page-fishing-games-tips-strategy__gold-color: #F2C14E;
  --page-fishing-games-tips-strategy__divider-color: #1E3A2A;
  --page-fishing-games-tips-strategy__deep-green: #0A4B2C;
}

.page-fishing-games-tips-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-fishing-games-tips-strategy__text-main); /* Default text color for dark background */
  background-color: var(--page-fishing-games-tips-strategy__background);
}

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

.page-fishing-games-tips-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
  overflow: hidden;
}

.page-fishing-games-tips-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4); /* Slightly darken image for text readability */
}

.page-fishing-games-tips-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Ensure text readability */
  border-radius: 10px;
}

.page-fishing-games-tips-strategy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--page-fishing-games-tips-strategy__text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-tips-strategy__hero-description {
  font-size: 1.2rem;
  color: var(--page-fishing-games-tips-strategy__text-secondary);
  margin-bottom: 30px;
}

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

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

.page-fishing-games-tips-strategy__btn-primary {
  background: var(--page-fishing-games-tips-strategy__button-gradient);
  color: var(--page-fishing-games-tips-strategy__text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-fishing-games-tips-strategy__btn-secondary {
  background-color: transparent;
  color: var(--page-fishing-games-tips-strategy__text-main);
  border: 2px solid var(--page-fishing-games-tips-strategy__border-color);
}

.page-fishing-games-tips-strategy__btn-secondary:hover {
  background-color: var(--page-fishing-games-tips-strategy__border-color);
  color: var(--page-fishing-games-tips-strategy__text-main);
  transform: translateY(-2px);
}

.page-fishing-games-tips-strategy__introduction-section,
.page-fishing-games-tips-strategy__tips-section,
.page-fishing-games-tips-strategy__mistakes-section,
.page-fishing-games-tips-strategy__faq-section {
  padding: 60px 0;
  background-color: var(--page-fishing-games-tips-strategy__background);
  color: var(--page-fishing-games-tips-strategy__text-main);
}

.page-fishing-games-tips-strategy__advanced-section,
.page-fishing-games-tips-strategy__conclusion-section,
.page-fishing-games-tips-strategy__exclusive-features-section {
  padding: 60px 0;
  background-color: var(--page-fishing-games-tips-strategy__card-bg);
  color: var(--page-fishing-games-tips-strategy__text-main);
}

.page-fishing-games-tips-strategy__section-title {
  font-size: 2.5rem;
  color: var(--page-fishing-games-tips-strategy__gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips-strategy__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--page-fishing-games-tips-strategy__text-secondary);
  text-align: justify;
}

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

.page-fishing-games-tips-strategy__card {
  background-color: var(--page-fishing-games-tips-strategy__card-bg);
  border: 1px solid var(--page-fishing-games-tips-strategy__border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games-tips-strategy__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games-tips-strategy__card-title {
  font-size: 1.5rem;
  color: var(--page-fishing-games-tips-strategy__text-main);
  margin-bottom: 15px;
}

.page-fishing-games-tips-strategy__card-text {
  font-size: 1rem;
  color: var(--page-fishing-games-tips-strategy__text-secondary);
}

.page-fishing-games-tips-strategy__strategy-list,
.page-fishing-games-tips-strategy__mistakes-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-tips-strategy__strategy-list li,
.page-fishing-games-tips-strategy__mistakes-list li {
  background-color: var(--page-fishing-games-tips-strategy__deep-green);
  border-left: 5px solid var(--page-fishing-games-tips-strategy__gold-color);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips-strategy__strategy-list li h3,
.page-fishing-games-tips-strategy__mistakes-list li h3 {
  color: var(--page-fishing-games-tips-strategy__gold-color);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-fishing-games-tips-strategy__strategy-list li p,
.page-fishing-games-tips-strategy__mistakes-list li p {
  color: var(--page-fishing-games-tips-strategy__text-secondary);
  font-size: 1rem;
}

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

.page-fishing-games-tips-strategy__feature-item {
  background-color: var(--page-fishing-games-tips-strategy__deep-green);
  border: 1px solid var(--page-fishing-games-tips-strategy__border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips-strategy__feature-icon {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games-tips-strategy__feature-title {
  font-size: 1.4rem;
  color: var(--page-fishing-games-tips-strategy__text-main);
  margin-bottom: 10px;
}

.page-fishing-games-tips-strategy__feature-text {
  font-size: 1rem;
  color: var(--page-fishing-games-tips-strategy__text-secondary);
}

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

.page-fishing-games-tips-strategy__faq-item {
  background-color: var(--page-fishing-games-tips-strategy__deep-green);
  border: 1px solid var(--page-fishing-games-tips-strategy__border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-tips-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  color: var(--page-fishing-games-tips-strategy__text-main);
  cursor: pointer;
  background-color: var(--page-fishing-games-tips-strategy__deep-green);
  border-bottom: 1px solid var(--page-fishing-games-tips-strategy__divider-color);
  transition: background-color 0.3s ease;
}

.page-fishing-games-tips-strategy__faq-question:hover {
  background-color: var(--page-fishing-games-tips-strategy__deep-green);
}

.page-fishing-games-tips-strategy__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-fishing-games-tips-strategy__faq-question::marker {
  display: none; /* Hide default marker for Firefox */
}

.page-fishing-games-tips-strategy__faq-qtext {
  font-weight: bold;
}

.page-fishing-games-tips-strategy__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--page-fishing-games-tips-strategy__gold-color);
  margin-left: 15px;
}

.page-fishing-games-tips-strategy__faq-item[open] .page-fishing-games-tips-strategy__faq-question {
  background-color: var(--page-fishing-games-tips-strategy__deep-green);
}

.page-fishing-games-tips-strategy__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: var(--page-fishing-games-tips-strategy__text-secondary);
  background-color: var(--page-fishing-games-tips-strategy__deep-green);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-tips-strategy__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-fishing-games-tips-strategy__hero-description {
    font-size: 1.1rem;
  }
  .page-fishing-games-tips-strategy__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips-strategy__hero-content {
    padding: 30px 15px;
  }
  .page-fishing-games-tips-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .page-fishing-games-tips-strategy__btn-primary,
  .page-fishing-games-tips-strategy__btn-secondary {
    width: 90%;
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-fishing-games-tips-strategy__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games-tips-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-tips-strategy__section,
  .page-fishing-games-tips-strategy__card,
  .page-fishing-games-tips-strategy__container,
  .page-fishing-games-tips-strategy__hero-section,
  .page-fishing-games-tips-strategy__introduction-section,
  .page-fishing-games-tips-strategy__tips-section,
  .page-fishing-games-tips-strategy__advanced-section,
  .page-fishing-games-tips-strategy__mistakes-section,
  .page-fishing-games-tips-strategy__exclusive-features-section,
  .page-fishing-games-tips-strategy__faq-section,
  .page-fishing-games-tips-strategy__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

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

  .page-fishing-games-tips-strategy__section-title {
    font-size: 1.8rem;
  }

  .page-fishing-games-tips-strategy__card-grid,
  .page-fishing-games-tips-strategy__feature-grid {
    grid-template-columns: 1fr;
  }

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

  .page-fishing-games-tips-strategy__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}

/* Ensure images don't use filter to change color */
.page-fishing-games-tips-strategy img {
  filter: none; /* Explicitly disable any filters */
}

/* Content area images minimum size check for desktop */
.page-fishing-games-tips-strategy__content-area img,
.page-fishing-games-tips-strategy__card img,
.page-fishing-games-tips-strategy__feature-item img {
  min-width: 200px;
  min-height: 200px;
}