.page-fishing-games {
  padding-top: 10px; /* Small top padding to respect shared header offset */
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-fishing-games__hero-content {
  max-width: 900px;
}

.page-fishing-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #F2C14E;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Responsive font size */
}

.page-fishing-games__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B;
}

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

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

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

.page-fishing-games__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF6D6;
}

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

.page-fishing-games__feature-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__feature-image {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-fishing-games__step-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 1.2rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  font-size: 0.9rem;
  color: #FFF6D6;
}

.page-fishing-games__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__cta-button--secondary {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  color: #111111;
}

/* Ensure all content images meet minimum size requirements */
.page-fishing-games img:not(.page-fishing-games__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  .page-fishing-games__description {
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-fishing-games__paragraph {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-fishing-games__hero-image {
    aspect-ratio: 16/9; /* More standard for mobile hero */
  }
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
  .page-fishing-games__section,
  .page-fishing-games__hero-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-fishing-games__feature-card,
  .page-fishing-games__step-card {
    padding: 20px 15px;
  }
  .page-fishing-games__paragraph {
    font-size: 0.95rem;
  }
}