.page-fishing-games {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  background-color: #F4F7FB;
  padding-bottom: 40px;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure it can go wide */
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-fishing-games__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure H1 doesn't cause overflow */
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size */
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-fishing-games__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__hero-button:hover {
  opacity: 0.9;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__intro-section {
  margin-bottom: 40px;
  background-color: #FFFFFF;
  padding: 40px 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__intro-title,
.page-fishing-games__features-title,
.page-fishing-games__gameplay-title,
.page-fishing-games__cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-fishing-games__intro-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
  color: #1F2D3D;
}

.page-fishing-games__features-section {
  margin-bottom: 40px;
  padding: 40px 0;
  background-color: #F4F7FB;
}

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

.page-fishing-games__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__feature-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-fishing-games__gameplay-section {
  margin-bottom: 40px;
  padding: 40px 0;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__gameplay-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-fishing-games__gameplay-image {
  flex: 1 1 500px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games__gameplay-steps {
  flex: 1 1 400px;
}

.page-fishing-games__gameplay-steps ol {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__gameplay-steps li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.page-fishing-games__gameplay-steps li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2F6BFF;
  color: #FFFFFF;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.page-fishing-games__gameplay-step-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 5px;
}

.page-fishing-games__gameplay-steps p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-fishing-games__gameplay-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__gameplay-button:hover {
  opacity: 0.9;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-fishing-games__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 18px 35px;
  background-color: #FFFFFF;
  color: #2F6BFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__cta-button:hover {
  background-color: #D6E2FF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  .page-fishing-games__intro-title,
  .page-fishing-games__features-title,
  .page-fishing-games__gameplay-title,
  .page-fishing-games__cta-title {
    font-size: 2rem;
  }
  .page-fishing-games__gameplay-content {
    flex-direction: column;
  }
  .page-fishing-games__gameplay-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 15px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-fishing-games__intro-title,
  .page-fishing-games__features-title,
  .page-fishing-games__gameplay-title,
  .page-fishing-games__cta-title {
    font-size: 1.8rem;
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
  }
  .page-fishing-games__hero-button,
  .page-fishing-games__gameplay-button,
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__cta-title {
    font-size: 2rem;
  }
  .page-fishing-games__cta-description {
    font-size: 1rem;
  }
  /* Mobile content area image prevention overflow */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  .page-fishing-games__intro-title,
  .page-fishing-games__features-title,
  .page-fishing-games__gameplay-title,
  .page-fishing-games__cta-title {
    font-size: 1.5rem;
  }
  .page-fishing-games__feature-heading {
    font-size: 1.2rem;
  }
  .page-fishing-games__gameplay-step-heading {
    font-size: 1.1rem;
  }
}