.page-fishing-games-strategy-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Body background is white */
}

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

.page-fishing-games-strategy-guide__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Minimum height for hero */
  overflow: hidden; /* For image positioning */
  color: #FFFFFF; /* White text on dark background */
  background-color: #017439; /* Brand primary color */
}

.page-fishing-games-strategy-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-fishing-games-strategy-guide__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-fishing-games-strategy-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-fishing-games-strategy-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #FFFFFF;
}

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

.page-fishing-games-strategy-guide__btn-primary,
.page-fishing-games-strategy-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-strategy-guide__btn-primary {
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register button font color */
  border: 2px solid #C30808;
}

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

.page-fishing-games-strategy-guide__btn-secondary {
  background-color: #017439; /* Login button color */
  color: #FFFFFF; /* Login button font color */
  border: 2px solid #017439;
}

.page-fishing-games-strategy-guide__btn-secondary:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
}

.page-fishing-games-strategy-guide__content-area {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-fishing-games-strategy-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #017439;
}

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

.page-fishing-games-strategy-guide__content-area p {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.page-fishing-games-strategy-guide__content-area a {
  color: #017439;
  text-decoration: underline;
}

.page-fishing-games-strategy-guide__content-area a:hover {
  color: #005a2e;
}

.page-fishing-games-strategy-guide__feature-list,
.page-fishing-games-strategy-guide__tip-list,
.page-fishing-games-strategy-guide__list-item-sub {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

.page-fishing-games-strategy-guide__list-item strong {
  color: #017439;
}

.page-fishing-games-strategy-guide__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games-strategy-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #333333;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-fishing-games-strategy-guide__faq-question:hover {
  background-color: #e0e0e0;
}

.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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

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

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

.page-fishing-games-strategy-guide__final-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #017439;
  color: #FFFFFF;
  border-radius: 8px;
}

.page-fishing-games-strategy-guide__final-cta p {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-fishing-games-strategy-guide__sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-fishing-games-strategy-guide__btn-register-sticky,
.page-fishing-games-strategy-guide__btn-login-sticky {
  display: block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-fishing-games-strategy-guide__btn-register-sticky {
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register button font color */
}

.page-fishing-games-strategy-guide__btn-register-sticky:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-fishing-games-strategy-guide__btn-login-sticky {
  background-color: #017439; /* Login button color */
  color: #FFFFFF; /* Login button font color */
}

.page-fishing-games-strategy-guide__btn-login-sticky:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-strategy-guide__main-title {
    font-size: 2.8em;
  }

  .page-fishing-games-strategy-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy-guide__hero-section {
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games-strategy-guide__main-title {
    font-size: 2.2em;
  }

  .page-fishing-games-strategy-guide__intro-text {
    font-size: 1em;
  }

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

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

  .page-fishing-games-strategy-guide__content-area {
    padding: 40px 0;
  }

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

  .page-fishing-games-strategy-guide__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games-strategy-guide__sub-section-title {
    font-size: 1.5em;
  }

  .page-fishing-games-strategy-guide__content-area p,
  .page-fishing-games-strategy-guide__list-item {
    font-size: 0.95em;
  }

  /* Images responsive */
  .page-fishing-games-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images/videos/buttons */
  .page-fishing-games-strategy-guide__hero-section,
  .page-fishing-games-strategy-guide__content-area,
  .page-fishing-games-strategy-guide__container,
  .page-fishing-games-strategy-guide__cta-buttons,
  .page-fishing-games-strategy-guide__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-strategy-guide__sticky-cta {
    bottom: 15px;
    right: 15px;
  }

  .page-fishing-games-strategy-guide__btn-register-sticky,
  .page-fishing-games-strategy-guide__btn-login-sticky {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}