/* style/fishing-games-strategy.css */
.page-fishing-games-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #FFFFFF);
}

.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-strategy__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7);
}

.page-fishing-games-strategy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

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

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

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

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

.page-fishing-games-strategy__section {
  padding: 60px 20px;
}

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

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-fishing-games-strategy__section-title--light {
  color: #ffffff;
}

.page-fishing-games-strategy__section-title--light::after {
  background-color: #ffffff;
}

.page-fishing-games-strategy__subsection-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games-strategy__subsection-title--light {
  color: #ffffff;
}

.page-fishing-games-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-fishing-games-strategy__text-block--light {
  color: #f0f0f0;
}

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

.page-fishing-games-strategy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-fishing-games-strategy__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-strategy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

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

.page-fishing-games-strategy__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-fishing-games-strategy__btn-primary:hover {
  background-color: #d46c00;
  border-color: #d46c00;
}

.page-fishing-games-strategy__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-fishing-games-strategy__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-fishing-games-strategy__cta-section {
  text-align: center;
  padding: 80px 20px;
}

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

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

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

.page-fishing-games-strategy__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-strategy__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-fishing-games-strategy__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ Styles */
.page-fishing-games-strategy__faq-list {
  margin-top: 40px;
}

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

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

.page-fishing-games-strategy__faq-question:hover {
  background-color: #f0f0f0;
}

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

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

.page-fishing-games-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

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

.page-fishing-games-strategy__faq-answer p {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

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

  .page-fishing-games-strategy__subsection-title {
    font-size: 1.6em;
  }
}

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

  .page-fishing-games-strategy__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-fishing-games-strategy__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-strategy__hero-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: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-strategy__section {
    padding: 40px 15px;
  }

  .page-fishing-games-strategy__container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-fishing-games-strategy__subsection-title {
    font-size: 1.4em;
  }

  .page-fishing-games-strategy__text-block,
  .page-fishing-games-strategy__list-item,
  .page-fishing-games-strategy__faq-answer p {
    font-size: 1em;
  }

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

  .page-fishing-games-strategy__video-wrapper {
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-strategy__video-link {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .page-fishing-games-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-fishing-games-strategy__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
    padding: 10px 20px;
  }

  .page-fishing-games-strategy__cta-section {
    padding: 60px 15px;
  }

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

@media (max-width: 480px) {
  .page-fishing-games-strategy__hero-title {
    font-size: 1.8em;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 1.6em;
  }

  .page-fishing-games-strategy__subsection-title {
    font-size: 1.2em;
  }
}