/* style/fishing-game-tips.css */

/* Custom Colors from palette */
:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-card-bg: #11271B;
  --page-background-color: #08160F;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green: #0A4B2C;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-fishing-game-tips {
  background-color: var(--page-background-color); /* Matches body's dark background */
  color: var(--page-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-fishing-game-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above content */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: var(--page-deep-green); /* A slightly different dark green for the hero section */
}

.page-fishing-game-tips__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-game-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure min size */
}

.page-fishing-game-tips__hero-content {
  max-width: 900px;
  padding: 30px 20px 0;
  z-index: 1; /* Ensure content is above image if any overlap issues (though rules say no overlap) */
}

.page-fishing-game-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  color: var(--page-gold-color); /* Gold for main title */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-fishing-game-tips__hero-description {
  font-size: 1.15rem;
  color: var(--page-text-secondary); /* Secondary text color */
  margin-bottom: 30px;
}

/* Video Section */
.page-fishing-game-tips__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: var(--page-background-color);
  box-sizing: border-box;
}

.page-fishing-game-tips__video-container {
  width: 100%;
  max-width: 1000px; /* Max width for video container */
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden; /* Ensure video doesn't overflow */
}

.page-fishing-game-tips__video-link {
  display: block; /* Make the whole video area clickable */
  cursor: pointer;
}

.page-fishing-game-tips__video {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%; /* Ensure video is responsive */
  min-height: 200px; /* Min size */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.page-fishing-game-tips__video-caption {
  color: var(--page-text-secondary);
  margin-top: 15px;
  font-style: italic;
  font-size: 0.95rem;
}

/* Content Area */
.page-fishing-game-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--page-background-color);
  color: var(--page-text-main);
  box-sizing: border-box;
}

.page-fishing-game-tips__dark-section {
  background-color: var(--page-background-color); /* Use the overall dark background */
  color: var(--page-text-main);
}

.page-fishing-game-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--page-primary-color); /* Primary color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid var(--page-divider-color);
  padding-bottom: 10px;
}

.page-fishing-game-tips__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-game-tips p {
  margin-bottom: 20px;
  color: var(--page-text-main); /* Ensure text is light on dark background */
}

.page-fishing-game-tips strong {
  color: var(--page-gold-color);
}

.page-fishing-game-tips em {
  color: var(--page-secondary-color);
}

/* Lists */
.page-fishing-game-tips__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-game-tips__list-item {
  background-color: var(--page-card-bg); /* Dark card background */
  color: var(--page-text-main); /* Light text */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--page-border-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-fishing-game-tips__list-item strong {
  color: var(--page-gold-color);
}

/* Buttons */
.page-fishing-game-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.page-fishing-game-tips__btn-primary,
.page-fishing-game-tips__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-fishing-game-tips__btn-primary {
  background: var(--page-button-gradient);
  color: var(--page-text-main); /* White text on dark gradient */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-fishing-game-tips__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 25px var(--page-glow-color);
}

.page-fishing-game-tips__btn-secondary {
  background-color: transparent;
  color: var(--page-primary-color); /* Primary color text */
  border: 2px solid var(--page-border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-fishing-game-tips__btn-secondary:hover {
  background-color: rgba(17, 168, 78, 0.1); /* Slight hover effect */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 15px var(--page-primary-color);
}

/* FAQ Section */
.page-fishing-game-tips__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-game-tips__faq-item {
  background-color: var(--page-card-bg); /* Dark card background */
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main);
}

.page-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--page-gold-color); /* Gold for FAQ questions */
  background-color: var(--page-deep-green); /* Slightly darker for question background */
  border-bottom: 1px solid var(--page-border-color);
}

.page-fishing-game-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-game-tips__faq-question::marker {
  display: none;
}

.page-fishing-game-tips__faq-qtext {
  flex-grow: 1;
}

.page-fishing-game-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--page-primary-color);
}

.page-fishing-game-tips__faq-item[open] .page-fishing-game-tips__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or similar for open state */
}

.page-fishing-game-tips__faq-answer {
  padding: 20px;
  background-color: var(--page-card-bg);
  color: var(--page-text-secondary); /* Secondary text for answers */
  font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-game-tips__hero-content {
    padding-top: 20px;
  }
  .page-fishing-game-tips__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-fishing-game-tips__hero-description {
    font-size: 1.05rem;
  }
  .page-fishing-game-tips__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

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

  .page-fishing-game-tips__hero-section {
    padding-bottom: 30px;
  }

  .page-fishing-game-tips__hero-content {
    padding: 20px 15px 0;
  }

  .page-fishing-game-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .page-fishing-game-tips__hero-description {
    font-size: 1rem;
  }

  .page-fishing-game-tips__video-section {
    padding: 10px 15px !important; /* Small top padding, body handles --header-offset */
  }

  .page-fishing-game-tips__video,
  .page-fishing-game-tips__hero-image,
  .page-fishing-game-tips__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-game-tips__video-container,
  .page-fishing-game-tips__hero-image-wrapper,
  .page-fishing-game-tips__content-area,
  .page-fishing-game-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  
  .page-fishing-game-tips__content-area {
    padding: 30px 15px;
  }

  .page-fishing-game-tips__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-fishing-game-tips__list-item {
    padding: 15px;
  }

  .page-fishing-game-tips__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-fishing-game-tips__btn-primary,
  .page-fishing-game-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-fishing-game-tips__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

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