.page-sports__hero-section {
  padding-top: 10px; /* Small top padding to ensure content starts below header */
  background-color: #F4F7FB;
  color: #1F2D3D;
  text-align: center;
  padding-bottom: 40px;
}

.page-sports__hero-image-wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9; /* Default aspect ratio */
}

.page-sports__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.page-sports__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.page-sports__intro-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #1F2D3D;
}

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

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

.page-sports__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
}

.page-sports__button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-sports__button--secondary:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-sports__button--small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.page-sports__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 50px;
}

.page-sports__features-section,
.page-sports__categories-section,
.page-sports__promotions-section,
.page-sports__how-to-start-section,
.page-sports__responsible-gaming-section,
.page-sports__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px 60px;
  background-color: #F4F7FB;
}

.page-sports__features-grid,
.page-sports__promotions-grid,
.page-sports__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports__feature-card,
.page-sports__promotion-card,
.page-sports__step-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #D6E2FF; /* Border */
}

.page-sports__feature-icon {
  width: 100%; /* Ensure images are responsive */
  height: auto;
  max-width: 250px; /* Max width for feature icons */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-sports__feature-title,
.page-sports__promotion-title,
.page-sports__step-title,
.page-sports__category-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-sports__feature-description,
.page-sports__promotion-description,
.page-sports__step-description,
.page-sports__category-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-sports__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-sports__category-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #D6E2FF; /* Border */
}

.page-sports__promotion-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Max width for promotion images */
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-sports__promotion-card .page-sports__button {
  margin-top: 15px;
}

.page-sports__all-promotions-cta {
  text-align: center;
  margin-top: 40px;
}

.page-sports__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-sports__step-card .page-sports__button {
  margin-top: 20px;
}

.page-sports__responsible-gaming-section {
  text-align: center;
  padding-bottom: 60px;
}

.page-sports__text-content {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #1F2D3D;
}

.page-sports__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-sports__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  text-align: left;
}

.page-sports__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-sports__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Ensure all content images meet minimum size requirements */
.page-sports__features-grid img,
.page-sports__promotions-grid img {
  min-width: 200px;
  min-height: 200px;
  width: auto; /* Allow natural scaling */
  height: auto; /* Allow natural scaling */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-sports__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-sports__intro-description {
    font-size: 1rem;
  }
  .page-sports__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-sports__features-grid,
  .page-sports__promotions-grid,
  .page-sports__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-sports__features-section,
  .page-sports__categories-section,
  .page-sports__promotions-section,
  .page-sports__how-to-start-section,
  .page-sports__responsible-gaming-section,
  .page-sports__faq-section {
    padding: 0 10px 40px;
  }
}

@media (max-width: 549px) {
  .page-sports__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
  .page-sports__intro-description {
    font-size: 0.95rem;
  }
  .page-sports__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-sports__hero-image {
    aspect-ratio: 4/3; /* Adjust aspect ratio for smaller screens */
  }
  .page-sports__categories-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__features-grid img,
  .page-sports__promotions-grid img {
    max-width: 100%; /* Ensure images are fully responsive */
    height: auto;
  }
  /* Ensure content area images do not cause horizontal scroll */
  .page-sports__hero-section img,
  .page-sports__features-section img,
  .page-sports__promotions-section img,
  .page-sports__how-to-start-section img {
    max-width: 100%;
    height: auto;
  }
}

/* Global image reset for content images to prevent overflow on mobile */
@media (max-width: 768px) {
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
}