.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #FFF1E8; /* Main text color for dark body background */
  background-color: #140C0C; /* Body background */
  line-height: 1.6;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #140C0C; /* Dark background */
}

.page-fishing-games__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height for desktop hero */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop */
}

.page-fishing-games__hero-content {
  padding: 30px 15px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* H1 font size with clamp */
  font-weight: 700;
  color: #F3C54D; /* Gold color for title */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-fishing-games__description {
  font-size: 1.15rem;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.page-fishing-games__cta-buttons--center {
  margin-top: 40px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word; /* Allow text wrapping for buttons */
  box-sizing: border-box; /* Crucial for button responsiveness */
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark text for light button */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 176, 74, 0.6);
}

.page-fishing-games__btn-secondary {
  background: #2A1212; /* Card BG color */
  color: #FFF1E8; /* Main text color */
  border: 2px solid #6A1E1E; /* Border color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary:hover {
  background: #3A2222;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__text-link {
  color: #F3C54D; /* Gold for links */
  text-decoration: underline;
  font-weight: 600;
}

.page-fishing-games__text-link:hover {
  color: #FFB04A;
}

/* General Section Styling */
.page-fishing-games__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-fishing-games__section:last-of-type {
  margin-bottom: 0;
}

.page-fishing-games__dark-section {
  background-color: #2A1212; /* Card BG for dark sections */
  color: #FFF1E8;
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F3C54D;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-fishing-games__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #FFB04A; /* Gold gradient start for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games__text-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.05rem;
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-fishing-games__text-block ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-fishing-games__text-block ol {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-fishing-games__text-block li {
  margin-bottom: 8px;
  color: #FFF1E8;
}

.page-fishing-games__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border color */
  overflow: hidden;
  background: #2A1212; /* Card BG color */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF1E8;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: #3A2222; /* Slightly lighter card BG on hover */
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold for FAQ question */
}
.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04A; /* Gold gradient start for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: #140C0C; /* Body BG for answer area */
  border-radius: 0 0 8px 8px;
  color: #FFF1E8;
}
.page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
/* Hero image specific for smaller desktops/tablets to prevent excessive cropping */
@media (max-width: 849px) {
  .page-fishing-games__hero-image img {
    object-fit: contain !important; /* Ensure full image is visible */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 15px;
    line-height: 1.55;
  }

  .page-fishing-games__container {
    padding: 0 10px;
  }

  /* Hero Section */
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding */
    margin-bottom: 30px;
  }

  .page-fishing-games__hero-content {
    padding: 20px 10px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-fishing-games__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%; /* Ensure button container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px; /* Add padding to the container */
  }

  /* Buttons */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 1rem;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General Section Styling */
  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-fishing-games__text-block {
    font-size: 0.95rem;
  }

  .page-fishing-games__text-block ul,
  .page-fishing-games__text-block ol {
    padding-left: 20px;
  }

  /* Images in content area */
  .page-fishing-games__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 25px auto;
  }

  /* FAQ Section */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px;
    flex-wrap: wrap; /* Allow question text to wrap */
  }
  .page-fishing-games__faq-qtext {
    font-size: 1rem;
    width: calc(100% - 40px); /* Adjust width to make space for toggle */
  }
  .page-fishing-games__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }

  /* Ensure all content containers are responsive */
  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__benefits-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section,
  .page-fishing-games__container,
  .page-fishing-games__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__products-grid { /* Generic for products grid, if any, ensure overflow hidden */
      overflow-x: hidden;
  }
}