﻿/* ==========================================================================
   STREAMMAX IPTV — WORLD CLASS DESIGN SYSTEM
   1. Base: Deep Obsidian Charcoal (#080b10 / #0c1017)
   2. Surface: Sleek Slate Glassmorphism (rgba(18, 25, 38, 0.75))
   3. Accent: Electric Neon Mint (#00f2a9 / #00df9a) & Warm Gold for ratings
   ========================================================================== */

:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f1f5f9;

  /* Palette */
  --bg: #080b10;
  --bg-deep: #05070a;
  --bg-subtle: #0d121b;
  --bg-card: #121926;

  --surface: rgba(18, 25, 38, 0.72);
  --surface-solid: #121a28;
  --surface-strong: #172133;
  --surface-soft: rgba(22, 32, 48, 0.45);
  --surface-card: rgba(18, 25, 38, 0.85);
  --surface-hover: rgba(26, 37, 56, 0.95);

  --border: rgba(148, 163, 184, 0.12);
  --border-light: rgba(148, 163, 184, 0.22);
  --border-accent: rgba(0, 242, 169, 0.35);

  --text: #f8fafc;
  --text-dim: #cbd5e1;
  --muted: #8e9db2;

  --accent: #00f2a9;
  --accent-glow: rgba(0, 242, 169, 0.35);
  --accent-soft: rgba(0, 242, 169, 0.12);
  --accent-dark: #00c788;
  --accent-light: #48fcd0;

  --primary: var(--accent);
  --primary-soft: var(--accent-soft);
  --gold: #fbbf24;
  --gold-soft: rgba(251, 191, 36, 0.15);
  --danger: #ff5569;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.65);
  --shadow-accent: 0 10px 35px rgba(0, 242, 169, 0.25);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 4.5rem;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video {
  max-width: 100%;
  display: block;
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* --- Top Announcement Bar --- */
.top-announcement {
  background: linear-gradient(90deg, #09121d 0%, #0c1c2a 50%, #09121d 100%);
  border-bottom: 1px solid rgba(0, 242, 169, 0.18);
  padding: 0.55rem 0;
  margin-top: 4.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  position: relative;
  z-index: 101;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  text-align: center;
  padding: 15px;

}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.announcement-text strong {
  color: var(--text);
}

.announcement-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.announcement-link:hover {
  color: var(--accent-light);
  transform: translateX(2px);
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: var(--text);
}

.brand-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.7rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #051410;
  border-radius: 11px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0, 242, 169, 0.35);
}

.brand span {
  color: var(--accent);
  margin-left: 2px;
}

.site-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.4rem 0;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--text);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 999px;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0.4rem 0;
  white-space: nowrap;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary i {
  margin-left: 0.3rem;
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] summary i {
  transform: rotate(180deg);
}

.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
  color: var(--text);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  min-width: 11rem;
  padding: 0.45rem;
  display: grid;
  gap: 0.2rem;
  transform: translateX(-50%);
  background: rgba(8, 12, 18, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 40;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.button-header-trial {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.25s ease;
}

.button-header-trial:hover {
  background: var(--accent);
  color: #051410;
  box-shadow: 0 4px 16px rgba(0, 242, 169, 0.35);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.45rem;
  place-items: center;
}

.nav-toggle .bar {
  width: 1.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

/* --- Typography & Headings --- */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 4.2rem);
  line-height: 1.12;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.85rem, 2.5vw + 1rem, 2.75rem);
  line-height: 1.22;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

h4 {
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.eyebrow i {
  font-size: 0.85rem;
}

/* --- Buttons --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #051410;
  box-shadow: 0 8px 24px rgba(0, 242, 169, 0.28);
}

.hero-actions .button-primary,
.hero-actions .button-primary:hover {
  color: #051410;
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 242, 169, 0.42);
  color: #04100c;
}

.button-secondary {
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--border-light);
}

.hero-actions .button-secondary,
.hero-actions .button-secondary:hover,
.hero-actions .button-outline,
.hero-actions .button-outline:hover {
  color: #ffffff;
}

.button-secondary:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.button-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.button-outline:hover {
  background: var(--surface-soft);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.button-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #f5fff9;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.hero-actions .button-whatsapp,
.hero-actions .button-whatsapp:hover {
  color: #ffffff;
}

.button-whatsapp:hover {
  background: linear-gradient(135deg, #3ae07a 0%, #19a871 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.button-large {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.button-full {
  width: 100%;
}

.button-glow {
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 8px 24px rgba(0, 242, 169, 0.3);
  }

  100% {
    box-shadow: 0 12px 36px rgba(0, 242, 169, 0.55);
  }
}

/* --- Hero Section --- */
.hero,
.page-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
}

.hero-background,
.page-hero-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 242, 169, 0.12) 0%, transparent 65%), var(--bg);
  overflow: hidden;
}

.hero-background video,
.page-hero-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.2) contrast(1.1);
  z-index: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  pointer-events: none;
}

.desktop-video {
  display: none;
}

.mobile-video {
  display: block;
}

@media (max-width: 768px) {

  .hero-background video,
  .page-hero-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
}

