.page-sports {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
  }

  .page-sports__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-sports__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for image container */
    margin-bottom: 20px;
  }

  .page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .page-sports__hero-content {
    max-width: 900px;
    padding: 0 20px;
  }

  .page-sports__main-title {
    color: #F2FFF6;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* font-size handled by browser defaults/user settings for h1, not fixed */
  }

  .page-sports__hero-description {
    color: #A7D9B8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .page-sports__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
    min-width: 200px;
    text-align: center;
    box-sizing: border-box;
  }

  .page-sports__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  }

  .page-sports__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    color: #F2FFF6;
  }

  .page-sports__categories-section,
  .page-sports__why-choose-section,
  .page-sports__cta-banner-section,
  .page-sports__faq-section {
    padding: 60px 20px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-sports__categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .page-sports__game-tile {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .page-sports__game-tile:hover {
    transform: translateY(-5px);
  }

  .page-sports__game-tile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }

  .page-sports__features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .page-sports__feature-card {
    background-color: #0A4B2C;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #2E7A4E;
  }

  .page-sports__feature-icon {
    width: 100%;
    max-width: 400px; /* Limit icon size */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-sports__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .page-sports__feature-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .page-sports__cta-banner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }

  .page-sports__cta-banner-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 30px;
    min-width: 200px;
    min-height: 200px;
  }

  .page-sports__cta-banner-content {
    max-width: 800px;
    padding: 0 20px;
  }

  .page-sports__cta-banner-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .page-sports__cta-banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

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

  .page-sports__faq-item {
    background-color: #0A4B2C;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
  }

  .page-sports__faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

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

  /* Responsive adjustments */
  @media (max-width: 849px) {
    .page-sports__hero-section {
      padding-bottom: 30px;
    }
    .page-sports__main-title {
      font-size: clamp(1.8rem, 6vw, 2.5rem); /* Clamp for H1 */
    }
    .page-sports__hero-description {
      font-size: 1rem;
    }
    .page-sports__cta-button {
      padding: 12px 25px;
      font-size: 1rem;
      min-width: unset;
      width: 100%;
      max-width: 300px;
    }
    .page-sports__section-title {
      font-size: 1.8rem;
      margin-bottom: 30px;
    }
    .page-sports__categories-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    .page-sports__features-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .page-sports__feature-card {
      padding: 25px;
    }
    .page-sports__feature-title {
      font-size: 1.3rem;
    }
    .page-sports__cta-banner-section {
      padding: 60px 20px;
    }
    .page-sports__cta-banner-title {
      font-size: 1.8rem;
    }
    .page-sports__cta-banner-description {
      font-size: 1rem;
    }
    .page-sports__faq-question {
      font-size: 1.2rem;
    }
    .page-sports__faq-answer {
      font-size: 0.95rem;
    }
    .page-sports__hero-image, .page-sports__game-tile img, .page-sports__feature-icon, .page-sports__cta-banner-image {
      max-width: 100%;
      height: auto;
      min-width: 200px; /* Ensure images are not too small */
      min-height: 200px;
    }
  }

  @media (max-width: 549px) {
    .page-sports__hero-section {
      padding-bottom: 20px;
    }
    .page-sports__main-title {
      font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-sports__categories-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .page-sports__section-title {
      font-size: 1.5rem;
      margin-bottom: 25px;
    }
    .page-sports__cta-banner-title {
      font-size: 1.5rem;
    }
    .page-sports__cta-button {
      width: 100%;
      max-width: 280px;
    }
  }

  /* Ensure content area images do not cause overflow on mobile */
  @media (max-width: 768px) {
    .page-sports img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .page-sports__categories-grid,
    .page-sports__features-grid {
      overflow-x: hidden;
      padding: 0 12px; /* Ensure inner padding for grids */
    }
    .page-sports__hero-section, .page-sports__categories-section, .page-sports__why-choose-section, .page-sports__cta-banner-section, .page-sports__faq-section {
      padding-left: 12px;
      padding-right: 12px;
    }
  }