/* style/fishing-games-tips.css */
.page-fishing-games-tips {
  font-family: 'Arial', sans-serif;
  background-color: var(--background-color, #08160F); /* Dark background */
  color: var(--text-main, #F2FFF6); /* Light text */
  line-height: 1.6;
}

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

.page-fishing-games-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom */
  overflow: hidden;
  color: #F2FFF6;
}

.page-fishing-games-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-fishing-games-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games-tips__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -150px; /* Pull content up over image slightly for visual flow, but not overlapping text on image */
  background-color: var(--card-bg, #11271B); /* Darker background for text box */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games-tips__lead-text {
  font-size: 1.15rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

.page-fishing-games-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
}

.page-fishing-games-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Light text on dark button */
  border: 2px solid transparent;
}

.page-fishing-games-tips__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-tips__btn-secondary {
  background: transparent;
  color: var(--text-main, #F2FFF6); /* Light text on dark background */
  border: 2px solid var(--border, #2E7A4E);
}

.page-fishing-games-tips__btn-secondary:hover {
  background-color: var(--deep-green, #0A4B2C);
  border-color: var(--glow, #57E38D);
}

.page-fishing-games-tips__introduction-section,
.page-fishing-games-tips__tips-section,
.page-fishing-games-tips__mistakes-section,
.page-fishing-games-tips__faq-section,
.page-fishing-games-tips__cta-section {
  padding: 60px 0;
}

.page-fishing-games-tips__dark-section {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

.page-fishing-games-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold, #F2C14E);
}

.page-fishing-games-tips__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-secondary, #A7D9B8);
}

.page-fishing-games-tips__text-block--highlight {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-main, #F2FFF6);
  margin-top: 40px;
}

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

.page-fishing-games-tips__tip-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main, #F2FFF6);
}

.page-fishing-games-tips__tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games-tips__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
}

.page-fishing-games-tips__card-text {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  text-align: justify;
}

.page-fishing-games-tips__mistakes-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-fishing-games-tips__list-item {
  background-color: var(--deep-green, #0A4B2C);
  border-left: 5px solid var(--glow, #57E38D);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-main, #F2FFF6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-tips__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-fishing-games-tips__faq-item[open] .page-fishing-games-tips__faq-question {
  border-bottom: 1px solid var(--glow, #57E38D);
}

.page-fishing-games-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games-tips__faq-question::marker {
  display: none;
}

.page-fishing-games-tips__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-fishing-games-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-fishing-games-tips__faq-answer a {
  color: var(--glow, #57E38D);
  text-decoration: none;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games-tips__hero-content {
    margin-top: -100px;
    padding: 30px;
  }
  .page-fishing-games-tips__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-fishing-games-tips__lead-text {
    font-size: 1.1rem;
  }
  .page-fishing-games-tips__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  }
  .page-fishing-games-tips__tip-card {
    padding: 25px;
  }
  .page-fishing-games-tips__card-title {
    font-size: 1.3rem;
  }
  .page-fishing-games-tips__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-fishing-games-tips__hero-content {
    margin-top: -80px;
    padding: 20px;
  }
  .page-fishing-games-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-fishing-games-tips__lead-text {
    font-size: 1rem;
  }
  .page-fishing-games-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary {
    width: 100% !important;
    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__introduction-section,
  .page-fishing-games-tips__tips-section,
  .page-fishing-games-tips__mistakes-section,
  .page-fishing-games-tips__faq-section,
  .page-fishing-games-tips__cta-section {
    padding: 40px 0;
  }
  .page-fishing-games-tips__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-tips__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .page-fishing-games-tips__text-block {
    font-size: 0.95rem;
  }
  .page-fishing-games-tips__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-tips__card-image {
    height: 180px;
  }
  .page-fishing-games-tips__card-title {
    font-size: 1.2rem;
  }
  .page-fishing-games-tips__list-item {
    font-size: 1rem;
  }
  .page-fishing-games-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-fishing-games-tips__faq-answer {
    padding: 15px 20px;
  }
  /* Mobile image and video responsive */
  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-tips video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-tips__video-section,
  .page-fishing-games-tips__video-container,
  .page-fishing-games-tips__video-wrapper,
  .page-fishing-games-tips__section,
  .page-fishing-games-tips__card,
  .page-fishing-games-tips__container,
  .page-fishing-games-tips__cta-buttons,
  .page-fishing-games-tips__button-group,
  .page-fishing-games-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fishing-games-tips__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-tips__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-fishing-games-tips__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-fishing-games-tips__lead-text {
    font-size: 0.9rem;
  }
  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .page-fishing-games-tips__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-fishing-games-tips__tip-card {
    padding: 20px;
  }
  .page-fishing-games-tips__card-title {
    font-size: 1.1rem;
  }
  .page-fishing-games-tips__card-text {
    font-size: 0.9rem;
  }
  .page-fishing-games-tips__list-item {
    font-size: 0.95rem;
  }
  .page-fishing-games-tips__faq-question {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
  .page-fishing-games-tips__faq-answer {
    padding: 12px 15px;
  }
}