@media (min-width: 768px) {
  .desktop-video {
    display: block;
  }

  .mobile-video {
    display: none;
  }
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 16, 0.72) 0%, rgba(8, 11, 16, 0.92) 80%, var(--bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  max-width: 720px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem;
  background: rgba(0, 242, 169, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.35rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.hero-text {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 1.35rem 0 2.2rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-panel {
  position: relative;
  background: rgba(15, 22, 32, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  padding: 1.5rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin: 12px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(0, 242, 169, 0.1), rgba(255, 255, 255, 0.02), rgba(0, 242, 169, 0.02));
  pointer-events: none;
}

.panel-badge,
.hero-panel>* {
  position: relative;
  z-index: 1;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 242, 169, 0.08);
  border: 1px solid rgba(0, 242, 169, 0.2);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.panel-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.panel-title {
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.panel-price span {
  font-size: 0.85rem;
  color: var(--muted);
}

.panel-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.panel-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.panel-list li i {
  color: var(--accent);
  font-size: 0.72rem;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 169, 0.1);
  border-radius: 50%;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.rating-label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-footer strong {
  font-size: 1.45rem;
  color: var(--text);
}

.stars {
  color: #fbbf24;
  letter-spacing: 0.15em;
  font-size: 1rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.85rem;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  margin-left: 1.75rem;
}

.hero-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-highlight-item i {
  color: var(--accent);
  font-size: 0.95rem;
}

/* --- Stats Section & Ribbon --- */
.stats-section {
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0b0f16 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}

.stat-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.stat-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  font-size: 1.3rem;
  color: var(--accent);
}

.stat-number-wrap {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.1rem, 2.8vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.stat-card h3 {
  font-size: 1.05rem;
  margin: 0.4rem 0 0.25rem;
}

.stat-subtext {
  font-size: 0.84rem;
  color: var(--muted);
}

.device-ribbon {
  margin-top: 2.25rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.device-ribbon-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.device-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.device-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-dim);
  transition: all 0.3s ease;
  cursor: default;
}

.device-badge:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 242, 169, 0.55);
  color: var(--text, #f8fafc);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(0, 242, 169, 0.08);
}

.device-badge i {
  color: var(--accent);
  flex: 0 0 auto;
  font-size: 0.95em;
  transition: transform 0.3s ease;
}

.device-badge:hover i {
  transform: scale(1.12);
}

@media (prefers-reduced-motion: reduce) {

  .device-badge,
  .device-badge i {
    transition: none;
  }

  .device-badge:hover {
    transform: none;
  }
}

/* --- Football page content --- */
.football-hero {
  position: relative;
  isolation: isolate;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem) clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
}

.football-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 20%, rgba(0, 242, 169, 0.14), transparent 62%), linear-gradient(180deg, #0c1822 0%, var(--bg) 100%);
  content: '';
}

.football-hero h1 {
  max-width: 18ch;
  margin: 0 auto 1.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.football-hero h1,
.football-hero p {
  text-align: center;
}

.football-hero h1 span,
.wc2030-card h2 span {
  color: var(--accent);
}

.football-hero p {
  max-width: 700px;
  margin: 0 auto 2.25rem;
  color: var(--muted);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.12rem);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.football-hero .btn,
.cta-banner .btn,
.wc2030-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.25rem);
  border-radius: 12px;
  background: linear-gradient(135deg, #34d399 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 242, 169, 0.35), 0 6px 18px -6px rgba(0, 0, 0, 0.6);
}

.football-hero__preview {
  margin: 1.5rem auto 0;
}

