/* ============================================
   GoFan Landing — Variation 3: STADIUM
   Esportivo, intenso, vermelho/preto, geomtric
   ============================================ */

.st-root {
  --st-accent: #ee2a3c;
  --st-bg: #0a0a0c;
  --st-bg-2: #131318;
  --st-bg-3: #1c1c24;
  --st-text: #ffffff;
  --st-soft: #a8acb6;
  --st-muted: #5a5e68;
  --st-warn: #ffb44c;
  --st-green: #22e0a0;

  background: var(--st-bg);
  color: var(--st-text);
  font-family: "Manrope", -apple-system, sans-serif;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.st-root .phone-body {
  background: linear-gradient(145deg, #2a1414, #0a0a0c);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(238,42,60,0.18);
}

.st-stripes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 28px,
    rgba(238,42,60,0.025) 28px,
    rgba(238,42,60,0.025) 56px
  );
  z-index: 0;
}

/* NAV */
.st-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 56px;
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--st-accent);
}

.st-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.st-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--st-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(238,42,60,0.5);
}
.st-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--st-text);
}
.st-logo-text strong { color: var(--st-accent); }

.st-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--st-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-radius: 6px;
  border: 2px solid var(--st-accent);
  box-shadow: 0 6px 20px rgba(238,42,60,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.st-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(238,42,60,0.55);
}

/* HERO */
.st-hero {
  position: relative;
  z-index: 1;
  padding: 80px 56px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.st-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.st-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(238,42,60,0.12);
  border: 1px solid var(--st-accent);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--st-accent);
  margin-bottom: 24px;
}

.st-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--st-accent);
  box-shadow: 0 0 0 4px rgba(238,42,60,0.25);
  animation: stPulse 1.4s ease-in-out infinite;
}
@keyframes stPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238,42,60,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(238,42,60,0); }
}

.st-h1 {
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.st-h1-line {
  position: relative;
}

.st-h1-line:nth-child(1) { transform: skewX(-3deg); }
.st-h1-line:nth-child(3) { transform: skewX(-3deg); padding-left: 0.3em; }

.st-h1-accent {
  color: var(--st-accent);
  -webkit-text-stroke: 2px var(--st-accent);
  text-shadow: 6px 6px 0 rgba(238,42,60,0.15);
}

.st-lead {
  font-size: 17px;
  line-height: 1.5;
  color: var(--st-soft);
  margin: 0 0 36px;
  max-width: 520px;
  text-wrap: pretty;
}

.st-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.st-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--st-accent), #c9203a);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 8px;
  border: 2px solid #fff;
  box-shadow:
    6px 6px 0 #000,
    0 16px 40px rgba(238,42,60,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.st-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000, 0 22px 50px rgba(238,42,60,0.55);
}
.st-cta div {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.st-cta small {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
  opacity: 0.8;
}
.st-cta strong {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 900;
}

.st-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--st-soft);
}
.st-rating strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--st-text);
  letter-spacing: -0.02em;
}
.st-rating-stars { display: inline-flex; gap: 2px; color: var(--st-warn); }

/* HERO RIGHT */
.st-hero-right {
  position: relative;
  height: 580px;
}

.st-scoreboard {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: #fff;
  color: #0a0a0c;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 12px 12px 0 var(--st-accent), 0 24px 50px rgba(0,0,0,0.5);
  transform: rotate(-2deg);
  animation: stWobble 8s ease-in-out infinite;
}
@keyframes stWobble {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-4px); }
}

.st-sb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #5a5e68;
  text-transform: uppercase;
}
.st-sb-head svg { color: var(--st-accent); }

.st-sb-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  background: var(--st-accent);
  color: #fff;
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.st-sb-live .st-live-pulse { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }

.st-sb-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
}

.st-sb-team {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  color: #0a0a0c;
}
.st-sb-team-r { justify-content: flex-end; }

