.page-fishing-games {
  background-color: var(--main-bg);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 0 15px;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__hero-section {
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games__hero-image-wrapper {
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/5; /* Fallback for 1920x600 */
  max-width: 1200px; /* Display width */
  margin: 0 auto;
}

.page-fishing-games__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color);
  line-height: 1.2;
  text-shadow: 2px 2px 4px var(--deep-red);
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  background: var(--button-bg);
  color: var(--deep-red);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--border-color);
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
}

.page-fishing-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--gold-color);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  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-color: var(--border-color);
  border-radius: 2px;
}

.page-fishing-games__intro-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__advantages-section,
.page-fishing-games__faq-section,
.page-fishing-games__final-cta-section {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__text-content {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-fishing-games__game-card {
  background-color: var(--deep-red);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid var(--primary-color);
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--primary-color);
  min-height: 200px; /* Ensure images are not too small */
}

.page-fishing-games__game-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin: 20px 10px 10px 10px;
}

.page-fishing-games__game-description {
  font-size: 0.95rem;
  color: var(--text-main);
  margin: 0 15px 20px 15px;
}

.page-fishing-games__game-button {
  display: inline-block;
  background: var(--button-bg);
  color: var(--deep-red);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-fishing-games__game-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-fishing-games__step-item {
  background-color: var(--deep-red);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: var(--gold-color);
  color: var(--deep-red);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-fishing-games__step-title {
  font-size: 1.3rem;
  color: var(--gold-color);
  margin-bottom: 5px;
}

.page-fishing-games__step-description {
  font-size: 1rem;
}

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

.page-fishing-games__advantage-list {
  list-style: none;
  padding: 0;
}

.page-fishing-games__advantage-item {
  background-color: var(--deep-red);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05rem;
  position: relative;
  padding-left: 40px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__advantage-item::before {
  content: '✅';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-fishing-games__faq-item {
  background-color: var(--deep-red);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  font-size: 1.2rem;
  color: var(--gold-color);
  margin-bottom: 10px;
}

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

.page-fishing-games__faq-answer a {
  color: var(--border-color);
  text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }

  .page-fishing-games__hero-image,
  .page-fishing-games__game-image {
    max-width: 100%;
    height: auto;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }

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

  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-fishing-games__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__advantages-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__final-cta-section {
    margin-bottom: 40px;
    padding: 15px;
  }

  .page-fishing-games__text-content {
    font-size: 0.95rem;
    text-align: left;
  }

  .page-fishing-games__step-item {
    padding: 15px 15px 15px 50px;
  }

  .page-fishing-games__step-item::before {
    width: 25px;
    height: 25px;
    font-size: 1rem;
    left: 15px;
    top: 15px;
  }

  .page-fishing-games__step-title {
    font-size: 1.15rem;
  }

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

  .page-fishing-games__advantage-item {
    font-size: 0.95rem;
    padding: 12px 15px 12px 40px;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1rem;
  }

  .page-fishing-games__faq-answer {
    font-size: 0.9rem;
  }
}

@media (max-width: 549px) {
  .page-fishing-games {
    padding: 0 10px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-fishing-games__text-content {
    font-align: left;
  }
}

/* Ensure content images are not too small as per rules */
.page-fishing-games img {
  min-width: 200px;
  min-height: 200px;
}

/* Specific rule to prevent small display sizes for content images */
.page-fishing-games__game-image,
.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%; /* Important for mobile responsiveness */
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px; /* Enforce minimum size for content images */
}

@media (max-width: 768px) {
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games {
    overflow-x: hidden;
  }
}