.schedule-section,
.features-section,
.faq-section-sports,
.leagues-section,
.wc2030-section,
.testimonials-section,
.cta-banner {
  width: min(100%, 1100px);
  margin: 2.5rem auto;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: clamp(1.15rem, 1vw + 0.85rem, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
}

.section-title svg {
  flex: 0 0 auto;
}

.table-container {
  overflow-x: auto;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table-container th,
.table-container td {
  padding: 1rem clamp(0.75rem, 2.5vw, 1.5rem);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.table-container td:nth-child(2) {
  white-space: normal;
  min-width: 180px;
}

.table-container th {
  color: var(--muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-container tr:last-child td {
  border-bottom: none;
}

.badge-live {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.features-grid,
.leagues-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card-sports,
.league-card,
.testimonial-card {
  min-width: 0;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.feature-card-sports,
.league-card,
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-card-sports h3,
.league-card h3 {
  font-size: 1.1rem;
}

.feature-card-sports p,
.league-card p,
.testimonial-card blockquote {
  color: var(--text-dim);
  line-height: 1.65;
}

.feature-icon-sports {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

.league-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.league-card-head h3 {
  min-width: 0;
  overflow-wrap: anywhere;
}

.league-quality {
  flex: 0 0 auto;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
}

.league-broadcasters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.league-broadcasters span {
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  font-size: 0.75rem;
}

.faq-list-sports {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.faq-item-sports {
  border-bottom: 1px solid var(--border);
}

.faq-item-sports:last-child {
  border-bottom: none;
}

.faq-trigger-sports {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 3vw, 1.75rem);
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-trigger-sports>span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-trigger-sports svg {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.faq-trigger-sports[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer-sports {
  display: none;
  padding: 0 clamp(1rem, 3vw, 1.75rem) 1.4rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.faq-item-sports.open .faq-answer-sports {
  display: block;
}

.wc2030-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 242, 169, 0.12), var(--surface-solid) 55%);
}

.wc2030-content {
  min-width: 0;
}

.wc2030-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wc2030-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 3vw + 0.5rem, 2rem);
  overflow-wrap: anywhere;
}

.wc2030-msg {
  max-width: 480px;
  margin-bottom: 1.75rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.wc2030-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.wc2030-countdown div {
  width: 100%;
  min-width: 0;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.wc2030-countdown strong {
  display: block;
  color: var(--text);
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
}

.wc2030-countdown small {
  color: var(--muted);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.wc2030-visual {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.wc2030-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  BORDER-RADIUS: 12PX;
}

.testimonial-stars {
  color: var(--accent);
  letter-spacing: 0.15em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 700;
}

.cta-banner {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface-solid));
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2vw + 0.75rem, 2rem);
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

@media (min-width: 641px) {

  .features-grid,
  .leagues-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 901px) {
  .wc2030-card {
    grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 1fr);
  }
}

@media (min-width: 1025px) {
  .football-hero {
    margin-top: 4rem;
  }

  .features-grid,
  .leagues-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .football-hero {
    padding-top: 3.75rem;
    padding-bottom: 3rem;
  }

  .football-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .football-hero .btn,
  .cta-banner .btn,
  .wc2030-card .btn {
    width: min(100%, 24rem);
  }

  .wc2030-card {
    gap: 1.5rem;
  }

  .wc2030-countdown {
    gap: 0.5rem;
  }

  .wc2030-countdown div {
    padding: 0.65rem 0.25rem;
  }

  .league-card-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .feature-card-sports,
  .league-card,
  .testimonial-card {
    padding: 1.4rem 1.2rem;
  }

  .table-container th,
  .table-container td {
    padding: 0.8rem 0.75rem;
  }
}

@media (max-width: 640px) {

  .football-page .leagues-section,
  .football-page .features-section,
  .football-page .testimonials-section,
  .football-page .faq-section-sports {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .football-page .features-grid,
  .football-page .leagues-grid,
  .football-page .testimonials-grid {
    gap: 1rem;
  }

  .football-page .feature-card-sports,
  .football-page .league-card,
  .football-page .testimonial-card {
    padding: 1.25rem;
  }

  .football-page .site-footer {
    margin-top: 2rem;
  }

  .football-page .footer-grid {
    gap: 1.5rem;
  }

  .football-page .footer-bottom {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* --- Section Headings & General Sections --- */
.section,
.features-section,
.testimonials-section,
.plans-section,
.reseller-section,
.faq-section,
.newsletter-section {
  padding: 5.5rem 0;
  position: relative;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.85rem;
}

.roi-section-heading {
  margin-bottom: 1.5rem;
}

.faq-reseller-link {
  color: var(--accent);
  text-decoration: underline;
}

/* --- Why StreamMax: Rich Interactive Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: 0 16px 40px rgba(0, 242, 169, 0.16);
}

.feature-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 242, 169, 0.16) 0%, rgba(0, 242, 169, 0.04) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 18px;
  font-size: 1.45rem;
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(0, 242, 169, 0.15);
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.feature-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
}

.feature-card p {
  color: #e2e8f0;
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

.feature-points {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.5rem;
}

.feature-points li {
  font-size: 0.86rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-points li i {
  color: var(--accent);
  font-size: 0.8rem;
  flex: 0 0 auto;
  width: 1em;
  text-align: center;
}

/* --- 24-Hour Free Trial Callout Banner --- */
.trial-banner-section {
  padding: 2rem 0 3rem;
}

.trial-banner-card {
  background: linear-gradient(135deg, rgba(16, 24, 38, 0.95) 0%, rgba(9, 24, 28, 0.95) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 242, 169, 0.12);
  position: relative;
  overflow: hidden;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.trial-banner-content h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.trial-banner-content p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0 0 1.5rem;
}

.trial-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.trial-perks span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trial-perks i {
  color: var(--accent);
}

.trial-banner-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.trial-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* --- Testimonials / Social Proof --- */
.testimonials-section .slider-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1.5rem;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.testimonial-rating {
  color: var(--gold);
  font-size: 0.95rem;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-meta strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

.testimonial-country {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Continuous review marquee: duplicated items meet at the midpoint. */
.wa-reviews-track {
  animation: waReviewsScroll 64s linear infinite;
}

@keyframes waReviewsScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-reviews-track {
    animation: none;
  }
}

.slider-button {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 25, 38, 0.85);
  border: 1px solid var(--border-light);
  color: var(--text);
  z-index: 5;
  transition: all 0.2s ease;
}

.slider-button:hover {
  background: var(--accent);
  color: #051410;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.slider-button--prev {
  left: -1.25rem;
}

.slider-button--next {
  right: -1.25rem;
}

.trust-metric-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}

.trust-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.stars-gold {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.trust-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.trust-metric-item strong {
  font-size: 0.98rem;
  color: var(--text);
}

.trust-metric-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* --- Pricing Plans Section --- */
.plans-section {
  scroll-margin-top: 5rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

#reseller-pricing .plan-grid {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#reseller-pricing .plan-card {
  height: 100%;
  min-height: 34.625rem;
}

#reseller-pricing .plan-features-list {
  flex: 1;
  align-content: start;
}

#reseller-pricing .plan-features-list li {
  align-items: flex-start;
}

#reseller-pricing .plan-features-list li i {
  margin-top: 0.2rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.plan-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
}

.plan-card--featured {
  background: linear-gradient(180deg, rgba(14, 25, 42, 0.95) 0%, rgba(10, 18, 30, 0.98) 100%);
  border: 1.5px solid var(--accent);
  box-shadow: 0 25px 70px rgba(0, 242, 169, 0.18);
  transform: translateY(-8px);
}

.plan-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 85px rgba(0, 242, 169, 0.28);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #051410;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 242, 169, 0.4);
}

.plan-label {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.plan-header h3 {
  font-size: 1.28rem;
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1rem;
  min-height: 2.7rem;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.plan-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.plan-price span {
  font-size: 1.1rem;
  vertical-align: super;
  color: var(--accent);
}

.plan-period {
  font-size: 0.82rem;
  color: var(--muted);
}

.plan-features-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.plan-features-list li {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1.45;
}

.plan-features-list li i {
  color: var(--accent);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.plan-features-list li.disabled {
  color: var(--muted);
  opacity: 0.5;
  text-decoration: line-through;
}

.plan-features-list li.disabled i {
  color: var(--muted);
}

/* --- Reseller Panels / Wholesale --- */
.reseller-section {
  scroll-margin-top: 5rem;
}

.reseller-box {
  background: linear-gradient(135deg, rgba(16, 24, 38, 0.9) 0%, rgba(10, 16, 26, 0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.reseller-header-content h2 {
  margin-bottom: 1rem;
}

.reseller-header-content p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0 0 1.75rem;
}

.reseller-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.reseller-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.reseller-pill i {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.reseller-pill strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
}

.reseller-pill span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
}

.reseller-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reseller-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reseller-tier-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.reseller-tier-card:hover {
  transform: translateX(4px);
  border-color: var(--border-light);
}

.reseller-tier-card--master {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(20, 32, 50, 0.9) 0%, rgba(14, 24, 38, 0.9) 100%);
}

.reseller-tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reseller-tier-header h4 {
  margin: 0;
  font-size: 1.15rem;
}

.reseller-credits {
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 600;
}

.reseller-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text-dim);
}

.reseller-badge--gold {
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.reseller-tier-features {
  display: grid;
  gap: 0.45rem;
}

.reseller-tier-features li {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.reseller-tier-features li i {
  color: var(--accent);
  font-size: 0.78rem;
}

/* --- FAQ Interactive Accordion --- */
.faq-section {
  scroll-margin-top: 5rem;
}

.faq-accordion-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  color: var(--text);
  padding: 1.35rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-question-text {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-q-icon {
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.faq-trigger::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"] {
  color: var(--accent);
}

.faq-trigger[aria-expanded="true"]::after {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.6rem;
}

.faq-content p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-content strong {
  color: var(--text);
}

/* --- Stay Informed / Newsletter Section --- */
.newsletter-shell {
  background: linear-gradient(135deg, rgba(16, 26, 42, 0.95) 0%, rgba(9, 18, 28, 0.98) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 242, 169, 0.1);
}

/* Newsletter/VIP updates: force wrapper + all descendants inside screen width */
.newsletter-section,
.newsletter-section .container,
.newsletter-shell {
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

.newsletter-shell *,
.newsletter-shell *::before,
.newsletter-shell *::after {
  box-sizing: border-box;
  max-width: 100%;
}

.newsletter-intro h2 {
  margin-bottom: 0.75rem;
}

.newsletter-intro p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0 0 1.35rem;
}

.newsletter-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.newsletter-perks span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.newsletter-perks i {
  color: var(--accent);
}

.newsletter-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(8, 12, 18, 0.75);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1.2rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 242, 169, 0.2);
}

.newsletter-input-icon {
  color: var(--muted);
  font-size: 1.1rem;
  margin-right: 0.65rem;
}

.newsletter-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}

.newsletter-input-group input::placeholder {
  color: var(--muted);
}

.newsletter-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.75rem 0 0 1rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand {
  margin-bottom: 1.15rem;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 242, 169, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 600;
}

.status-indicator {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

.site-footer h3 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.site-footer ul {
  display: grid;
  gap: 0.75rem;
}

.site-footer li,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-subtext {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.footer-icon-row {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.footer-icon-placeholder {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-dim);
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.footer-icon-placeholder:hover {
  background: var(--accent);
  color: #051410;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-payment-wrapper {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.payment-title {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-payment-placeholders {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-placeholder {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

/* --- Subpage Page Heroes --- */
.page-hero {
  min-height: 52vh;
  padding: 6rem 0 4rem;
}

.hero-content--small {
  max-width: 760px;
}

.page-hero.page-hero--reseller .hero-content--small,
.page-hero.page-hero--sports .hero-content--small,
.page-hero.page-hero--catalog .hero-content--small,
.page-hero.page-hero--support .hero-content--small {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-hero.page-hero--reseller h1,
.page-hero.page-hero--sports h1,
.page-hero.page-hero--catalog h1,
.page-hero.page-hero--support h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
}

.page-hero.page-hero--reseller .hero-text,
.page-hero.page-hero--sports .hero-text,
.page-hero.page-hero--catalog .hero-text,
.page-hero.page-hero--support .hero-text {
  text-align: center;
}

.page-hero.page-hero--reseller .hero-actions,
.page-hero.page-hero--sports .hero-actions,
.page-hero.page-hero--catalog .hero-actions,
.page-hero.page-hero--support .hero-actions {
  flex-direction: column;
  align-items: center;
}

.subpage-hero-preview {
  width: min(100%, 360px);
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  display: grid;
  gap: 0.65rem;
  background: rgba(12, 24, 35, 0.88);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3), 0 0 28px rgba(0, 242, 169, 0.1);
  text-align: left;
}

.subpage-hero-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subpage-hero-preview__title {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.subpage-hero-preview__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.subpage-hero-preview__meta strong {
  color: var(--accent);
  font-weight: 700;
}

.page-hero--sports .page-hero-background {
  background: radial-gradient(circle at 75% 25%, rgba(0, 242, 169, 0.15) 0%, transparent 60%), linear-gradient(180deg, #0d1826 0%, var(--bg) 100%);
}

.page-hero--catalog .page-hero-background {
  background: radial-gradient(circle at 25% 30%, rgba(0, 242, 169, 0.14) 0%, transparent 60%), linear-gradient(180deg, #10192a 0%, var(--bg) 100%);
}

.page-hero--support .page-hero-background {
  background: radial-gradient(circle at 50% 20%, rgba(0, 242, 169, 0.16) 0%, transparent 65%), linear-gradient(180deg, #0a1320 0%, var(--bg) 100%);
}

/* --- Sports Page Components --- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.schedule-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}

.schedule-league {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.schedule-card h3 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.85rem;
}

.schedule-card p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.league-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.league-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.league-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}

.league-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.league-card:hover img {
  transform: scale(1.06);
  opacity: 0.6;
}

.league-card span {
  position: relative;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

/* --- Catalog Page Components --- */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.chip {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.chip:hover {
  background: var(--surface-hover);
  color: var(--text);
  border-color: var(--border-light);
}

.chip.active {
  background: var(--accent);
  color: #051410;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 242, 169, 0.35);
}

.catalog-grid,
.vod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.catalog-card,
.vod-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.catalog-card:hover,
.vod-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}

.catalog-card img,
.vod-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.catalog-card:hover img,
.vod-card:hover img {
  transform: scale(1.05);
}

.catalog-card>div,
.vod-card>div {
  padding: 1.5rem;
}

.catalog-card h3,
.vod-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.catalog-card p,
.vod-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Support Page & Contact Form Components --- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.support-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.support-card>div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}

.support-card-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.support-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.support-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
  overflow-wrap: break-word;
}

.support-card .button {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.form-shell {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(8, 11, 16, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.15rem;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 242, 169, 0.2);
}

.form-field select option {
  background: #0d131f;
  color: #fff;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.contact-highlight {
  padding: 3rem 0 5rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(16, 25, 40, 0.95) 0%, rgba(9, 20, 28, 0.95) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: 0 20px 60px rgba(0, 242, 169, 0.1);
}

.contact-card h2 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0;
}

/* --- Toast Notifications & Alert Boxes --- */
.site-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: rgba(14, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.site-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-toast i {
  color: var(--accent);
  font-size: 1.1rem;
}

.site-toast--error i {
  color: var(--danger);
}

.form-status {
  margin-bottom: 1.5rem;
}

.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 169, 0.08);
  border: 1px solid var(--border-accent);
}

.alert-box__icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.alert-box__content strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.alert-box__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* --- Floating Buttons & Scroll Reveal --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent);
  color: #051410;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.sticky-cta-wrap {
  position: fixed;
  right: 2rem;
  bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 90;
}

.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sticky-cta--telegram {
  background: linear-gradient(135deg, #1d9bf0 0%, #0a7bd9 100%);
  box-shadow: 0 10px 30px rgba(29, 155, 240, 0.3);
}

.sticky-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
  color: #fff;
}

.sticky-cta--telegram:hover {
  box-shadow: 0 15px 40px rgba(29, 155, 240, 0.45);
}

.sticky-cta i {
  font-size: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Comprehensive Responsive Design --- */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .plan-card--featured {
    transform: none;
  }

  .plan-card--featured:hover {
    transform: translateY(-6px);
  }

  .reseller-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.25rem;
  }

  /* Newsletter/VIP updates card: stack and stop text + form overflow on tablets/small screens */
  .newsletter-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.25rem 1.5rem;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    box-sizing: border-box;
  }

  .newsletter-input-group,
  .newsletter-input-group input,
  .newsletter-input-group .button {
    max-width: 100%;
    box-sizing: border-box;
  }

  .newsletter-disclaimer {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .trial-banner-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.25rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-grid,
  .vod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  /* Reseller page: 4-col ROI grid + 3-col features grid had no tablet breakpoint */
  .roi-calc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reseller-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roi-calculator-box {
    padding: 2.25rem 1.75rem;
  }
}

/* Tablet nav: prevent links/brand/trial button from colliding */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-inner {
    gap: 1rem;
  }

  .nav-list {
    gap: 1rem;
  }

  .brand {
    font-size: 1.15rem;
  }

  .brand-icon-wrapper {
    margin-right: 0.45rem;
  }

  .nav-list a {
    font-size: 0.88rem;
  }

  .button-header-trial {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .page-shell {
    overflow: hidden;
    overflow-x: hidden;
  }

  .site-header {
    padding: 0.25rem 0;
  }

  .site-header .header-inner {
    position: relative;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 12, 18, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    width: 100%;
    z-index: 30;
  }

  .site-nav.open {
    max-height: 480px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0 0 0.35rem 1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding: 0.55rem 0;
    font-size: 0.95rem;
  }

  .nav-list a::after {
    display: none;
  }

  .header-actions .button-header-trial {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 4rem 0 3.5rem;
  }

  .hero-content,
  .page-hero .hero-content {
    width: min(100%, 560px);
    text-align: center;
    margin: 0 auto;
  }

  .hero h1,
  .hero p,
  .hero-text,
  .page-hero h1,
  .page-hero p,
  .section-heading {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .plan-grid,
  .feature-grid,
  .app-grid,
  .support-grid,
  .schedule-grid,
  .catalog-grid,
  .vod-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .reseller-highlights-grid {
    grid-template-columns: 1fr;
  }

  .trust-metric-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .league-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .vod-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-shell {
    padding: 2rem 1.5rem;
  }

  .slider-button {
    display: none;
  }

  /* Reseller page: single-column ROI & features on phones */
  .roi-calc-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reseller-features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .roi-val {
    font-size: 1.6rem;
  }

  /* Prevent absolutely-positioned badges clipping/overlapping adjacent text */
  .plan-grid {
    padding-top: 0.75rem;
  }

  .plan-card {
    padding: 2rem 1.5rem;
  }

  .plan-price {
    font-size: 2.35rem;
  }

  /* Fixed buttons: keep clear of iOS safe area */
  .sticky-cta,
  .back-to-top {
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  .sticky-cta {
    bottom: calc(5.75rem + env(safe-area-inset-bottom));
  }
}

/* Keep the newsletter wrapper and form strictly within mobile viewport bounds. */
@media (max-width: 768px) {

  .newsletter-section,
  .newsletter-section .container,
  .newsletter-shell,
  .newsletter-form-container,
  .newsletter-form,
  .newsletter-input-group,
  .newsletter-input-group input,
  .newsletter-input-group .button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .newsletter-form-container,
  .newsletter-form {
    flex-direction: column !important;
  }

  .newsletter-section .container {
    width: calc(100% - 2rem) !important;
  }
}

@media (max-width: 540px) {

  /* Newsletter/VIP updates: tighter padding, form elements stack so nothing overflows the card */
  .newsletter-shell {
    padding: 1.75rem 1.1rem;
    gap: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .newsletter-form-container,
  .newsletter-form {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-intro h2 {
    font-size: 1.4rem;
  }

  .newsletter-intro p {
    font-size: 0.92rem;
  }

  .newsletter-input-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 1.25rem;
    padding: 0.6rem 0.75rem;
    gap: 0.5rem;

  }

  .newsletter-input-icon {
    display: none;
  }

  .newsletter-input-group input {
    display: block;
    width: 100%;
    flex: 1 1 100%;
    min-width: 0;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 0.35rem 0.5rem;
    margin: 0;
  }

  .newsletter-input-group .button {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    box-sizing: border-box;
    justify-content: center;
    margin: 0;
  }

  .newsletter-disclaimer {
    margin: 0.75rem 0 0;
    max-width: 100%;
  }

  .newsletter-perks {
    gap: 0.6rem 1rem;
  }

  .top-announcement {
    font-size: 0.78rem;
    padding: 0.45rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .sticky-cta {
    bottom: calc(5.25rem + env(safe-area-inset-bottom));
    right: 1rem;
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }

  .back-to-top {
    bottom: calc(1.25rem + env(safe-area-inset-bottom));
    right: 1rem;
    width: 2.85rem;
    height: 2.85rem;
  }

  .site-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    text-align: center;
    justify-content: center;
  }
}

/* --- Reseller Dedicated Page Styles --- */
.page-hero--reseller .page-hero-background {
  background: radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.12) 0%, transparent 60%), radial-gradient(circle at 20% 70%, rgba(0, 242, 169, 0.14) 0%, transparent 60%), linear-gradient(180deg, #101622 0%, var(--bg) 100%);
}

.plan-price-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.25rem;
}

.reseller-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.roi-calculator-box {
  background: linear-gradient(135deg, rgba(16, 25, 42, 0.95) 0%, rgba(10, 16, 26, 0.98) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.roi-calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.roi-calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.roi-calc-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
}

.roi-calc-card--highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0, 242, 169, 0.08) 0%, rgba(18, 25, 38, 0.8) 100%);
  box-shadow: 0 10px 30px rgba(0, 242, 169, 0.15);
}

.roi-step-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.roi-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0.25rem 0;
}

.roi-val--profit {
  color: var(--accent);
}

.roi-calc-card p {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}

/* --- Pricing Duration Switcher --- */
.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -1.5rem auto 3rem;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.pricing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.pricing-toggle-btn:hover {
  color: var(--text);
}

.pricing-toggle-btn.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #051410;
  box-shadow: 0 4px 18px rgba(0, 242, 169, 0.35);
}

.toggle-discount-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.pricing-toggle-btn.active .toggle-discount-tag {
  background: rgba(5, 20, 16, 0.25);
  color: #041410;
}

.toggle-discount-tag--hot {
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.pricing-toggle-btn.active .toggle-discount-tag--hot {
  background: #051410;
  color: var(--gold);
  border-color: var(--gold);
}

.plan-price-subtext {
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.4rem;
  min-height: 1.3rem;
  transition: opacity 0.2s ease;
}

.plan-card.price-updating .plan-price-wrap,
.plan-card.price-updating .plan-price-subtext {
  opacity: 0.3;
  transform: scale(0.98);
}

.plan-card .plan-price-wrap,
.plan-card .plan-price-subtext {
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 640px) {
  .pricing-toggle {
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius-md);
    padding: 0.5rem;
  }

  .pricing-toggle-btn {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
  }
}

/* --- Legal Pages (Terms / Privacy) --- */
.legal-page {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0b0f16 100%);
}

.legal-shell {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 2.5rem;
}

.legal-section {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.legal-section p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.legal-list {
  display: grid;
  gap: 0.75rem;
}

.legal-list li {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.legal-list li i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.legal-link {
  color: var(--accent);
  text-decoration: underline;
}

.legal-link:hover {
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .legal-shell {
    padding: 2rem 1.5rem;
  }

  .legal-page {
    padding: 3rem 0 4rem;
  }
}

@media (max-width: 1024px) {
  #reseller-pricing .plan-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  #reseller-pricing .plan-card--featured {
    transform: none;
  }

  #reseller-pricing .plan-card--featured:hover {
    transform: translateY(-6px);
  }
}

/* ==========================================================================
   POSTER SHOWCASE SLIDER (standalone section styles - prefix: ps-)
   ========================================================================== */
.poster-slider-section {
  position: relative;
  padding: var(--section-gap, 5rem) 0 4.5rem;
  background:
    radial-gradient(1000px 420px at 15% 0%, rgba(0, 242, 169, 0.07), transparent 60%),
    radial-gradient(900px 400px at 85% 100%, rgba(0, 242, 169, 0.05), transparent 60%),
    var(--bg-deep, #05070a);
  overflow: hidden;
}

.poster-slider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 242, 169, 0.04) 1px, transparent 1px);
  background-size: 100% 56px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.poster-slider-section .ps-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.ps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #00f2a9);
  background: var(--accent-soft, rgba(0, 242, 169, 0.12));
  border: 1px solid rgba(0, 242, 169, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ps-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 1rem 0 0.6rem;
  color: var(--text, #f8fafc);
}

.ps-title span {
  background: linear-gradient(90deg, var(--accent, #00f2a9), var(--accent-light, #48fcd0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ps-sub {
  color: var(--muted, #8e9db2);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.ps-viewport {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 1.25rem 0 1.75rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.ps-track {
  display: flex;
  width: max-content;
  will-change: transform;
  box-sizing: border-box;
  animation: psScroll 72s linear infinite;
}

.ps-group {
  display: flex;
  flex: 0 0 auto;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.ps-viewport:hover .ps-track {
  animation-play-state: paused;
}

.ps-card {
  flex: 0 0 auto;
  width: clamp(150px, 16vw, 208px);
  aspect-ratio: 2 / 3;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--surface, rgba(18, 25, 38, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  user-select: none;
  -webkit-user-select: none;
}

.ps-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.3s ease;
  filter: saturate(0.9) brightness(0.92);
}

.ps-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.65) 0%, transparent 40%);
  opacity: 0.7;
  transition: opacity 0.45s ease;
}

.ps-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(0, 242, 169, 0.55);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55), 0 0 28px var(--accent-glow, rgba(0, 242, 169, 0.35));
  z-index: 2;
}

.ps-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(1.05);
}

.ps-card:hover::after {
  opacity: 1;
}

@keyframes psScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 640px) {
  .ps-card {
    width: 42vw;
  }

  .ps-track {
    gap: 0;
  }

  .ps-group {
    gap: 1rem;
    padding-right: 1rem;
  }

  .poster-slider-section {
    padding: 3.5rem 0 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ps-track {
    animation: none;
  }
}

/* ==========================================================================
   CHANNEL LOGOS MARQUEE (standalone section styles - prefix: clm)
   ========================================================================== */
.channel-marquee-section {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  background: var(--bg-deep, #05070a);
  overflow: hidden;
}

.channel-marquee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 260px at 50% 50%, rgba(0, 242, 169, 0.06), transparent 70%);
  pointer-events: none;
}

.channel-marquee-section .clm-head {
  text-align: center;
  margin-bottom: 2rem;
}

.clm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #00f2a9);
  background: var(--accent-soft, rgba(0, 242, 169, 0.12));
  border: 1px solid rgba(0, 242, 169, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.clm-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 0.9rem 0 0;
  color: var(--text, #f8fafc);
}

.clm-title span {
  background: linear-gradient(90deg, var(--accent, #00f2a9), var(--accent-light, #48fcd0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.clm-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clm-track {
  display: flex;
  width: max-content;
  animation: clmScroll 38s linear infinite;
  animation-direction: reverse;
}

.clm-marquee:hover .clm-track {
  animation-play-state: paused;
}

.clm-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-right: 1.1rem;
}

/* Channel slide card (logo + name) */
.channel-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--text, #f8fafc);
  background: var(--surface, rgba(18, 25, 38, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  cursor: default;
}

.channel-slide img {
  flex: 0 0 auto;
  height: 48px;
  max-height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.channel-slide span {
  line-height: 1.2;
}

.channel-slide:hover {
  border-color: rgba(0, 242, 169, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(0, 242, 169, 0.08);
}

.clm-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--text, #f8fafc);
  background: var(--surface, rgba(18, 25, 38, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, transform 0.35s ease;
  cursor: default;
}

/* Sleek icon tile inside each logo badge */
.clm-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 1.05rem;
  color: var(--accent, #00f2a9);
  background:
    linear-gradient(135deg, rgba(0, 242, 169, 0.16), rgba(0, 242, 169, 0.04)),
    rgba(8, 11, 16, 0.55);
  border: 1px solid rgba(0, 242, 169, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 12px rgba(0, 242, 169, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.clm-badge:hover .clm-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(0, 242, 169, 0.28), rgba(0, 242, 169, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 18px var(--accent-glow, rgba(0, 242, 169, 0.35));
}

.clm-badge:hover {
  border-color: rgba(0, 242, 169, 0.55);
  color: var(--accent-light, #48fcd0);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), 0 0 20px var(--accent-glow, rgba(0, 242, 169, 0.35));
  transform: translateY(-3px);
}

@keyframes clmScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clm-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .channel-marquee-section {
    padding: 2.5rem 0 3rem;
  }

  .channel-slide {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    gap: 0.45rem;
  }

  .channel-slide img {
    height: 36px;
    max-height: 38px;
    width: auto;
    padding: 3px;
  }

  .clm-badge {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    gap: 0.45rem;
  }

  .clm-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    border-radius: 9px;
  }

  .clm-group {
    gap: 0.8rem;
    padding-right: 0.8rem;
  }
}

/* ==========================================================================
   FINAL SAFEGUARDS — element overlap & small-screen overflow protection
   ========================================================================== */
h1,
h2,
h3,
h4,
p,
li,
blockquote,
span,
strong,
small {
  overflow-wrap: break-word;
}

/* Grid/flex children must be allowed to shrink, never force overflow */
.feature-grid>*,
.plan-grid>*,
.stats-grid>*,
.schedule-grid>*,
.league-grid>*,
.catalog-grid>*,
.vod-grid>*,
.support-grid>*,
.footer-grid>*,
.trust-metric-bar>*,
.roi-calc-grid>*,
.reseller-features-grid>*,
.reseller-highlights-grid>*,
.testimonials-section .slider-track>* {
  min-width: 0;
}

/* Long unbroken strings (emails, URLs, credit codes) in cards & legal pages */
.reseller-pill strong,
.legal-shell p,
.legal-list li,
.alert-box__content p,
.footer-desc {
  overflow-wrap: anywhere;
}

/* Toast must never exceed narrow viewports */
.site-toast {
  max-width: calc(100vw - 2rem);
}

/* --- Final Mobile Layout Pass --- */
@media (max-width: 768px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }

  .top-announcement {
    margin-top: 3.75rem;
  }

  .announcement-inner {
    padding: 0.55rem 0;
    gap: 0.45rem 0.65rem;
  }

  .announcement-text {
    line-height: 1.4;
  }

  .site-header .header-inner {
    padding: 0.6rem 0;
  }

  .brand {
    min-width: 0;
    font-size: 1.08rem;
  }

  .brand-icon-wrapper {
    width: 1.9rem;
    height: 1.9rem;
    margin-right: 0.45rem;
    font-size: 0.82rem;
  }

  .nav-toggle {
    width: 2.35rem;
    height: 2.35rem;
    padding: 0.35rem;
  }

  .nav-toggle .bar {
    width: 1.25rem;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 3.5rem 0 3rem;
  }

  .hero-content,
  .page-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.15;
  }

  .hero h2,
  .page-hero h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-text,
  .page-hero .hero-text {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .button {
    width: min(100%, 24rem);
  }

  .section,
  .features-section,
  .testimonials-section,
  .plans-section,
  .reseller-section,
  .faq-section,
  .newsletter-section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .section-heading p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .button {
    min-height: 2.85rem;
    padding: 0.78rem 1.2rem;
    font-size: 0.9rem;
  }

  .button-large {
    padding: 0.9rem 1.35rem;
    font-size: 0.95rem;
  }

  .feature-card,
  .support-card {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .feature-card p,
  .support-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .plan-grid {
    gap: 1.25rem;
    max-width: 32rem;
  }

  .plan-card {
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .plan-card--featured {
    transform: none;
  }

  .plan-card--featured:hover {
    transform: translateY(-4px);
  }

  .plan-badge {
    top: -10px;
    font-size: 0.64rem;
    padding: 0.3rem 0.75rem;
  }

  .plan-header h3 {
    font-size: 1.2rem;
  }

  .plan-desc {
    min-height: 0;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .plan-price {
    font-size: 2rem;
  }

  .plan-features-list {
    gap: 0.55rem;
  }

  .plan-features-list li {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .form-shell,
  .reseller-box,
  .roi-calculator-box {
    padding: 1.5rem 1.25rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-actions .button {
    width: 100%;
  }

  .sticky-cta-wrap {
    right: 0.75rem;
    bottom: 5.25rem;
    gap: 0.5rem;
  }

  .sticky-cta {
    padding: 0.6rem 0.9rem;
    font-size: 0.78rem;
  }

  .sticky-cta i {
    font-size: 1rem;
  }
}

@media (max-width: 540px) {
  .top-announcement {
    margin-top: 3.5rem;
  }

  .announcement-badge {
    font-size: 0.62rem;
  }

  .announcement-text,
  .announcement-link {
    font-size: 0.74rem;
  }

  .hero,
  .page-hero {
    padding-top: 3rem;
  }

  .hero-badge-pill {
    max-width: 100%;
    justify-content: center;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .page-hero.page-hero--support h1 {
    font-size: 2rem;
  }

  .section,
  .features-section,
  .testimonials-section,
  .plans-section,
  .reseller-section,
  .faq-section,
  .newsletter-section {
    padding: 3.25rem 0;
  }

  .section-heading h2 {
    font-size: 1.6rem;
  }

  .trust-metric-bar {
    padding: 1.1rem 1rem;
  }

  .sticky-cta-wrap {
    right: 0.6rem;
  }
}

@media (max-width: 768px) {

  /* Two-column footer info columns stay readable instead of colliding */
  .site-footer ul {
    gap: 0.6rem;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand {
    font-size: 1.15rem;
  }
}

.football-page .features-section,
.football-page .testimonials-section {
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

@media (max-width: 640px) {

  .football-page .features-section,
  .football-page .testimonials-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .football-page .features-section .section-title,
  .football-page .testimonials-section .section-title {
    align-items: flex-start;
  }

  .football-page .features-section .section-title svg,
  .football-page .testimonials-section .section-title svg {
    margin-top: 0.2rem;
  }
}