.page-fishing-games {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

.page-fishing-games__hero-section {
  text-align: center;
  padding: 40px 0 60px;
  background-color: #C61F1F; /* Using main color for hero-section background */
  border-bottom: 3px solid #6A1E1E;
}

.page-fishing-games__main-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem); /* Adjusted H1 for non-index page, still responsive */
  font-weight: bold;
  color: #F3C54D;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__intro-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #FFF1E8;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button--small {
  padding: 12px 25px;
  font-size: 1rem;
}

.page-fishing-games__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #6A1E1E;
}

.page-fishing-games__card-bg {
  background-color: #2A1212;
}

.page-fishing-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F3C54D;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-fishing-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__feature-item {
  background-color: #140C0C;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E;
}

.page-fishing-games__feature-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 20px;
  filter: none; /* Ensure no grayscale or color filter */
}

.page-fishing-games__feature-title {
  font-size: 1.4rem;
  color: #F3C54D;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: #FFF1E8;
  padding: 0 15px;
}

.page-fishing-games__how-to-play-section {
  padding: 60px 0;
  border-bottom: 1px solid #6A1E1E;
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-fishing-games__step-item {
  background-color: #2A1212;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #FFF1E8;
  border-left: 5px solid #E53030;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__step-item strong {
  color: #FFB04A;
}

.page-fishing-games__tips-section {
  padding: 60px 0;
  border-bottom: 1px solid #6A1E1E;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games__tip-item {
  background-color: #140C0C;
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 1rem;
  color: #FFF1E8;
  border-left: 4px solid #F3C54D;
}

.page-fishing-games__faq-section {
  padding: 60px 0;
}

.page-fishing-games__faq-item {
  background-color: #2A1212;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  font-size: 1.3rem;
  color: #FFB04A;
  margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
  font-size: 1rem;
  color: #FFF1E8;
}

@media (max-width: 849px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-fishing-games__intro-text {
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-fishing-games__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 10px;
  }
  .page-fishing-games__hero-section {
    padding: 30px 0 40px;
  }
  .page-fishing-games__content-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__faq-section {
    padding: 40px 0;
  }
  .page-fishing-games__feature-image,
  .page-fishing-games__feature-item img,
  .page-fishing-games__steps-list img,
  .page-fishing-games__tips-list img,
  .page-fishing-games__faq-item img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.1rem, 4.5vw, 1.75rem);
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }
  .page-fishing-games__feature-title {
    font-size: 1.2rem;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.1rem, 6vw, 1.75rem);
  }
  .page-fishing-games__intro-text {
    font-size: 0.95rem;
  }
  .page-fishing-games__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.1rem, 5.5vw, 1.7rem);
  }
  .page-fishing-games__feature-title {
    font-size: 1.1rem;
  }
  .page-fishing-games__feature-description,
  .page-fishing-games__step-item,
  .page-fishing-games__tip-item,
  .page-fishing-games__faq-answer {
    font-size: 0.9rem;
  }
  .page-fishing-games__faq-question {
    font-size: 1rem;
  }
}