.page-live-scores-streaming-how-to-watch {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark sections */
  background-color: #1A2E4C; /* Main background color */
}

.page-live-scores-streaming-how-to-watch__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live-scores-streaming-how-to-watch__hero {
  background: linear-gradient(135deg, #1A2E4C 0%, #3a5c88 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live-scores-streaming-how-to-watch__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-live-scores-streaming-how-to-watch__hero > div {
  position: relative;
  z-index: 2;
}

.page-live-scores-streaming-how-to-watch__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live-scores-streaming-how-to-watch__subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-scores-streaming-how-to-watch__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
  object-fit: cover;
}

.page-live-scores-streaming-how-to-watch__section {
  padding: 60px 0;
}

.page-live-scores-streaming-how-to-watch__section--dark {
  background-color: #1A2E4C;
  color: #FFFFFF;
}

.page-live-scores-streaming-how-to-watch__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live-scores-streaming-how-to-watch__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live-scores-streaming-how-to-watch__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  text-align: justify;
}

.page-live-scores-streaming-how-to-watch__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-live-scores-streaming-how-to-watch__list li {
  background-color: #2a416a; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.05em;
}

.page-live-scores-streaming-how-to-watch__list li strong {
  color: #FFD700;
  margin-right: 10px;
}

.page-live-scores-streaming-how-to-watch__list--numbered {
  list-style-type: decimal;
  padding-left: 30px;
}

.page-live-scores-streaming-how-to-watch__list--numbered li {
  background-color: #2a416a;
  color: #E0E0E0;
}

.page-live-scores-streaming-how-to-watch__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-scores-streaming-how-to-watch__step {
  background-color: #2a416a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live-scores-streaming-how-to-watch__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-scores-streaming-how-to-watch__step-description {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live-scores-streaming-how-to-watch__step-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-live-scores-streaming-how-to-watch__requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-live-scores-streaming-how-to-watch__requirement-item {
  background-color: #2a416a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live-scores-streaming-how-to-watch__requirement-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-scores-streaming-how-to-watch__requirement-item .page-live-scores-streaming-how-to-watch__list {
  margin-bottom: 0;
}

.page-live-scores-streaming-how-to-watch__requirement-item .page-live-scores-streaming-how-to-watch__list li {
  background-color: transparent;
  box-shadow: none;
  padding: 5px 0;
  margin-bottom: 5px;
  font-size: 0.95em;
}

.page-live-scores-streaming-how-to-watch__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin: 40px auto 0;
  display: block;
  object-fit: cover;
}

.page-live-scores-streaming-how-to-watch__faq {
  margin-top: 40px;
}

.page-live-scores-streaming-how-to-watch__faq-item {
  background-color: #2a416a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-scores-streaming-how-to-watch__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live-scores-streaming-how-to-watch__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-live-scores-streaming-how-to-watch__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-live-scores-streaming-how-to-watch__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  padding: 0 20px 20px;
  margin: 0;
  display: none; /* Hidden by default */
}

.page-live-scores-streaming-how-to-watch__faq-answer.active {
  display: block;
}

.page-live-scores-streaming-how-to-watch__section--cta {
  text-align: center;
  background: linear-gradient(90deg, #1A2E4C 0%, #000000 100%); /* Darker gradient for CTA */
  padding: 80px 0;
}

.page-live-scores-streaming-how-to-watch__cta-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin: 40px auto;
  display: block;
  object-fit: cover;
}

.page-live-scores-streaming-how-to-watch__cta-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live-scores-streaming-how-to-watch__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-live-scores-streaming-how-to-watch__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E4C; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-live-scores-streaming-how-to-watch__button--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-live-scores-streaming-how-to-watch__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on transparent */
  border: 2px solid #FFD700;
}

.page-live-scores-streaming-how-to-watch__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E4C;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-live-scores-streaming-how-to-watch__link-inline {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-live-scores-streaming-how-to-watch__link-inline:hover {
  text-decoration: underline;
}

.page-live-scores-streaming-how-to-watch .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-live-scores-streaming-how-to-watch__title {
    font-size: 2.8em;
  }

  .page-live-scores-streaming-how-to-watch__subtitle {
    font-size: 1.1em;
  }

  .page-live-scores-streaming-how-to-watch__section-title {
    font-size: 2em;
  }

  .page-live-scores-streaming-how-to-watch__text, .page-live-scores-streaming-how-to-watch__list li {
    font-size: 1em;
  }

  .page-live-scores-streaming-how-to-watch__step-title {
    font-size: 1.5em;
  }

  .page-live-scores-streaming-how-to-watch__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-live-scores-streaming-how-to-watch__hero {
    padding: 60px 0;
  }

  .page-live-scores-streaming-how-to-watch__title {
    font-size: 2.2em;
  }

  .page-live-scores-streaming-how-to-watch__subtitle {
    font-size: 1em;
  }

  .page-live-scores-streaming-how-to-watch__section {
    padding: 40px 0;
  }

  .page-live-scores-streaming-how-to-watch__section-title {
    font-size: 1.8em;
  }

  .page-live-scores-streaming-how-to-watch__step-by-step, .page-live-scores-streaming-how-to-watch__requirements-grid {
    grid-template-columns: 1fr;
  }

  .page-live-scores-streaming-how-to-watch__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-live-scores-streaming-how-to-watch__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-live-scores-streaming-how-to-watch__title {
    font-size: 1.8em;
  }

  .page-live-scores-streaming-how-to-watch__subtitle {
    font-size: 0.9em;
  }

  .page-live-scores-streaming-how-to-watch__section-title {
    font-size: 1.5em;
  }

  .page-live-scores-streaming-how-to-watch__list li,
  .page-live-scores-streaming-how-to-watch__text,
  .page-live-scores-streaming-how-to-watch__step-description,
  .page-live-scores-streaming-how-to-watch__faq-answer {
    font-size: 0.9em;
  }

  .page-live-scores-streaming-how-to-watch__step-title {
    font-size: 1.3em;
  }

  .page-live-scores-streaming-how-to-watch__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-live-scores-streaming-how-to-watch__faq-answer {
    padding: 0 15px 15px;
  }
}