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

.page-live-sports-streaming__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  box-sizing: border-box;
  text-align: center;
}

.page-live-sports-streaming__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-live-sports-streaming__video {
  width: 100%;
  height: auto;
  display: block;
}

.page-live-sports-streaming__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-live-sports-streaming__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-live-sports-streaming__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #A7D9B8;
}

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

.page-live-sports-streaming__btn-primary,
.page-live-sports-streaming__btn-secondary,
.page-live-sports-streaming__btn-small,
.page-live-sports-streaming__btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-live-sports-streaming__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-live-sports-streaming__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-live-sports-streaming__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-live-sports-streaming__btn-secondary:hover {
  background: #2AD16F;
  color: #11271B;
  transform: translateY(-2px);
}

.page-live-sports-streaming__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  border-radius: 6px;
}

.page-live-sports-streaming__btn-small:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-1px);
}

.page-live-sports-streaming__btn-large {
  padding: 16px 40px;
  font-size: 1.25rem;
}

.page-live-sports-streaming__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-live-sports-streaming__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Gold color */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-live-sports-streaming__section-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-live-sports-streaming__card-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-live-sports-streaming__card-text {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.5;
}

/* Features Section */
.page-live-sports-streaming__features-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-live-sports-streaming__feature-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live-sports-streaming__feature-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-live-sports-streaming__card-link {
  color: #57E38D; /* Glow color */
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-live-sports-streaming__card-link:hover {
  color: #F2C14E; /* Gold color */
}

/* How To Bet Section */
.page-live-sports-streaming__how-to-bet-section {
  padding: 80px 0;
  background-color: #08160F;
}

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

.page-live-sports-streaming__step-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live-sports-streaming__step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.6);
}

/* Popular Sports Section */
.page-live-sports-streaming__popular-sports-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-live-sports-streaming__sport-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live-sports-streaming__sport-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

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

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

.page-live-sports-streaming__promo-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live-sports-streaming__promo-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Mobile App Section */
.page-live-sports-streaming__mobile-app-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

.page-live-sports-streaming__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  border: 1px solid #2E7A4E;
}

.page-live-sports-streaming__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-live-sports-streaming__app-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-live-sports-streaming__app-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.page-live-sports-streaming__app-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #A7D9B8;
}

.page-live-sports-streaming__list-icon {
  color: #57E38D; /* Glow color */
  font-size: 1.2rem;
  margin-right: 10px;
}

/* FAQ Section */
.page-live-sports-streaming__faq-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-live-sports-streaming__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-live-sports-streaming__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-sports-streaming__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  user-select: none;
}

.page-live-sports-streaming__faq-qtext {
  flex-grow: 1;
}

.page-live-sports-streaming__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold color */
}

.page-live-sports-streaming__faq-item[open] .page-live-sports-streaming__faq-toggle {
  content: '−';
}

.page-live-sports-streaming__faq-answer {
  padding: 20px 25px;
  background-color: #11271B;
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid #2E7A4E;
}

.page-live-sports-streaming__faq-answer p {
  margin: 0;
}

/* CTA Bottom Section */
.page-live-sports-streaming__cta-bottom-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  text-align: center;
}

.page-live-sports-streaming__cta-bottom-section .page-live-sports-streaming__section-description {
  margin-bottom: 40px;
}

/* General Image Styling */
.page-live-sports-streaming img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-sports-streaming__hero-section {
    padding: 40px 15px;
  }

  .page-live-sports-streaming__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-live-sports-streaming__hero-description {
    font-size: 1.1rem;
  }

  .page-live-sports-streaming__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  }

  .page-live-sports-streaming__section-description {
    font-size: 1rem;
  }

  .page-live-sports-streaming__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-live-sports-streaming__app-text {
    text-align: center;
    min-width: unset;
  }

  .page-live-sports-streaming__app-features {
    text-align: left;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-live-sports-streaming__hero-section {
    padding: 30px 15px;
  }

  .page-live-sports-streaming__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live-sports-streaming__btn-primary,
  .page-live-sports-streaming__btn-secondary,
  .page-live-sports-streaming__btn-small,
  .page-live-sports-streaming__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-live-sports-streaming__video,
  .page-live-sports-streaming__video-container,
  .page-live-sports-streaming__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-live-sports-streaming__video-section {
    padding-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live-sports-streaming img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-live-sports-streaming__section,
  .page-live-sports-streaming__card,
  .page-live-sports-streaming__container,
  .page-live-sports-streaming__feature-card,
  .page-live-sports-streaming__step-card,
  .page-live-sports-streaming__sport-card,
  .page-live-sports-streaming__promo-card,
  .page-live-sports-streaming__app-content,
  .page-live-sports-streaming__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live-sports-streaming__content-area {
    padding: 20px 15px;
  }

  .page-live-sports-streaming__section-title {
    font-size: 1.8rem;
  }

  .page-live-sports-streaming__card-title {
    font-size: 1.3rem;
  }

  .page-live-sports-streaming__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-live-sports-streaming__faq-toggle {
    font-size: 1.5rem;
  }

  .page-live-sports-streaming__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-live-sports-streaming__main-title {
    font-size: 2rem;
  }

  .page-live-sports-streaming__hero-description {
    font-size: 0.95rem;
  }

  .page-live-sports-streaming__btn-primary,
  .page-live-sports-streaming__btn-secondary,
  .page-live-sports-streaming__btn-small,
  .page-live-sports-streaming__btn-large {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .page-live-sports-streaming__section-title {
    font-size: 1.6rem;
  }

  .page-live-sports-streaming__card-title {
    font-size: 1.2rem;
  }
}