/* ============================================================
   Local cricket live streaming page — hero, sample broadcast,
   setup guide, destination choices, FAQs and download CTA.
   Loads after components.css.
   ============================================================ */

.stream-hero {
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-surface-alt), var(--color-surface));
  padding: var(--space-12) 0 var(--space-16);
}

.stream-hero__inner {
  display: grid;
  align-items: center;
  gap: var(--space-10);
}

.stream-hero__badge,
.sample-stream__eyebrow,
.stream-guide__eyebrow,
.stream-options__eyebrow,
.stream-download__eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stream-hero__badge {
  margin-bottom: var(--space-5);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary-muted);
  border-radius: var(--radius-pill);
}

.stream-hero__title {
  max-width: 13ch;
  margin-bottom: var(--space-5);
  color: var(--color-text);
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  font-weight: var(--font-weight-black);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.stream-hero__title span { color: var(--color-primary); }

.stream-hero__lead {
  max-width: 39rem;
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  line-height: 1.7;
}

.stream-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.stream-hero__secondary {
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: var(--font-weight-bold);
}

.stream-hero__secondary:hover { text-decoration: underline; }

.stream-hero__visual {
  position: relative;
  width: min(100%, 24rem);
  margin-inline: auto;
}

.stream-hero__visual::before {
  content: "";
  position: absolute;
  inset: 10% -8% 8%;
  background: var(--color-primary-muted);
  border-radius: var(--radius-pill);
}

.stream-hero__image {
  position: relative;
  width: 100%;
  height: auto;
  border: thin solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stream-proof {
  background: var(--color-surface-inverse);
  color: var(--color-on-dark);
  padding: var(--space-6) 0;
}

.stream-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  text-align: center;
}

.stream-proof__item {
  font-size: 0.92rem;
  font-weight: var(--font-weight-semibold);
}

.stream-proof__item::before {
  content: "\2713";
  margin-right: var(--space-2);
  color: var(--color-on-dark);
}

.sample-stream,
.stream-guide,
.stream-options,
.stream-benefits,
.stream-faq,
.stream-download {
  padding: var(--space-16) 0;
}

.sample-stream { background: var(--color-surface-inverse); }

.sample-stream__header {
  max-width: 47rem;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.sample-stream__eyebrow { color: var(--color-on-dark-muted); }

.sample-stream__title,
.stream-guide__title,
.stream-options__title,
.stream-benefits__title,
.stream-faq__title,
.stream-download__title {
  color: var(--color-text);
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: var(--font-weight-black);
  line-height: 1.12;
}

.sample-stream__title {
  margin: var(--space-3) 0 var(--space-4);
  color: var(--color-on-dark);
}

.sample-stream__lead {
  color: var(--color-on-dark-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.video-frame {
  max-width: 60rem;
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-surface);
  border: thin solid var(--color-text-muted);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.sample-stream__caption {
  max-width: 48rem;
  margin: var(--space-4) auto 0;
  color: var(--color-on-dark-muted);
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: center;
}

.sample-stream__caption a {
  color: var(--color-on-dark);
  font-weight: var(--font-weight-semibold);
  text-decoration: underline;
}

.stream-guide { background: var(--color-surface); }

.stream-guide__header,
.stream-options__header,
.stream-benefits__header,
.stream-faq__inner {
  max-width: 48rem;
  margin: 0 auto var(--space-10);
  text-align: center;
}

.stream-guide__title,
.stream-options__title {
  margin: var(--space-3) 0 var(--space-4);
}

.stream-guide__lead,
.stream-options__lead,
.stream-benefits__lead {
  color: var(--color-text-muted);
  line-height: 1.75;
}

.stream-guide__steps {
  display: grid;
  max-width: 56rem;
  margin-inline: auto;
  list-style: none;
  gap: var(--space-5);
}

.stream-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-surface-alt);
  border: thin solid var(--color-border);
  border-radius: var(--radius-md);
}

.stream-step__number {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: var(--radius-pill);
  font-weight: var(--font-weight-black);
}

.stream-step__title {
  margin-bottom: var(--space-2);
  color: var(--color-text);
  font-size: 1.06rem;
  font-weight: var(--font-weight-extrabold);
}

.stream-step__text {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.stream-guide__visual {
  display: grid;
  align-items: center;
  gap: var(--space-10);
  margin-top: var(--space-12);
}

.stream-guide__phone {
  width: min(100%, 22rem);
  margin-inline: auto;
}

.stream-guide__image {
  width: 100%;
  border: thin solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stream-guide__visual-copy h3 {
  margin-bottom: var(--space-4);
  color: var(--color-text);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: var(--font-weight-black);
  line-height: 1.18;
}

.stream-guide__visual-copy p {
  color: var(--color-text-muted);
  line-height: 1.75;
}

.stream-options { background: var(--color-surface-alt); }

.stream-options__grid,
.stream-benefits__grid {
  display: grid;
  gap: var(--space-5);
}

.stream-option,
.stream-benefit {
  padding: var(--space-8);
  background: var(--color-surface);
  border: thin solid var(--color-border);
  border-radius: var(--radius-md);
}

.stream-option__label {
  display: inline-block;
  margin-bottom: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: var(--color-primary-muted);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stream-option__title,
.stream-benefit__title {
  margin-bottom: var(--space-3);
  color: var(--color-text);
  font-size: 1.15rem;
  font-weight: var(--font-weight-extrabold);
}

.stream-option__text,
.stream-benefit__text {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.stream-benefits { background: var(--color-surface); }
.stream-benefits__title { margin-bottom: var(--space-4); }

.stream-benefit__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-4);
  background: var(--color-primary-muted);
  border-radius: var(--radius-pill);
  font-size: 1.35rem;
}

.stream-faq { background: var(--color-surface-alt); }
.stream-faq__inner { margin-bottom: 0; }
.stream-faq__title { margin-bottom: var(--space-10); }
.stream-faq__item { border-bottom: thin solid var(--color-border); }

.stream-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 3.5rem;
  padding: var(--space-4) 0;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  list-style: none;
  text-align: left;
}

.stream-faq__question::-webkit-details-marker { display: none; }

.stream-faq__question::after {
  content: "+";
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: var(--font-weight-regular);
}

.stream-faq__item[open] .stream-faq__question::after { content: "\2212"; }

.stream-faq__answer {
  padding-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: left;
}

.stream-download { background: var(--color-surface); }

.stream-download__panel {
  max-width: 54rem;
  margin-inline: auto;
  padding: var(--space-10) var(--space-6);
  background: var(--color-surface-alt);
  border: thin solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.stream-download__title { margin: var(--space-3) 0 var(--space-4); }

.stream-download__text {
  max-width: 40rem;
  margin: 0 auto var(--space-6);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .stream-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  }

  .stream-guide__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stream-guide__steps .stream-step:last-child { grid-column: 1 / -1; }

  .stream-guide__visual {
    grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1fr);
  }

  .stream-options__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stream-benefits__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .stream-hero { padding-top: var(--space-8); }
  .stream-hero__actions { align-items: stretch; flex-direction: column; }
  .stream-hero__actions .btn-primary { text-align: center; }
  .stream-hero__secondary { padding: var(--space-2); text-align: center; }
  .stream-step { grid-template-columns: 1fr; }
  .stream-download__panel .btn-primary { display: block; width: 100%; }
}
