.page-sports-live-streams {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

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

.page-sports-live-streams__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-sports-live-streams__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-live-streams__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports-live-streams__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-sports-live-streams__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-sports-live-streams__btn--secondary {
  background: none;
  color: #2AD16F; /* Button highlight */
  border: 2px solid #2AD16F;
}

.page-sports-live-streams__btn--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.2);
}

.page-sports-live-streams__btn--link {
  background: none;
  color: #57E38D; /* Glow */
  border: none;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-sports-live-streams__btn--link:hover {
  color: #F2FFF6;
  text-decoration: none;
}

.page-sports-live-streams__btn--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}

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

.page-sports-live-streams__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports-live-streams__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

/* Hero Section */
.page-sports-live-streams__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports-live-streams__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports-live-streams__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px;
}

.page-sports-live-streams__hero-content {
  position: relative; /* Changed from absolute to relative to be below image */
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust as needed to bring content closer to image */
  z-index: 1;
  background-color: rgba(8, 22, 15, 0.8); /* Background with opacity for readability */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-sports-live-streams__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-sports-live-streams__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Intro Section */
.page-sports-live-streams__intro-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

/* Popular Sports Section */
.page-sports-live-streams__popular-sports-section {
  padding: 60px 0;
}

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

.page-sports-live-streams__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-height: 200px;
}

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

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

.page-sports-live-streams__feature-item {
  text-align: center;
}

.page-sports-live-streams__feature-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px;
}

.page-sports-live-streams__feature-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports-live-streams__feature-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Guide Section */
.page-sports-live-streams__guide-section {
  padding: 60px 0;
}

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

.page-sports-live-streams__step-item {
  text-align: center;
  position: relative;
  padding-top: 70px;
}

.page-sports-live-streams__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  color: #F2FFF6;
  border: 3px solid #08160F;
  box-shadow: 0 0 0 5px #2E7A4E;
}

.page-sports-live-streams__step-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-sports-live-streams__step-text {
  font-size: 0.95em;
  color: #A7D9B8;
}

.page-sports-live-streams__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Promotions Section */
.page-sports-live-streams__promotions-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-sports-live-streams__promo-card {
  text-align: center;
}

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

.page-sports-live-streams__promo-text {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-sports-live-streams__faq-section {
  padding: 60px 0;
}

.page-sports-live-streams__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-sports-live-streams__faq-item {
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  background-color: #11271B; /* Card BG */
  padding: 0; /* Reset padding for details element */
}

.page-sports-live-streams__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* Hide default marker */
}

.page-sports-live-streams__faq-question::-webkit-details-marker {
  display: none;
}

.page-sports-live-streams__faq-question::marker {
  display: none;
}

.page-sports-live-streams__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-sports-live-streams__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-sports-live-streams__faq-item[open] .page-sports-live-streams__faq-toggle {
  transform: rotate(45deg);
}

.page-sports-live-streams__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

/* Final CTA Section */
.page-sports-live-streams__cta-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-sports-live-streams__cta-content {
  max-width: 800px;
}

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

/* General image styling */
.page-sports-live-streams img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Dark background color for sections */
.page-sports-live-streams__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}

/* --- Media Queries --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-sports-live-streams__container {
    padding: 15px;
  }

  .page-sports-live-streams__section-title {
    font-size: 2em;
  }

  .page-sports-live-streams__section-description {
    font-size: 1em;
  }

  .page-sports-live-streams__hero-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

  .page-sports-live-streams__hero-description {
    font-size: 1.1em;
  }

  .page-sports-live-streams__sports-grid,
  .page-sports-live-streams__features-grid,
  .page-sports-live-streams__guide-steps,
  .page-sports-live-streams__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-sports-live-streams__feature-item {
    padding: 20px;
  }

  .page-sports-live-streams__card-image,
  .page-sports-live-streams__feature-icon {
    height: 180px;
  }

  .page-sports-live-streams__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-sports-live-streams__faq-answer {
    padding: 0 20px 18px 20px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-sports-live-streams {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports-live-streams__container,
  .page-sports-live-streams__hero-content,
  .page-sports-live-streams__intro-section .page-sports-live-streams__container,
  .page-sports-live-streams__popular-sports-section .page-sports-live-streams__container,
  .page-sports-live-streams__features-section .page-sports-live-streams__container,
  .page-sports-live-streams__guide-section .page-sports-live-streams__container,
  .page-sports-live-streams__promotions-section .page-sports-live-streams__container,
  .page-sports-live-streams__faq-section .page-sports-live-streams__container,
  .page-sports-live-streams__cta-section .page-sports-live-streams__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-sports-live-streams__hero-section {
    padding-top: 10px !important; /* Small top padding, assuming body handles header offset */
    padding-bottom: 30px;
  }

  .page-sports-live-streams__hero-image-wrapper {
    max-height: 300px;
  }

  .page-sports-live-streams__hero-image {
    min-height: 200px !important;
  }

  .page-sports-live-streams__hero-content {
    margin-top: -60px; /* Adjust for mobile */
    padding: 25px 15px;
  }

  .page-sports-live-streams__hero-title {
    font-size: clamp(1.8em, 8vw, 2.5em) !important;
    margin-bottom: 10px;
  }

  .page-sports-live-streams__hero-description {
    font-size: 1em !important;
    margin-bottom: 20px;
  }

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

  .page-sports-live-streams__btn,
  .page-sports-live-streams__cta-button,
  .page-sports-live-streams__btn-primary,
  .page-sports-live-streams__btn-secondary,
  .page-sports-live-streams a[class*="button"],
  .page-sports-live-streams 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-live-streams__hero-buttons,
  .page-sports-live-streams__cta-buttons,
  .page-sports-live-streams__button-group,
  .page-sports-live-streams__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    flex-direction: column !important;
  }

  .page-sports-live-streams__section-title {
    font-size: 1.8em !important;
    margin-bottom: 15px;
  }

  .page-sports-live-streams__section-description {
    font-size: 0.95em !important;
    margin-bottom: 25px;
  }

  .page-sports-live-streams__sports-grid,
  .page-sports-live-streams__features-grid,
  .page-sports-live-streams__guide-steps,
  .page-sports-live-streams__promo-grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .page-sports-live-streams__card-image,
  .page-sports-live-streams__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
  }

  .page-sports-live-streams__card,
  .page-sports-live-streams__faq-item {
    padding: 20px !important;
  }

  .page-sports-live-streams__faq-question {
    font-size: 1em !important;
    padding: 15px 0 !important; /* Adjust padding for summary */
  }

  .page-sports-live-streams__faq-answer {
    padding: 0 0 15px 0 !important;
  }

  .page-sports-live-streams__promo-title,
  .page-sports-live-streams__feature-title,
  .page-sports-live-streams__step-title {
    font-size: 1.3em !important;
  }

  .page-sports-live-streams__cta-wrapper {
    margin-top: 30px;
  }

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

  .page-sports-live-streams__section,
  .page-sports-live-streams__card,
  .page-sports-live-streams__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}