.st-sb-crest {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.st-sb-score {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.st-sb-score strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #0a0a0c;
}
.st-sb-score span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--st-accent);
}

.st-sb-cta {
  width: 100%;
  padding: 10px;
  background: #0a0a0c;
  color: #fff;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.st-phone-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-phone-1 {
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 2;
  transform: rotate(4deg);
}
.st-phone-2 {
  position: absolute;
  bottom: 8%;
  left: 0;
  z-index: 1;
  transform: rotate(-6deg);
  filter: brightness(0.8);
}

/* TICKER */
.st-ticker {
  position: relative;
  z-index: 1;
  background: var(--st-accent);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.st-ticker-track {
  display: flex;
  gap: 40px;
  animation: stTicker 40s linear infinite;
  white-space: nowrap;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.st-ticker-item::after {
  content: " ◆";
  margin-left: 40px;
  color: rgba(255,255,255,0.5);
}

@keyframes stTicker {
  to { transform: translateX(-50%); }
}

/* STATS */
.st-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.st-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.st-stat:last-child { border-right: 0; }

.st-stat strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--st-text);
}
.st-stat span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-soft);
}

/* SECTIONS */
.st-section {
  position: relative;
  z-index: 1;
  padding: 90px 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.st-section-head {
  margin-bottom: 50px;
}

.st-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--st-accent);
  display: block;
  margin-bottom: 14px;
}

.st-h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.st-h2-strike {
  position: relative;
  color: var(--st-muted);
}
.st-h2-strike::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 50%;
  height: 6px;
  background: var(--st-accent);
  transform: rotate(-3deg);
}

/* FEATURES */
.st-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.st-feature {
  background: var(--st-bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.st-feature:hover {
  border-color: var(--st-accent);
  transform: translateY(-4px);
}

.st-feat-big {
  grid-column: span 2;
  background:
    radial-gradient(circle at 100% 0%, rgba(238,42,60,0.18), transparent 50%),
    var(--st-bg-2);
}

.st-feat-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: "Archivo Black", sans-serif;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.st-feature svg { color: var(--st-accent); margin-bottom: 16px; }

.st-feature h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.st-feature p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--st-soft);
  margin: 0;
}

.st-feat-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.st-feat-channels span {
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* CHANNELS GRID */
.st-channels-section {
  background: linear-gradient(180deg, var(--st-bg), var(--st-bg-2));
}

.st-channels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.st-channel {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--cc, var(--st-accent));
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.st-channel:hover { transform: scale(1.05); }

.st-channel-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.04em;
}

.st-channel-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4px;
}

.st-channel-live {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  background: rgba(0,0,0,0.5);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.st-channel-live .st-live-pulse { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); width: 5px; height: 5px; }

.st-channel-vip {
  padding: 3px 6px;
  background: var(--st-warn);
  color: #1a0a08;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.st-channel-name {
  position: relative;
  z-index: 1;
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* MOVIES */
.st-movies {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.st-movie {
  position: relative;
  cursor: pointer;
}

.st-movie-rank {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 36px;
  height: 36px;
  background: var(--st-accent);
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(238,42,60,0.5);
}

.st-movie-poster {
  aspect-ratio: 2/3;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}
.st-movie:hover .st-movie-poster { transform: translateY(-4px); }

.st-movie-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.st-movie-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
}
.st-movie-poster span {
  position: relative;
  z-index: 1;
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.st-movie-info { padding-top: 10px; }
.st-movie-info strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.st-movie-info span {
  display: block;
  font-size: 11px;
  color: var(--st-muted);
  margin-top: 2px;
}

/* SCREENS */
.st-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.st-screen-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: var(--st-bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
}

.st-screen-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  color: var(--st-accent);
  letter-spacing: 0.1em;
}

.st-screen-block h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}

.st-screen-block p {
  font-size: 14px;
  color: var(--st-soft);
  margin: 0;
  max-width: 260px;
  line-height: 1.5;
}

