/* style/fishing-games-strategy.css */
.page-fishing-games-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #121212, so text should be light */
  background-color: #121212; /* Ensure page background matches body if not inherited */
}

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

.page-fishing-games-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  overflow: hidden;
}

.page-fishing-games-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Make background image subtle */
}

.page-fishing-games-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-fishing-games-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

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

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

.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: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
}

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

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

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

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

.page-fishing-games-strategy__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games-strategy__content-area {
  background-color: #1a1a1a; /* Slightly lighter dark for content sections */
  color: #ffffff;
}

.page-fishing-games-strategy__dark-section {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-fishing-games-strategy__subtitle {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-fishing-games-strategy__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: left;
}

.page-fishing-games-strategy__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #017439;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.05em;
}

.page-fishing-games-strategy__list-item strong {
  color: #FFFF00; /* Highlight important points */
}

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

.page-fishing-games-strategy__text-highlight {
  color: #FFFF00;
  font-weight: bold;
}

/* Video Section */
.page-fishing-games-strategy__video-section {
  padding: 60px 0;
  background-color: #121212;
  color: #ffffff;
  text-align: center;
}

.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 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-strategy__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
  text-decoration: none;
  color: #ffffff;
}

.page-fishing-games-strategy__video-overlay:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.page-fishing-games-strategy__video-play-button {
  font-size: 4em;
  color: #ffffff;
  background-color: rgba(1, 116, 57, 0.8); /* Brand color with transparency */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.page-fishing-games-strategy__video-overlay:hover .page-fishing-games-strategy__video-play-button {
  transform: scale(1.1);
}

/* FAQ Section */
.page-fishing-games-strategy__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-fishing-games-strategy__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #017439;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games-strategy__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em; /* Ensure consistent font size */
}

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

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-toggle {
  transform: rotate(45deg); /* Change to X or - */
}

.page-fishing-games-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #1a1a1a;
  color: #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.page-fishing-games-strategy__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.5;
  color: #f0f0f0;
}

/* CTA Section */
.page-fishing-games-strategy__cta-section {
  padding: 80px 0;
  background-color: #017439;
  color: #ffffff;
}

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

  .page-fishing-games-strategy__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
  }

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

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

  .page-fishing-games-strategy__hero-cta-buttons,
  .page-fishing-games-strategy__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;
  }

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

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

  .page-fishing-games-strategy__subtitle {
    font-size: 1.5em;
  }

  .page-fishing-games-strategy__paragraph,
  .page-fishing-games-strategy__list-item,
  .page-fishing-games-strategy__faq-question h3,
  .page-fishing-games-strategy__faq-answer p {
    font-size: 1em;
  }

  /* Image and Video Responsive */
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-fishing-games-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 30px auto;
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games-strategy__video-section,
  .page-fishing-games-strategy__content-area,
  .page-fishing-games-strategy__dark-section,
  .page-fishing-games-strategy__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-fishing-games-strategy__faq-item,
  .page-fishing-games-strategy__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-fishing-games-strategy__faq-item {
    padding: 0;
  }
  .page-fishing-games-strategy__faq-question {
    padding: 15px;
  }
  .page-fishing-games-strategy__faq-answer {
    padding: 0 15px;
  }
  .page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
    padding: 15px !important;
  }
}