.page-sports-live-streaming {
  color: #333333; /* Dark text on light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-sports-live-streaming__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sports-live-streaming__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-sports-live-streaming__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-sports-live-streaming__text-content {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-sports-live-streaming__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000;
  color: #FFFFFF;
}

.page-sports-live-streaming__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  object-fit: cover;
}

.page-sports-live-streaming__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index: 10;
}

.page-sports-live-streaming__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports-live-streaming__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-sports-live-streaming__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-sports-live-streaming__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-sports-live-streaming__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

.page-sports-live-streaming__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports-live-streaming__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

.page-sports-live-streaming__button--primary {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  margin-top: 20px;
}

.page-sports-live-streaming__button--primary:hover {
  background-color: #e0a83a;
}

.page-sports-live-streaming__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  font-size: 1em;
  margin-top: 20px;
  border: 1px solid #FCBC45;
}

.page-sports-live-streaming__button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #000000;
}

.page-sports-live-streaming__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FCBC45;
  border: 1px solid #FCBC45;
}

.page-sports-live-streaming__button--small:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* Overview Section */
.page-sports-live-streaming__overview-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

/* Features Section */
.page-sports-live-streaming__features-section {
  padding: 80px 0;
}

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

.page-sports-live-streaming__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-live-streaming__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports-live-streaming__feature-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-sports-live-streaming__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-sports-live-streaming__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Sports Coverage Section */
.page-sports-live-streaming__sports-coverage-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

.page-sports-live-streaming__sports-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-sports-live-streaming__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333333;
}

.page-sports-live-streaming__list-item strong {
  color: #000000;
}

/* How to Bet Section */
.page-sports-live-streaming__how-to-bet-section {
  padding: 80px 0;
}

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

.page-sports-live-streaming__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-live-streaming__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports-live-streaming__step-icon {
  width: 200px;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-sports-live-streaming__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-sports-live-streaming__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-sports-live-streaming__promotions-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

/* Safety Section */
.page-sports-live-streaming__safety-section {
  padding: 80px 0;
}

/* CTA Section */
.page-sports-live-streaming__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-sports-live-streaming__cta-section .page-sports-live-streaming__section-title {
  color: #FFFFFF;
}

.page-sports-live-streaming__cta-section .page-sports-live-streaming__section-title::after {
  background-color: #FCBC45;
}

.page-sports-live-streaming__cta-section .page-sports-live-streaming__text-content {
  color: #F0F0F0;
}

.page-sports-live-streaming__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports-live-streaming__hero-title {
    font-size: 2.8em;
  }
  .page-sports-live-streaming__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-sports-live-streaming__hero-section {
    padding-top: var(--header-offset, 120px);
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-sports-live-streaming__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }
  .page-sports-live-streaming__hero-content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    padding: 20px;
  }
  .page-sports-live-streaming__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-sports-live-streaming__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-sports-live-streaming__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports-live-streaming__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-sports-live-streaming__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-sports-live-streaming__text-content {
    font-size: 1em;
  }
  .page-sports-live-streaming__features-grid,
  .page-sports-live-streaming__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-sports-live-streaming__feature-icon,
  .page-sports-live-streaming__step-icon {
    width: 250px;
    height: auto;
  }
  /* Mobile content area image overflow prevention */
  .page-sports-live-streaming img {
    max-width: 100%;
    height: auto;
  }
  .page-sports-live-streaming {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-sports-live-streaming__hero-title {
    font-size: 1.8em;
  }
  .page-sports-live-streaming__hero-description {
    font-size: 0.9em;
  }
  .page-sports-live-streaming__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-sports-live-streaming__section-title {
    font-size: 1.8em;
  }
  .page-sports-live-streaming__feature-icon,
  .page-sports-live-streaming__step-icon {
    width: 200px;
    height: auto;
  }
}