/* style/fishing-games-guide.css */

/* Base styles for the page content */
.page-fishing-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #0a0a0a, so text should be light */
  background-color: #0a0a0a; /* Ensure consistency if shared.css doesn't apply to main directly */
}

.page-fishing-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: #017439; /* Use brand color for hero section background */
  color: #ffffff;
  text-align: center;
}

.page-fishing-games-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-fishing-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px; /* Display width */
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-guide__hero-content {
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
}

.page-fishing-games-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFFF00; /* Register and Login font color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-guide__description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-fishing-games-guide__cta-buttons--centered {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games-guide__btn-primary,
.page-fishing-games-guide__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
  text-align: center;
}

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

.page-fishing-games-guide__btn-primary:hover {
  background-color: #E01A1A;
  border-color: #E01A1A;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games-guide__btn-secondary:hover {
  background-color: #005a2d;
  border-color: #005a2d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0a0a0a; /* Dark background from body */
  color: #ffffff; /* Light text for dark background */
}

.page-fishing-games-guide__section-container {
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-guide__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #FFFF00; /* Register/Login font color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #017439;
  padding-bottom: 10px;
}

.page-fishing-games-guide__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-fishing-games-guide p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-fishing-games-guide strong {
  color: #FFFF00; /* Highlight important keywords */
}

.page-fishing-games-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  max-width: 800px; /* Display width */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-fishing-games-guide__faq-list {
  margin-top: 30px;
}

.page-fishing-games-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-guide__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-fishing-games-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games-guide__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games-guide__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #FFFF00; /* Register/Login font color */
}

.page-fishing-games-guide__faq-item[open] .page-fishing-games-guide__faq-toggle {
  color: #C30808; /* Register/Login color when open */
}

.page-fishing-games-guide__faq-answer {
  padding: 15px 25px 20px;
  color: #f0f0f0;
  font-size: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive styles */
@media (max-width: 768px) {
  .page-fishing-games-guide__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fishing-games-guide__description {
    font-size: 1rem;
  }

  .page-fishing-games-guide__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-fishing-games-guide__btn-primary,
  .page-fishing-games-guide__btn-secondary {
    width: 90% !important; /* Force full width on mobile */
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .page-fishing-games-guide__content-area {
    padding: 20px 15px;
  }
  
  .page-fishing-games-guide__section-container {
    padding: 15px;
  }

  .page-fishing-games-guide__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-fishing-games-guide__sub-title {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

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

  .page-fishing-games-guide__hero-image-wrapper,
  .page-fishing-games-guide__section,
  .page-fishing-games-guide__card,
  .page-fishing-games-guide__container,
  .page-fishing-games-guide__cta-buttons,
  .page-fishing-games-guide__button-group,
  .page-fishing-games-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-guide__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, small top padding for section */
  }

  .page-fishing-games-guide__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-fishing-games-guide__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }
}