.page-sports {
  color: #333333; /* Default text color for light body background */
}

.page-sports__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Dark background for hero to contrast with content */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-sports__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px 20px;
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-sports__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #F0F0F0;
}

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

.page-sports__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-sports__button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports__button--register:hover {
  background-color: #E0A030;
}

.page-sports__button--explore {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-sports__button--explore:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

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

.page-sports__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #000000;
}

.page-sports__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #555555;
}

.page-sports__why-hotjili-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

.page-sports__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-sports__feature-card:hover {
  transform: translateY(-10px);
}

.page-sports__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

.page-sports__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

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

.page-sports__live-betting-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-sports__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-sports__content-flex--reverse {
  flex-direction: row-reverse;
}

.page-sports__text-content {
  flex: 1;
}

.page-sports__text-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444444;
}

.page-sports__button--live-bet {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-sports__button--live-bet:hover {
  background-color: #333333;
}

.page-sports__image-right, .page-sports__image-left {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-sports__betting-guides-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

.page-sports__guide-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-sports__guide-item:hover {
  transform: translateY(-10px);
}

.page-sports__guide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-sports__guide-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 20px 10px;
  color: #000000;
}

.page-sports__guide-title a {
  color: inherit;
  text-decoration: none;
}

.page-sports__guide-title a:hover {
  text-decoration: underline;
  color: #FCBC45;
}

.page-sports__guide-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  padding: 0 20px 20px;
}

.page-sports__button--view-details {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1rem;
  margin-bottom: 20px;
}

.page-sports__button--view-details:hover {
  background-color: #E0A030;
}

.page-sports__promotions-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #000000, #333333);
  color: #FFFFFF;
}

.page-sports__promotions-section .page-sports__section-title, .page-sports__promotions-section .page-sports__section-description {
  color: #FFFFFF;
}

.page-sports__button--promo {
  background-color: #FFFFFF;
  color: #000000;
  margin-right: 20px;
}

.page-sports__button--promo:hover {
  background-color: #E0E0E0;
}

.page-sports__button--claim-bonus {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports__button--claim-bonus:hover {
  background-color: #E0A030;
}

.page-sports__security-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-sports__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
}

.page-sports__cta-section .page-sports__section-title, .page-sports__cta-section .page-sports__section-description {
  color: #FFFFFF;
}

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

.page-sports__button--join {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports__button--join:hover {
  background-color: #E0A030;
}

.page-sports__button--download {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-sports__button--download:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3rem;
  }

  .page-sports__section-title {
    font-size: 2rem;
  }

  .page-sports__content-flex {
    flex-direction: column;
  }

  .page-sports__image-right, .page-sports__image-left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: var(--header-offset, 120px);
  }

  .page-sports__hero-title {
    font-size: 2.2rem;
  }

  .page-sports__hero-description {
    font-size: 1rem;
  }

  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__button {
    width: 100%;
    max-width: 300px;
  }

  .page-sports__section-title {
    font-size: 1.8rem;
  }

  .page-sports__text-paragraph {
    font-size: 1rem;
  }

  .page-sports__button--promo {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-sports__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure all images within .page-sports are responsive and not smaller than 200px */
  .page-sports img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
    object-fit: cover; /* Ensure images fill their space without distortion */
  }

  .page-sports__hero-image {
    min-width: unset;
    min-height: unset;
  }

  .page-sports__image-right, .page-sports__image-left, .page-sports__guide-image, .page-sports__section-image {
    min-width: 200px;
    min-height: 200px;
  }

}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8rem;
  }

  .page-sports__hero-description {
    font-size: 0.9rem;
  }

  .page-sports__section-title {
    font-size: 1.5rem;
  }

  .page-sports__features-grid, .page-sports__guides-list {
    grid-template-columns: 1fr;
  }

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

  .page-sports__hero-container {
    min-height: 400px;
  }
}