/* VIDEO */
.st-video-section { text-align: center; }
.st-video {
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid var(--st-accent);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.st-video iframe { width: 100%; height: 100%; border: 0; }

/* TESTIMONIALS */
.st-tests {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.st-test {
  background: var(--st-bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--st-accent);
  border-radius: 8px;
  padding: 24px;
}

.st-test-stars {
  display: flex;
  gap: 2px;
  color: var(--st-warn);
  margin-bottom: 12px;
}

.st-test p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 18px;
  color: var(--st-text);
}

.st-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.st-test-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
}
.st-test-author strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}
.st-test-author span {
  font-size: 11px;
  color: var(--st-muted);
}

/* FAQ */
.st-faq { display: flex; flex-direction: column; gap: 8px; }

.st-faq-row {
  background: var(--st-bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.st-faq-row.open { border-color: var(--st-accent); }

.st-faq-row button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.st-faq-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  color: var(--st-accent);
  letter-spacing: 0.05em;
}

.st-faq-q {
  flex: 1;
  font-size: 16px;
  font-weight: 800;
}

.st-faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--st-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.st-faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--st-soft);
  line-height: 1.6;
  padding: 0 22px 0 64px;
  transition: max-height 0.3s, padding 0.3s;
}
.st-faq-row.open .st-faq-a {
  max-height: 200px;
  padding: 0 22px 22px 64px;
}

/* FINAL */
.st-final {
  position: relative;
  z-index: 1;
  padding: 120px 56px;
  text-align: center;
  overflow: hidden;
  margin: 60px auto 0;
  max-width: 1180px;
}

.st-final-bg {
  position: absolute;
  inset: 0;
  background: var(--st-accent);
  border-radius: 24px;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 40%),
    repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(0,0,0,0.06) 40px, rgba(0,0,0,0.06) 80px);
}

.st-final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.st-final-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 900;
  color: rgba(255,255,255,0.85);
}

.st-final-h {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  text-transform: uppercase;
}
.st-final-h-accent {
  -webkit-text-stroke: 3px #fff;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.st-final-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.st-cta-big {
  background: #fff;
  color: var(--st-accent);
  border-color: #0a0a0c;
  padding: 22px 38px;
  font-size: 22px;
}
.st-cta-big strong { font-size: 22px; color: var(--st-accent); }
.st-cta-big small { color: var(--st-accent); opacity: 0.85; }
.st-cta-big:hover {
  background: #0a0a0c;
  color: #fff;
}
.st-cta-big:hover strong, .st-cta-big:hover small { color: #fff; }

/* FOOTER */
.st-footer {
  padding: 32px 56px 50px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
.st-footer .st-logo { justify-content: center; margin-bottom: 10px; display: flex; }
.st-footer p {
  font-size: 12px;
  color: var(--st-muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .st-nav { padding: 12px 20px; }
  .st-hero { padding: 40px 20px 40px; }
  .st-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .st-hero-right { height: 540px; }
  .st-section { padding: 60px 20px; }
  .st-features {
    grid-template-columns: 1fr;
  }
  .st-feat-big { grid-column: span 1; }
  .st-channels-grid { grid-template-columns: repeat(3, 1fr); }
  .st-movies { grid-template-columns: repeat(3, 1fr); }
  .st-screens-grid { grid-template-columns: 1fr; }
  .st-tests { grid-template-columns: 1fr; }
  .st-stats { grid-template-columns: repeat(2, 1fr); }
  .st-stat:nth-child(2) { border-right: 0; }
  .st-stat:nth-child(1), .st-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .st-final { padding: 70px 24px; margin: 40px 16px 0; }
}

@media (max-width: 540px) {
  .st-channels-grid { grid-template-columns: repeat(2, 1fr); }
  .st-movies { grid-template-columns: repeat(2, 1fr); }
  .st-h1 { font-size: 56px; }
  .st-h2 { font-size: 30px; }
  .st-stat strong { font-size: 32px; }
}
