.page-fishing-games {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust based on display area */
  margin-bottom: 20px;
}

.page-fishing-games__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5; /* 1920x600 ratio */
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-content {
  max-width: 800px;
  padding: 0 15px;
}

.page-fishing-games__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: #F3C54D;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-fishing-games__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFB04A, #D86A14);
  border-radius: 2px;
}

.page-fishing-games__features-section, .page-fishing-games__popular-games-section, .page-fishing-games__guide-section, .page-fishing-games__faq-section, .page-fishing-games__cta-section {
  padding: 40px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-fishing-games__feature-card, .page-fishing-games__game-card {
  background-color: #2A1212;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover, .page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__feature-card img, .page-fishing-games__game-card img {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  filter: none; /* Ensure no grayscale */
}

.page-fishing-games__feature-title, .page-fishing-games__game-title {
  font-size: 1.5rem;
  color: #FFB04A;
  margin-bottom: 10px;
}

.page-fishing-games__feature-description, .page-fishing-games__game-description {
  font-size: 1rem;
  color: #FFF1E8;
  margin-bottom: 15px;
}

.page-fishing-games__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-fishing-games__button--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
}

.page-fishing-games__button--primary:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  box-shadow: 0 4px 10px rgba(255, 176, 74, 0.4);
}

.page-fishing-games__button--secondary {
  background-color: #7E0D0D;
  color: #FFF1E8;
  border: 1px solid #C61F1F;
}

.page-fishing-games__button--secondary:hover {
  background-color: #C61F1F;
  box-shadow: 0 4px 10px rgba(198, 31, 31, 0.4);
}

.page-fishing-games__button--small {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.page-fishing-games__more-games-action {
  text-align: center;
  margin-top: 20px;
}

.page-fishing-games__guide-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-fishing-games__guide-step {
  background-color: #2A1212;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #6A1E1E;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__guide-step-title {
  font-size: 1.3rem;
  color: #FFB04A;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.page-fishing-games__guide-step-title::before {
  content: '▶'; /* Unicode right-pointing triangle */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #F3C54D;
  font-size: 1rem;
}

.page-fishing-games__guide-step img {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  filter: none;
}

.page-fishing-games__faq-list {
  display: grid;
  gap: 20px;
}

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

.page-fishing-games__faq-question {
  font-size: 1.2rem;
  color: #FFB04A;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #F3C54D;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games__faq-answer {
  font-size: 1rem;
  color: #FFF1E8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-fishing-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  margin-top: 15px;
}

.page-fishing-games__cta-section {
  text-align: center;
  padding: 50px 15px;
  background-color: #2A1212;
  border-top: 1px solid #6A1E1E;
  border-bottom: 1px solid #6A1E1E;
  margin-top: 40px;
}

.page-fishing-games__cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-fishing-games__hero-section {
    padding-top: 40px;
  }
  .page-fishing-games__hero-content {
    padding: 0;
  }
  .page-fishing-games__guide-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 15px 12px 30px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games__button {
    width: 100%;
  }
  .page-fishing-games__features-grid, .page-fishing-games__games-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__feature-card img, .page-fishing-games__game-card img, .page-fishing-games__guide-step img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min- /* Adjust height for smaller screens if necessary, maintaining aspect ratio */
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-fishing-games__guide-step-title {
    font-size: 1.2rem;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__hero-section {
    padding: 10px 10px 20px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
  }
  .page-fishing-games__hero-description {
    font-size: 0.95rem;
  }
  .page-fishing-games__features-section, .page-fishing-games__popular-games-section, .page-fishing-games__guide-section, .page-fishing-games__faq-section, .page-fishing-games__cta-section {
    padding: 30px 10px;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }
  .page-fishing-games__faq-answer {
    font-size: 0.9rem;
  }
  .page-fishing-games__guide-step-title {
    font-size: 1.1rem;
  }
  .page-fishing-games__cta-description {
    font-size: 1rem;
  }
}