.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__container--center {
  text-align: center;
}

.page-sports__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  text-align: center;
}

.page-sports__section-title--white {
  color: #FFFFFF;
}

.page-sports__text-block {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  text-align: justify;
}

.page-sports__text-block--white {
  color: #FFFFFF;
}

.page-sports__text-block--center {
  text-align: center;
}

.page-sports__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-sports__btn-primary--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 250px; /* Constrain width for center alignment */
}

.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFFFFF; /* Card BG */
  color: #2F6BFF; /* Main Color */
  text-decoration: none;
  border: 2px solid #2F6BFF; /* Main Color */
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  margin: 10px;
}

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

.page-sports__btn-link {
  display: inline-block;
  color: #2F6BFF; /* Main Color */
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.page-sports__btn-link:hover {
  color: #6FA3FF; /* Auxiliary Color */
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  background-color: #2F6BFF; /* Dark BG for contrast with white text */
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  text-align: center; /* For centering the image if it's smaller than wrapper */
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-sports__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
  color: #FFFFFF;
}

.page-sports__hero-title {
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

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

/* Introduction Section */
.page-sports__introduction-section {
  padding: 80px 0;
  background-color: #F4F7FB; /* Background */
}

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

.page-sports__feature-item {
  background-color: #FFFFFF; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
}

.page-sports__feature-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.page-sports__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
}

.page-sports__feature-description {
  color: #1F2D3D; /* Text Main */
}

/* Video Section */
.page-sports__video-section {
  padding: 80px 0;
  background-color: #2F6BFF; /* Main Color */
  text-align: center;
}

.page-sports__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-sports__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-sports__video-caption {
  margin-top: 20px;
  font-style: italic;
}

/* Betting Types Section */
.page-sports__betting-types-section {
  padding: 80px 0;
  background-color: #F4F7FB; /* Background */
}

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

.page-sports__betting-card {
  background-color: #FFFFFF; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
}

.page-sports__betting-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.page-sports__betting-card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
}

.page-sports__betting-card-description {
  color: #1F2D3D; /* Text Main */
}

/* Guide Section */
.page-sports__guide-section {
  padding: 80px 0;
  background-color: #2F6BFF; /* Main Color */
  color: #FFFFFF;
}

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

.page-sports__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-sports__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
  color: #2F6BFF;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-sports__step-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-sports__step-description {
  color: #FFFFFF;
}

.page-sports__step-item .page-sports__btn-link {
  color: #A5C4FF; /* Glow */
}

.page-sports__step-item .page-sports__btn-link:hover {
  color: #FFFFFF;
}

/* Promotions Section */
.page-sports__promotions-section {
  padding: 80px 0;
  background-color: #F4F7FB; /* Background */
}

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

.page-sports__promo-card {
  background-color: #FFFFFF; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
}

.page-sports__promo-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.page-sports__promo-card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
}

.page-sports__promo-card-description {
  color: #1F2D3D; /* Text Main */
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 80px 0;
  background-color: #F4F7FB; /* Background */
}

.page-sports__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  background-color: #FFFFFF;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-sports__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-sports__faq-question:hover {
  background-color: #F0F5FF;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
}

.page-sports__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
}

.page-sports__faq-answer p {
  margin-bottom: 0;
}

/* CTA Section */
.page-sports__cta-section {
  padding: 80px 0;
  background-color: #2F6BFF; /* Main Color */
  color: #FFFFFF;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-sports__container {
    padding: 0 15px;
  }

  .page-sports__hero-section, 
  .page-sports__introduction-section, 
  .page-sports__video-section, 
  .page-sports__betting-types-section, 
  .page-sports__guide-section, 
  .page-sports__promotions-section, 
  .page-sports__faq-section, 
  .page-sports__cta-section {
    padding: 40px 0;
  }

  .page-sports__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-sports__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-sports__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-sports__text-block {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-sports__feature-grid, 
  .page-sports__betting-grid, 
  .page-sports__steps-grid, 
  .page-sports__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__feature-item, 
  .page-sports__betting-card, 
  .page-sports__step-item, 
  .page-sports__promo-card {
    padding: 20px;
  }

  .page-sports__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-sports__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports__section, 
  .page-sports__card, 
  .page-sports__container, 
  .page-sports__hero-section, 
  .page-sports__introduction-section, 
  .page-sports__video-section, 
  .page-sports__betting-types-section, 
  .page-sports__guide-section, 
  .page-sports__promotions-section, 
  .page-sports__faq-section, 
  .page-sports__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Mobile video responsiveness */
  .page-sports video, .page-sports__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__video-section, .page-sports__video-container, .page-sports__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0; /* Handled by parent section padding */
    padding-right: 0; /* Handled by parent section padding */
    overflow: hidden !important;
  }
  .page-sports__video-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  /* Mobile button responsiveness */
  .page-sports__cta-button, .page-sports__btn-primary, .page-sports__btn-secondary, .page-sports a[class*="button"], .page-sports a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__cta-buttons, .page-sports__button-group, .page-sports__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }
}

/* Ensure h1 does not have fixed large font-size */
.page-sports__hero-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
}