.page-sports {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff; /* Body default background is white, so use dark text */
}

.page-sports__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-sports__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-sports__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-sports__text-block a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
}

.page-sports__text-block a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  background-color: #ffffff;
  color: #333333;
}

.page-sports__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin-bottom: 30px;
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-sports__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-sports__description {
  font-size: 1.15rem;
  color: #555555;
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-sports__cta-buttons--center {
  margin-top: 30px;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports__btn-primary:hover {
  background-color: #1a8ccb;
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
}

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

.page-sports__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Popular Sports Grid */
.page-sports__popular-sports {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports__popular-sports .page-sports__section-title,
.page-sports__popular-sports .page-sports__text-block {
  color: #ffffff;
}

.page-sports__popular-sports .page-sports__text-block a {
  color: #ffffff;
  text-decoration: underline;
}

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

.page-sports__sport-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__sport-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-sports__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-sports__card-description {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Benefits List */
.page-sports__benefits-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-sports__benefit-item {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05rem;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-sports__benefit-item strong {
  color: #26A9E0;
}

/* Video Section */
.page-sports__live-betting {
  background-color: #f8f8f8;
}

.page-sports__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%; /* Important for desktop as well */
  max-width: 800px; /* Constrain video width */
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-sports__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

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

.page-sports__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-sports__promo-card .page-sports__card-title {
  color: #26A9E0;
}

.page-sports__promo-card .page-sports__card-description {
  color: #555555;
}

/* How to Start Steps */
.page-sports__steps-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-sports__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #EA7C07;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05rem;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-sports__step-item strong {
  color: #EA7C07;
}

/* FAQ Section */
.page-sports__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-sports__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
}

.page-sports__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #333333;
  list-style: none; /* Hide default marker */
}

.page-sports__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-sports__faq-item summary:hover {
  background-color: #f5f5f5;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
}

.page-sports__faq-answer {
  padding: 10px 20px 15px;
  color: #555555;
  line-height: 1.6;
}

/* CTA Bottom Section */
.page-sports__cta-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 80px 0;
}

.page-sports__cta-section .page-sports__section-title,
.page-sports__cta-section .page-sports__text-block {
  color: #ffffff;
}

.page-sports__cta-section .page-sports__text-block a {
  color: #ffffff;
  text-decoration: underline;
}

.page-sports__cta-content {
  max-width: 900px;
}

/* Background color classes for contrast */
.page-sports__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-sports__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports__medium-bg {
  background-color: #f8f8f8;
  color: #333333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-sports__section {
    padding: 40px 0;
  }

  .page-sports__container {
    padding: 0 15px;
  }

  .page-sports__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-sports__text-block {
    font-size: 0.95rem;
  }

  /* Hero Section */
  .page-sports__hero-section {
    padding: 10px 15px 40px;
  }

  .page-sports__hero-image img,
  .page-sports__sport-card img,
  .page-sports__promo-card img,
  .page-sports__video-wrapper video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__hero-image,
  .page-sports__sport-card,
  .page-sports__promo-card,
  .page-sports__video-wrapper,
  .page-sports__video-container,
  .page-sports__faq-item,
  .page-sports__benefits-list,
  .page-sports__steps-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
    padding-left: 0;
    padding-right: 0;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .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 !important;
    padding-right: 15px !important;
  }
  
  .page-sports__sports-grid, .page-sports__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__faq-item summary {
    padding: 12px 15px;
  }

  .page-sports__faq-answer {
    padding: 8px 15px 12px;
  }
  
  .page-sports__video-section {
    padding-top: 10px !important; /* Small top padding */
  }

  .page-sports__video-wrapper {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }

  .page-sports__video-wrapper video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__live-betting .page-sports__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__cta-section {
    padding: 50px 0;
  }
}