.page-fishing-games {
  background-color: #F5F7FA;
  color: #333333;
  font-family: Arial, sans-serif;
}

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

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small padding top to avoid overlapping with header */
  background-color: #2d0000; /* Dark background for hero section */
  padding-bottom: 40px;
}

.page-fishing-games__hero-section img {
  width: 100%;
  max-width: 1200px; /* Adjusted to fit common content width */
  height: auto;
  display: block;
  aspect-ratio: 16 / 9; /* For a 1920x1080 image */
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-fishing-games__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFD700; /* Gold/Yellow for prominence */
  margin-bottom: 15px;
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #F5F7FA;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-fishing-games__hero-cta {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  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.2);
}

.page-fishing-games__hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Yellow accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games__introduction,
.page-fishing-games__features,
.page-fishing-games__game-types,
.page-fishing-games__tips,
.page-fishing-games__cta-bottom {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__introduction p,
.page-fishing-games__tips p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__introduction img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 800px; /* Layout slot width */
  height: 600px; /* Layout slot height */
  object-fit: cover;
}

.page-fishing-games__main-cta {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-fishing-games__main-cta:hover {
  background: #E53935;
}

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

.page-fishing-games__feature-item {
  background-color: #F5F7FA;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  text-align: center;
}

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

.page-fishing-games__feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

.page-fishing-games__features img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 800px; /* Layout slot width */
  height: 600px; /* Layout slot height */
  object-fit: cover;
}

.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: #F5F7FA;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2; /* For a 600x400 image */
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no grayscale */
  width: 600px; /* Layout slot width */
  height: 400px; /* Layout slot height */
}

.page-fishing-games__card-title {
  font-size: 1.3rem;
  color: #E53935;
  margin: 15px 0 10px;
  padding: 0 15px;
}

.page-fishing-games__game-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333333;
  padding: 0 15px 20px;
}

.page-fishing-games__explore-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.page-fishing-games__explore-button:hover {
  background: #E53935;
}

.page-fishing-games__tip-item {
  background-color: #F5F7FA;
  padding: 25px;
  border-left: 5px solid #FFD700; /* Yellow accent for tips */
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

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

.page-fishing-games__more-tips-button {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #FFD700; /* Yellow accent button */
  color: #333333;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games__more-tips-button:hover {
  background-color: #E53935;
  color: #FFFFFF;
}

.page-fishing-games__cta-bottom {
  text-align: center;
  background-color: #E53935; /* Main color for CTA background */
  color: #FFFFFF;
  padding: 80px 0;
  margin-bottom: 0; /* Last section */
}

.page-fishing-games__cta-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  color: #FFD700;
  margin-bottom: 20px;
}

.page-fishing-games__cta-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn {
  display: inline-block;
  padding: 14px 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 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn--primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
}

.page-fishing-games__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn--secondary {
  background-color: #FFD700; /* Yellow accent */
  color: #333333;
}

.page-fishing-games__btn--secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-fishing-games__hero-section img,
  .page-fishing-games__introduction img,
  .page-fishing-games__features img {
    max-width: 100%;
    height: auto;
    width: 100%; /* Ensure full width on smaller screens */
    object-fit: cover;
  }

  .page-fishing-games__features-list,
  .page-fishing-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

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

  .page-fishing-games__section-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
  }

  .page-fishing-games__introduction p,
  .page-fishing-games__tips p {
    font-size: 1rem;
  }

  .page-fishing-games__cta-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

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

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

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 12px;
  }

  .page-fishing-games__hero-section img,
  .page-fishing-games__introduction img,
  .page-fishing-games__features img,
  .page-fishing-games__game-card img {
    max-width: 100%;
    height: auto;
  }

  .page-fishing-games__introduction p,
  .page-fishing-games__tips p {
    text-align: left; /* Adjust justify for smaller screens */
  }
}

@media (max-width: 549px) {
  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.1rem, 4.5vw, 1.75rem);
  }
  .page-fishing-games__hero-description {
    font-size: 0.9rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }
  .page-fishing-games__features-list,
  .page-fishing-games__game-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn {
    width: 100%;
    max-width: 280px;
  }
  .page-fishing-games__hero-cta,
  .page-fishing-games__main-cta,
  .page-fishing-games__explore-button,
  .page-fishing-games__more-tips-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}