.page-resources-fishing-game-tips {
  color: #ffffff; /* Main text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #1a1a2e; /* Inherited from body or default dark */
}

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

.page-resources-fishing-game-tips__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  text-align: center;
  background: #017439; /* Brand primary color for hero */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

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

.page-resources-fishing-game-tips__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-fishing-game-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-fishing-game-tips__btn-primary,
.page-resources-fishing-game-tips__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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-fishing-game-tips__btn-primary {
  background: #C30808; /* Custom color for Register/Login */
  color: #000000; /* Adjusted for WCAG AA contrast with #C30808 */
  border: 2px solid #C30808;
}

.page-resources-fishing-game-tips__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-resources-fishing-game-tips__btn-secondary {
  background: #ffffff;
  color: #017439; /* Brand primary color for text */
  border: 2px solid #017439;
}

.page-resources-fishing-game-tips__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-resources-fishing-game-tips__content-section {
  padding: 60px 0;
  background-color: #1a1a2e; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-resources-fishing-game-tips__content-section:nth-of-type(odd) {
  background-color: #1a1a2e;
}

.page-resources-fishing-game-tips__content-section:nth-of-type(even) {
  background-color: #2a2a3e;
}

.page-resources-fishing-game-tips__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #017439; /* Brand primary color for titles */
}

.page-resources-fishing-game-tips__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 2px solid #017439;
  padding-bottom: 10px;
}

.page-resources-fishing-game-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-resources-fishing-game-tips__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-resources-fishing-game-tips__faq-section {
  padding: 60px 0;
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-resources-fishing-game-tips__faq-list {
  margin-top: 30px;
}

.page-resources-fishing-game-tips__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly lighter card background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  background-color: #017439; /* Primary color for question header */
  transition: background-color 0.3s ease;
}

.page-resources-fishing-game-tips__faq-question:hover {
  background-color: #005a2d;
}

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

.page-resources-fishing-game-tips__faq-item.active .page-resources-fishing-game-tips__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-resources-fishing-game-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #ffffff; /* Text color for answer */
}

.page-resources-fishing-game-tips__faq-item.active .page-resources-fishing-game-tips__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 20px;
}

.page-resources-fishing-game-tips__faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

/* CTA Banner */
.page-resources-fishing-game-tips__cta-banner {
  background: linear-gradient(90deg, #017439, #005a2d);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  margin-top: 40px;
}

.page-resources-fishing-game-tips__banner-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-fishing-game-tips__banner-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

  .page-resources-fishing-game-tips__section-title {
    font-size: 2em;
  }

  .page-resources-fishing-game-tips__banner-title {
    font-size: 2.2em;
  }
}

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

  .page-resources-fishing-game-tips__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 400px;
  }

  .page-resources-fishing-game-tips__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-fishing-game-tips__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-fishing-game-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-fishing-game-tips__btn-primary,
  .page-resources-fishing-game-tips__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-resources-fishing-game-tips__content-section {
    padding: 40px 0;
  }

  .page-resources-fishing-game-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-resources-fishing-game-tips__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-resources-fishing-game-tips__text-block {
    font-size: 1em;
  }

  .page-resources-fishing-game-tips__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-resources-fishing-game-tips__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-fishing-game-tips__faq-answer {
    padding: 0 15px;
  }

  .page-resources-fishing-game-tips__faq-item.active .page-resources-fishing-game-tips__faq-answer {
    padding: 15px;
  }

  .page-resources-fishing-game-tips__cta-banner {
    padding: 60px 20px;
  }

  .page-resources-fishing-game-tips__banner-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-resources-fishing-game-tips__banner-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-fishing-game-tips__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-fishing-game-tips__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure correct offset on mobile */
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-resources-fishing-game-tips video,
  .page-resources-fishing-game-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-fishing-game-tips__video-container,
  .page-resources-fishing-game-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}