.page-fishing-games-ocean-king-review {
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-fishing-games-ocean-king-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0a0a0a; /* Ensure a dark background for the hero section */
  color: #ffffff;
  text-align: center;
}

.page-fishing-games-ocean-king-review__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-fishing-games-ocean-king-review__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-fishing-games-ocean-king-review__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games-ocean-king-review__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.page-fishing-games-ocean-king-review__btn-primary,
.page-fishing-games-ocean-king-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-fishing-games-ocean-king-review__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games-ocean-king-review__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-fishing-games-ocean-king-review__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-ocean-king-review__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Content Area */
.page-fishing-games-ocean-king-review__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* Light background for main content */
  color: #333333; /* Dark text for light background */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: -40px; /* Overlap with hero slightly for visual effect */
  position: relative;
  z-index: 10;
}

.page-fishing-games-ocean-king-review__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-fishing-games-ocean-king-review__section-title:first-of-type {
  margin-top: 0;
}

.page-fishing-games-ocean-king-review__content-area p {
  margin-bottom: 1em;
  color: #333333;
}

.page-fishing-games-ocean-king-review__image-block {
  margin: 30px 0;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-games-ocean-king-review__image-block img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-ocean-king-review__features-list,
.page-fishing-games-ocean-king-review__strategy-list,
.page-fishing-games-ocean-king-review__why-choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
  list-style: none; /* Remove default list style for ul */
  padding: 0;
}

.page-fishing-games-ocean-king-review__feature-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-fishing-games-ocean-king-review__feature-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-ocean-king-review__guide-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 20px;
  color: #333333;
}

.page-fishing-games-ocean-king-review__guide-list li {
  margin-bottom: 10px;
}

.page-fishing-games-ocean-king-review__guide-list li strong {
  color: #26A9E0;
}

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

.page-fishing-games-ocean-king-review__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-fishing-games-ocean-king-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #26A9E0;
  list-style: none; /* For details/summary */
}

/* Hide default marker for <details> */
.page-fishing-games-ocean-king-review__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-fishing-games-ocean-king-review__faq-item summary::marker {
  display: none;
}

.page-fishing-games-ocean-king-review__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-fishing-games-ocean-king-review__faq-item[open] .page-fishing-games-ocean-king-review__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to X */
}

.page-fishing-games-ocean-king-review__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95rem;
  color: #555555;
}

/* CTA Section at the end of content area */
.page-fishing-games-ocean-king-review__cta-section {
  background-color: #eaf7fd; /* Light background for CTA */
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  color: #333333;
}

.page-fishing-games-ocean-king-review__cta-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games-ocean-king-review__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555555;
}

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

  .page-fishing-games-ocean-king-review__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-games-ocean-king-review__hero-image {
    max-height: 300px; /* Adjust hero image height for mobile */
  }

  .page-fishing-games-ocean-king-review__hero-content {
    padding: 0 15px;
  }

  .page-fishing-games-ocean-king-review__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-fishing-games-ocean-king-review__subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  .page-fishing-games-ocean-king-review__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-ocean-king-review__btn-primary,
  .page-fishing-games-ocean-king-review__btn-secondary {
    width: 100% !important; /* Full width for buttons */
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-ocean-king-review__content-area {
    padding: 30px 15px;
    margin-top: -20px; /* Adjust overlap */
  }

  .page-fishing-games-ocean-king-review__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-fishing-games-ocean-king-review__image-block img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-ocean-king-review__features-list,
  .page-fishing-games-ocean-king-review__strategy-list,
  .page-fishing-games-ocean-king-review__why-choose-list {
    grid-template-columns: 1fr; /* Single column layout for lists */
    gap: 20px;
  }

  .page-fishing-games-ocean-king-review__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-fishing-games-ocean-king-review__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-fishing-games-ocean-king-review__cta-section {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .page-fishing-games-ocean-king-review__cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-fishing-games-ocean-king-review__cta-description {
    font-size: 1rem;
  }

  /* Ensure all img and video containers are responsive */
  .page-fishing-games-ocean-king-review__section,
  .page-fishing-games-ocean-king-review__card,
  .page-fishing-games-ocean-king-review__container,
  .page-fishing-games-ocean-king-review__image-block,
  .page-fishing-games-ocean-king-review__video-section,
  .page-fishing-games-ocean-king-review__video-container,
  .page-fishing-games-ocean-king-review__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-fishing-games-ocean-king-review__video-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }
}