.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* Rely on body background from shared.css */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background-color: #0a0a0a;
  color: #ffffff;
  text-align: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
}

.page-fishing-games__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
  line-height: 1.3;
}

.page-fishing-games__sub-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #26A9E0;
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-list, .page-fishing-games__promo-list, .page-fishing-games__game-list, .page-fishing-games__strategy-list, .page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__feature-item, .page-fishing-games__promo-item, .page-fishing-games__game-item, .page-fishing-games__strategy-item, .page-fishing-games__guide-item {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #f0f0f0;
}

.page-fishing-games__feature-item::before, .page-fishing-games__promo-item::before, .page-fishing-games__game-item::before, .page-fishing-games__strategy-item::before, .page-fishing-games__guide-item::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Section Specific Colors */
.page-fishing-games__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: #ffffff;
  padding: 80px 0;
}

/* Buttons */
.page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
  background-color: #1f8ac7;
  border-color: #1f8ac7;
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games__link-inline {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-fishing-games__link-inline:hover {
  color: #1f8ac7;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-fishing-games__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-fishing-games__section-title {
    font-size: 2rem;
  }
  .page-fishing-games__sub-title {
    font-size: 1.6rem;
  }
  .page-fishing-games__hero-section, .page-fishing-games__introduction-section, .page-fishing-games__benefits-section, .page-fishing-games__games-showcase-section, .page-fishing-games__guide-section, .page-fishing-games__strategies-section, .page-fishing-games__faq-section, .page-fishing-games__conclusion-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__hero-section, .page-fishing-games__introduction-section, .page-fishing-games__benefits-section, .page-fishing-games__games-showcase-section, .page-fishing-games__guide-section, .page-fishing-games__strategies-section, .page-fishing-games__faq-section, .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-fishing-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-fishing-games__sub-title {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-fishing-games__hero-description, .page-fishing-games__text-block, .page-fishing-games__feature-item, .page-fishing-games__promo-item, .page-fishing-games__game-item, .page-fishing-games__strategy-item, .page-fishing-games__guide-item, .page-fishing-games__faq-item summary, .page-fishing-games__faq-answer {
    font-size: 1rem;
  }

  /* Mobile Image Responsive */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-fishing-games__section, .page-fishing-games__card, .page-fishing-games__container, .page-fishing-games__hero-section, .page-fishing-games__introduction-section, .page-fishing-games__benefits-section, .page-fishing-games__games-showcase-section, .page-fishing-games__guide-section, .page-fishing-games__strategies-section, .page-fishing-games__faq-section, .page-fishing-games__conclusion-section {
    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 */
  }

  /* Mobile Button Responsive */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
    overflow: hidden !important;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* Small top padding, header offset handled by body */
  }
}