/* style/fishing-games-strategy-guide.css */
.page-fishing-games-strategy-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared, assuming dark */
}

.page-fishing-games-strategy-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #4A00B7, #7B00D9);
  color: #ffffff;
  overflow: hidden;
}

.page-fishing-games-strategy-guide__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-fishing-games-strategy-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games-strategy-guide__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-fishing-games-strategy-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-fishing-games-strategy-guide__content-section {
  padding: 60px 20px;
  text-align: left;
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

.page-fishing-games-strategy-guide__dark-bg {
  background-color: #1a0033;
  color: #f0f0f0;
}

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

.page-fishing-games-strategy-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #4A00B7;
  padding-bottom: 15px;
}

.page-fishing-games-strategy-guide__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-fishing-games-strategy-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-fishing-games-strategy-guide__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games-strategy-guide__inline-link:hover {
  text-decoration: underline;
}

.page-fishing-games-strategy-guide__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-fishing-games-strategy-guide__image-gallery {
  text-align: center;
  margin: 40px 0;
}

.page-fishing-games-strategy-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-fishing-games-strategy-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-fishing-games-strategy-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games-strategy-guide__btn-primary,
.page-fishing-games-strategy-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-strategy-guide__btn-primary {
  background-color: #FFD700;
  color: #4A00B7;
}

.page-fishing-games-strategy-guide__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-fishing-games-strategy-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-fishing-games-strategy-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #4A00B7;
  transform: translateY(-3px);
}

.page-fishing-games-strategy-guide__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-fishing-games-strategy-guide__video-section {
  background-color: #1a0033;
  padding: 60px 20px;
  text-align: center;
  color: #f0f0f0;
}

.page-fishing-games-strategy-guide__video-wrapper {
  display: block;
  margin: 40px auto;
  max-width: 800px;
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy-guide__video {
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games-strategy-guide__video-cta {
  margin-top: 30px;
}

.page-fishing-games-strategy-guide__faq-list {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-strategy-guide__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.page-fishing-games-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  padding: 0 15px;
}

.page-fishing-games-strategy-guide__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1em;
}

.page-fishing-games-strategy-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games-strategy-guide__faq-item.active .page-fishing-games-strategy-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-strategy-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-fishing-games-strategy-guide__faq-item.active .page-fishing-games-strategy-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px;
}

.page-fishing-games-strategy-guide__faq-answer p {
  margin: 0;
  font-size: 1em;
}

.page-fishing-games-strategy-guide__cta-banner {
  position: relative;
  margin: 60px auto;
  max-width: 1200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
}

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

.page-fishing-games-strategy-guide__cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(74, 0, 183, 0.7);
  padding: 30px;
  box-sizing: border-box;
}

.page-fishing-games-strategy-guide__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games-strategy-guide__cta-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 80%;
}

.page-fishing-games-strategy-guide__contact-us {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-strategy-guide__hero-title {
    font-size: 3em;
  }
  .page-fishing-games-strategy-guide__section-title {
    font-size: 2.2em;
  }
  .page-fishing-games-strategy-guide__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy-guide__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-fishing-games-strategy-guide__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-strategy-guide__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-strategy-guide__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-strategy-guide__btn-primary,
  .page-fishing-games-strategy-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games-strategy-guide__content-section,
  .page-fishing-games-strategy-guide__video-section {
    padding: 40px 15px;
  }
  .page-fishing-games-strategy-guide__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-strategy-guide__sub-title {
    font-size: 1.5em;
  }
  .page-fishing-games-strategy-guide__text-block,
  .page-fishing-games-strategy-guide__list-item,
  .page-fishing-games-strategy-guide__faq-question,
  .page-fishing-games-strategy-guide__faq-answer p {
    font-size: 1em;
  }
  .page-fishing-games-strategy-guide__content-image,
  .page-fishing-games-strategy-guide__cta-image,
  .page-fishing-games-strategy-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-fishing-games-strategy-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    margin: 40px auto;
    overflow: hidden !important;
  }
  .page-fishing-games-strategy-guide__cta-overlay {
    padding: 20px;
  }
  .page-fishing-games-strategy-guide__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games-strategy-guide__cta-text {
    font-size: 1em;
    max-width: 90%;
  }
  .page-fishing-games-strategy-guide__faq-question {
    padding: 0 10px;
    font-size: 1.1em;
  }
  .page-fishing-games-strategy-guide__faq-answer {
    padding: 0 10px;
  }
  .page-fishing-games-strategy-guide__faq-item.active .page-fishing-games-strategy-guide__faq-answer {
    padding: 10px !important;
  }
  .page-fishing-games-strategy-guide__container {
    padding: 0;
  }
  .page-fishing-games-strategy-guide__cta-banner {
    margin: 40px auto;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-strategy-guide__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-strategy-guide__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-strategy-guide__sub-title {
    font-size: 1.3em;
  }
  .page-fishing-games-strategy-guide__btn-large {
    font-size: 1em;
  }
  .page-fishing-games-strategy-guide__cta-title {
    font-size: 1.5em;
  }
  .page-fishing-games-strategy-guide__cta-text {
    font-size: 0.9em;
  }
}