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

/* Base styles for the page content */
.page-fishing-game-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark background */
  background-color: var(--background); /* Default background for the main content area */
}

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

/* Section common styles */
.page-fishing-game-tips__hero-section,
.page-fishing-game-tips__intro-section,
.page-fishing-game-tips__fish-types-section,
.page-fishing-game-tips__bullet-strategy-section,
.page-fishing-game-tips__angle-strategy-section,
.page-fishing-game-tips__capital-management-section,
.page-fishing-game-tips__advanced-tips-section,
.page-fishing-game-tips__video-section,
.page-fishing-game-tips__faq-section,
.page-fishing-game-tips__conclusion-section {
  padding: 60px 0;
}

/* Background colors for sections based on contrast rules */
.page-fishing-game-tips__dark-bg,
.page-fishing-game-tips__dark-section {
  background-color: var(--background);
  color: var(--text-main);
}

.page-fishing-game-tips__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

/* Hero Section */
.page-fishing-game-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-fishing-game-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-fishing-game-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-fishing-game-tips__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  letter-spacing: 1px;
}

.page-fishing-game-tips__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

/* Buttons */
.page-fishing-game-tips__btn-primary {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-game-tips__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Titles */
.page-fishing-game-tips__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-game-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 2px;
}

.page-fishing-game-tips__sub-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  font-weight: bold;
  color: var(--glow-color);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

/* Text Blocks */
.page-fishing-game-tips__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section for contrast */
}

/* Images in content */
.page-fishing-game-tips__image {
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

/* Lists */
.page-fishing-game-tips__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-fishing-game-tips__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

/* Video Section */
.page-fishing-game-tips__video-section {
  text-align: center;
}

.page-fishing-game-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%; /* Desktop full width */
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-game-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block; /* Ensure it behaves as a block element */
}

.page-fishing-game-tips__video-cta {
  margin-top: 30px;
}

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

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

.page-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--gold-color);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-fishing-game-tips__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-fishing-game-tips__faq-question:hover {
  background-color: var(--main-color);
}

.page-fishing-game-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--text-main);
}

.page-fishing-game-tips__faq-item[open] .page-fishing-game-tips__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-fishing-game-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
}

.page-fishing-game-tips__faq-answer p {
  margin-bottom: 10px;
}

/* Conclusion Section */
.page-fishing-game-tips__conclusion-section {
  text-align: center;
}

/* Links within text blocks */
.page-fishing-game-tips__text-block a,
.page-fishing-game-tips__list li a,
.page-fishing-game-tips__faq-answer a {
  color: var(--glow-color); /* Use a vibrant color for links */
  text-decoration: underline;
  font-weight: bold;
}

.page-fishing-game-tips__text-block a:hover,
.page-fishing-game-tips__list li a:hover,
.page-fishing-game-tips__faq-answer a:hover {
  color: var(--gold-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-game-tips__hero-content {
    margin-top: 20px;
  }

  .page-fishing-game-tips__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
}

@media (max-width: 768px) {
  .page-fishing-game-tips__hero-section {
    padding: 10px 0 40px 0;
  }

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

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

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

  .page-fishing-game-tips__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-game-tips__container {
    padding: 0 15px;
  }

  .page-fishing-game-tips__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-fishing-game-tips__sub-title {
    font-size: clamp(1.2em, 4vw, 1.6em);
  }

  .page-fishing-game-tips__text-block,
  .page-fishing-game-tips__list li,
  .page-fishing-game-tips__faq-answer p {
    font-size: 15px;
  }

  /* Mobile image responsiveness */
  .page-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset; /* Allow smaller on mobile if needed, but min-size constraint is still 200px */
    min-height: unset;
  }

  /* Mobile video responsiveness */
  .page-fishing-game-tips video,
  .page-fishing-game-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-game-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 20px auto;
    padding: 0 15px; /* Add padding to wrapper */
  }

  .page-fishing-game-tips__video-section {
    padding-top: 10px !important; /* Small top padding for video section */
    padding-left: 0;
    padding-right: 0;
  }

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

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

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

@media (max-width: 480px) {
  .page-fishing-game-tips__hero-section,
  .page-fishing-game-tips__intro-section,
  .page-fishing-game-tips__fish-types-section,
  .page-fishing-game-tips__bullet-strategy-section,
  .page-fishing-game-tips__angle-strategy-section,
  .page-fishing-game-tips__capital-management-section,
  .page-fishing-game-tips__advanced-tips-section,
  .page-fishing-game-tips__video-section,
  .page-fishing-game-tips__faq-section,
  .page-fishing-game-tips__conclusion-section {
    padding: 40px 0;
  }
}