:root {
    --bg: #020714;
    --bg-soft: #071223;
    --panel: rgba(11, 28, 52, .84);
    --panel-strong: #0c1e36;
    --panel-light: #122a48;
    --white: #ffffff;
    --text: #e8f2ff;
    --text-soft: #9fb2c8;
    --ink: #102033;
    --line: rgba(255,255,255,.11);
    --line-strong: rgba(255,255,255,.2);
    --blue: #18a8ff;
    --blue-2: #006dff;
    --cyan: #21e6ff;
    --gold: #f2c45b;
    --red: #ff4967;
    --purple: #a870ff;
    --green: #38e1a5;
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --shadow: 0 28px 90px rgba(0,0,0,.34);
    --shell: min(1220px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 10% 10%, rgba(24,168,255,.08), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(168,112,255,.08), transparent 25%),
        linear-gradient(180deg, #020714 0%, #040a16 100%);
}

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

button,
input {
    font: inherit;
}

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

[hidden] {
    display: none !important;
}

.site-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .16;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.top-strip {
    position: relative;
    z-index: 60;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: #01040c;
}

.top-strip-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #8296ad;
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .04em;
}

.live-system,
.top-strip-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-strip-links span,
.top-strip-links a {
    position: relative;
}

.top-strip-links span + span::before,
.top-strip-links span + a::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #4d6075;
}

.live-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--green);
    box-shadow:
        0 0 0 5px rgba(56,225,165,.12),
        0 0 18px rgba(56,225,165,.7);
    animation: pulseLive 2s ease-in-out infinite;
}

@keyframes pulseLive {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.78); opacity: .72; }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(2,7,20,.82);
    backdrop-filter: blur(22px) saturate(160%);
    transition:
        background .25s ease,
        box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(2,7,20,.95);
    box-shadow: 0 14px 60px rgba(0,0,0,.28);
}

.header-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: clamp(210px, 20vw, 310px);
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

.brand span {
    color: var(--white);
    font-weight: 950;
    letter-spacing: .035em;
}

.brand strong {
    color: var(--red);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.main-nav a {
    position: relative;
    padding-block: 30px;
    color: #a9bbcf;
    font-size: .91rem;
    font-weight: 780;
    transition: color .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: translateX(-50%);
    transition: width .25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 24px;
}

.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 17px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: var(--white);
    font-size: .84rem;
    font-weight: 850;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(24,168,255,.55);
    background: rgba(24,168,255,.12);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 2px auto;
    border-radius: 99px;
    background: var(--white);
}

.premium-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 76% 18%, rgba(24,168,255,.18), transparent 28%),
        radial-gradient(circle at 15% 80%, rgba(168,112,255,.13), transparent 34%),
        linear-gradient(145deg, #020714 0%, #061326 52%, #071a31 100%);
}

.hero-grid-lines,
.page-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    width: 520px;
    height: 520px;
    top: -220px;
    right: 5%;
    border: 1px solid rgba(33,230,255,.28);
    box-shadow:
        inset 0 0 90px rgba(24,168,255,.11),
        0 0 130px rgba(24,168,255,.12);
    animation: floatOrb 10s ease-in-out infinite;
}

.hero-orb-two {
    width: 240px;
    height: 240px;
    left: -90px;
    bottom: 80px;
    background: radial-gradient(circle at 35% 35%, rgba(242,196,91,.22), transparent 66%);
    animation: floatOrb 8s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(0,20px,0); }
}

.premium-hero-inner {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    align-items: center;
    gap: 72px;
    padding-block: 90px 110px;
}

.hero-copy-block {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: #9db1c8;
    font-size: .72rem;
    font-weight: 820;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-kicker strong {
    color: var(--gold);
}

.hero-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 16px rgba(24,168,255,.8);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 26px;
    font-size: clamp(3.3rem, 6.4vw, 6.7rem);
    line-height: .91;
    letter-spacing: -.075em;
    text-wrap: balance;
}

h1 span {
    display: inline-block;
    background: linear-gradient(90deg, #ffffff 4%, #8bd5ff 48%, #7ef0ff 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -.05em;
    text-wrap: balance;
}

h3 {
    letter-spacing: -.025em;
}

.hero-copy-block > p {
    max-width: 720px;
    color: #a7bbd1;
    font-size: clamp(1.03rem, 1.6vw, 1.24rem);
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 880;
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-xl {
    min-height: 56px;
    padding-inline: 24px;
}

.button-primary {
    color: #04101d;
    background: linear-gradient(135deg, var(--gold), #ffd980);
    box-shadow: 0 18px 44px rgba(242,196,91,.18);
}

.button-primary:hover {
    box-shadow: 0 22px 54px rgba(242,196,91,.27);
}

.button-glass {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.055);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.button-glass:hover {
    border-color: rgba(24,168,255,.5);
    background: rgba(24,168,255,.1);
}

.hero-proof {
    max-width: 690px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 46px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
}

.hero-proof div {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px;
    background: rgba(2,7,20,.54);
}

.hero-proof strong {
    color: var(--white);
    font-size: 1.55rem;
}

.hero-proof span {
    color: #849ab2;
    font-size: .76rem;
    font-weight: 740;
}

.live-board {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(14,35,62,.9), rgba(5,15,29,.94));
    box-shadow: var(--shadow);
}

.live-board::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(24,168,255,.1), transparent 34%),
        radial-gradient(circle at 100% 0, rgba(33,230,255,.1), transparent 28%);
}

.live-board-head,
.live-board-footer {
    position: relative;
    z-index: 1;
}

.live-board-head {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.live-board-head h2 {
    margin: 5px 0 0;
    font-size: 1.55rem;
}

.live-board-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8ca1b8;
    font-size: .72rem;
    font-weight: 750;
}

.live-board-list {
    position: relative;
    z-index: 1;
    padding: 8px;
}

.live-board-item {
    min-height: 85px;
    display: grid;
    grid-template-columns: 68px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 15px;
    border-radius: 18px;
    transition:
        background .2s ease,
        transform .2s ease;
}

.live-board-item:hover {
    background: rgba(255,255,255,.055);
    transform: translateX(3px);
}

.live-board-time {
    color: var(--gold);
    font-size: 1.14rem;
    font-weight: 950;
}

.live-board-event {
    min-width: 0;
}

.live-board-event span {
    display: block;
    margin-bottom: 3px;
    overflow: hidden;
    color: #6f88a2;
    font-size: .7rem;
    font-weight: 780;
    letter-spacing: .05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.live-board-event strong {
    display: block;
    overflow: hidden;
    color: var(--white);
    font-size: .93rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-board-arrow {
    color: #6e88a4;
}

.live-board-empty {
    padding: 38px 24px;
    color: var(--text-soft);
    text-align: center;
}

.live-board-footer {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 25px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #b8c9dc;
    font-size: .85rem;
    font-weight: 820;
}

.live-board-footer:hover {
    color: var(--cyan);
}

.sports-ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(2,7,20,.72);
    backdrop-filter: blur(12px);
}

.sports-ticker-track {
    width: max-content;
    min-height: 55px;
    display: flex;
    align-items: center;
    gap: 26px;
    color: #8095ab;
    font-size: .75rem;
    font-weight: 880;
    letter-spacing: .14em;
    text-transform: uppercase;
    animation: marquee 28s linear infinite;
}

.sports-ticker-track i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 0 14px rgba(24,168,255,.7);
}

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

.section {
    position: relative;
    padding-block: 96px;
}

.section-dark {
    background:
        linear-gradient(180deg, rgba(4,10,22,.98), rgba(3,8,18,.98));
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.section-heading > div {
    max-width: 760px;
}

.section-heading p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--text-soft);
}

.section-heading-light h2 {
    color: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 850;
}

.text-link-light {
    color: #9edaff;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.premium-listing-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(15,34,58,.9), rgba(7,19,35,.96));
    box-shadow: 0 16px 44px rgba(0,0,0,.16);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.premium-listing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24,168,255,.4);
    box-shadow: 0 24px 65px rgba(0,0,0,.28);
}

.listing-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), transparent 88%);
}

.listing-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 21px 22px 10px;
}

.listing-time-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.listing-time-block span {
    color: #7f93a9;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.listing-time-block strong {
    color: var(--gold);
    font-size: 1.52rem;
    line-height: 1;
}

.listing-badges {
    display: flex;
    gap: 6px;
}

.sport-pill,
.timezone-pill {
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sport-pill {
    background: rgba(24,168,255,.1);
    color: #8fd5ff;
}

.timezone-pill {
    background: rgba(242,196,91,.09);
    color: var(--gold);
}

.listing-card-body {
    min-height: 112px;
    padding: 12px 22px 18px;
}

.listing-league {
    display: block;
    margin-bottom: 8px;
    color: #7188a1;
    font-size: .69rem;
    font-weight: 830;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.listing-card-body h3 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 1.22rem;
    line-height: 1.2;
}

.where-to-watch {
    margin: 0 14px 14px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 16px;
    background: rgba(1,7,15,.44);
}

.where-to-watch-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
    color: #8298af;
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.where-to-watch-heading strong {
    color: var(--cyan);
    font-size: .62rem;
}

.territory-list {
    display: grid;
    gap: 8px;
}

.territory-row {
    display: grid;
    grid-template-columns: minmax(82px, .7fr) 1.3fr;
    gap: 10px;
    font-size: .75rem;
}

.territory-row span {
    color: #6f849a;
}

.territory-row strong {
    color: #d5e4f3;
    font-weight: 760;
    overflow-wrap: anywhere;
}

.listing-card-footer {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #637a92;
    font-size: .66rem;
    font-weight: 760;
}

.channel-network-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(24,168,255,.16), transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(168,112,255,.14), transparent 26%),
        linear-gradient(145deg, #071426 0%, #0a1c34 55%, #071223 100%);
}

.channel-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .4;
    background:
        linear-gradient(115deg, transparent 20%, rgba(33,230,255,.06) 45%, transparent 70%);
    transform: translateX(-20%);
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.channel-card {
    --channel-accent: var(--blue);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 25px;
    background:
        linear-gradient(180deg, rgba(16,39,67,.88), rgba(7,19,35,.94));
    box-shadow: 0 20px 56px rgba(0,0,0,.2);
    transition:
        transform .25s ease,
        border-color .25s ease;
}

.channel-card::before,
.channel-directory-card::before,
.sport-channel-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--channel-accent) 24%, transparent), transparent 32%);
}

.channel-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--channel-accent) 48%, transparent);
}

.channel-accent-blue { --channel-accent: var(--blue); }
.channel-accent-gold { --channel-accent: var(--gold); }
.channel-accent-red { --channel-accent: var(--red); }
.channel-accent-purple { --channel-accent: var(--purple); }
.channel-accent-cyan { --channel-accent: var(--cyan); }
.channel-accent-green { --channel-accent: var(--green); }

.channel-card-top,
.channel-card-body,
.channel-card-footer {
    position: relative;
    z-index: 1;
}

.channel-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.channel-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--channel-accent) 35%, transparent);
    border-radius: 16px;
    background: color-mix(in srgb, var(--channel-accent) 10%, transparent);
    color: var(--channel-accent);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .06em;
}

.channel-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 880;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.channel-status-live {
    border: 1px solid rgba(56,225,165,.2);
    background: rgba(56,225,165,.08);
    color: #8cf0cb;
}

.channel-status-coming_soon {
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.045);
    color: #8195aa;
}

.channel-status .live-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 10px rgba(56,225,165,.7);
}

.channel-overline {
    display: block;
    margin-bottom: 8px;
    color: color-mix(in srgb, var(--channel-accent) 78%, white);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.channel-card-body h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.6rem;
}

.channel-card-body p {
    margin-bottom: 0;
    color: #879db5;
    font-size: .9rem;
}

.channel-card-footer {
    min-height: 58px;
    display: flex;
    align-items: end;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.075);
}

.channel-card-footer a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #cce9fb;
    font-size: .76rem;
    font-weight: 820;
}

.channel-card-footer > span {
    color: #697f96;
    font-size: .73rem;
}

.experience-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 20%, rgba(24,168,255,.08), transparent 28%),
        #030915;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: center;
    gap: 90px;
}

.experience-copy > p {
    max-width: 650px;
    color: var(--text-soft);
    font-size: 1.1rem;
}

.feature-stack {
    display: grid;
    gap: 1px;
    margin-top: 38px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    background: rgba(255,255,255,.08);
}

.feature-stack article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 22px;
    background: rgba(6,18,34,.9);
}

.feature-stack article > span {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
}

.feature-stack h3 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1rem;
}

.feature-stack p {
    margin-bottom: 0;
    color: #7f95ad;
    font-size: .87rem;
}

.experience-visual {
    position: relative;
    min-height: 510px;
    display: grid;
    place-items: center;
}

.visual-panel {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.12);
    background:
        linear-gradient(180deg, rgba(15,37,65,.94), rgba(5,15,29,.97));
    box-shadow: var(--shadow);
}

.visual-panel-main {
    width: min(100%, 440px);
    padding: 34px;
    border-radius: 30px;
    transform: rotate(-2deg);
}

.visual-panel-label {
    color: var(--cyan);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.visual-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 28px 0;
}

.visual-score span {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255,73,103,.12);
    color: #ff8ba0;
    font-size: .68rem;
    font-weight: 900;
}

.visual-score strong {
    color: var(--gold);
    font-size: 2rem;
}

.visual-panel-main h3 {
    color: var(--white);
    font-size: 2.3rem;
    line-height: 1.03;
}

.visual-broadcasts {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.visual-broadcasts div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .78rem;
}

.visual-broadcasts span {
    color: #6f859c;
}

.visual-broadcasts strong {
    color: #d8e8f7;
}

.visual-panel-float {
    position: absolute;
    right: -12px;
    bottom: 62px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 18px;
    border-radius: 16px;
    color: #cbe0f1;
    font-size: .78rem;
    font-weight: 800;
    transform: rotate(3deg);
}

.visual-ring {
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(24,168,255,.17);
    border-radius: 50%;
    box-shadow:
        inset 0 0 90px rgba(24,168,255,.06),
        0 0 100px rgba(24,168,255,.05);
}

.sponsor-section {
    background:
        linear-gradient(180deg, #030915, #071225);
}

.sponsor-panel {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 54px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 34px;
    background:
        radial-gradient(circle at 100% 0, rgba(242,196,91,.14), transparent 34%),
        radial-gradient(circle at 0 100%, rgba(24,168,255,.13), transparent 36%),
        linear-gradient(145deg, #0b1d34, #071225);
    box-shadow: var(--shadow);
}

.sponsor-panel > div {
    max-width: 760px;
}

.sponsor-panel p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--text-soft);
}

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

.premium-page-hero {
    min-height: 520px;
    display: grid;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 80% 20%, rgba(24,168,255,.18), transparent 28%),
        radial-gradient(circle at 10% 100%, rgba(168,112,255,.13), transparent 30%),
        linear-gradient(145deg, #020714 0%, #071426 55%, #081b33 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    padding-block: 80px;
}

.page-hero h1 {
    max-width: 960px;
    margin: 14px 0 24px;
    font-size: clamp(3rem, 6vw, 6rem);
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.page-hero-stats {
    max-width: 650px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 38px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
}

.page-hero-stats div {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    background: rgba(2,7,20,.56);
}

.page-hero-stats strong {
    color: var(--white);
    font-size: 1.5rem;
}

.page-hero-stats span {
    color: #8398af;
    font-size: .73rem;
}

.channel-directory {
    display: grid;
    gap: 18px;
}

.channel-directory-card {
    --channel-accent: var(--blue);
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(14,35,62,.93), rgba(6,17,31,.96));
    transition:
        transform .25s ease,
        border-color .25s ease;
}

.channel-directory-card:hover {
    transform: translateX(6px);
    border-color: color-mix(in srgb, var(--channel-accent) 45%, transparent);
}

.channel-directory-number {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255,255,255,.08);
    color: color-mix(in srgb, var(--channel-accent) 78%, white);
    font-size: 1.25rem;
    font-weight: 950;
}

.channel-directory-content {
    position: relative;
    z-index: 1;
    padding: 28px 32px;
}

.channel-directory-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #6f849b;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.channel-directory-content h2 {
    margin: 22px 0 10px;
    font-size: 2rem;
}

.channel-directory-content p {
    max-width: 730px;
    color: var(--text-soft);
}

.channel-directory-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #c8e9ff;
}

.channel-directory-link strong {
    color: var(--channel-accent);
}

.channel-coming-soon {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #71879d;
    font-size: .83rem;
}

.channel-benefit-grid,
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.channel-benefit-grid article,
.commercial-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(14,34,59,.86), rgba(6,17,31,.94));
}

.benefit-index,
.commercial-card > span {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
}

.channel-benefit-grid h2,
.commercial-card h2 {
    margin-top: 44px;
    font-size: 1.7rem;
}

.channel-benefit-grid p,
.commercial-card p {
    color: var(--text-soft);
}

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

.date-navigator {
    max-width: 760px;
    display: grid;
    grid-template-columns: 52px minmax(210px, 1fr) auto 52px;
    align-items: end;
    gap: 10px;
    margin-top: 34px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
}

.date-navigator label {
    display: grid;
    gap: 6px;
}

.date-navigator label span {
    color: #8095ab;
    font-size: .68rem;
    font-weight: 840;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.date-navigator input {
    min-height: 48px;
    width: 100%;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(2,7,20,.7);
    color: var(--white);
    color-scheme: dark;
}

.date-arrow {
    min-height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    color: #b9cee2;
    font-weight: 900;
}

.date-arrow:hover {
    border-color: rgba(24,168,255,.45);
    color: var(--cyan);
}

.listing-toolbar-wrap {
    position: sticky;
    top: 86px;
    z-index: 30;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(3,9,21,.92);
    backdrop-filter: blur(18px);
}

.listing-toolbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.listing-search {
    min-width: min(420px, 38vw);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 13px;
    background: rgba(255,255,255,.045);
}

.listing-search span {
    color: #6f859b;
    font-size: 1.3rem;
}

.listing-search input {
    min-height: 46px;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
}

.listing-search input::placeholder {
    color: #5e738a;
}

.sport-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-block: 8px;
    scrollbar-width: none;
}

.filter-chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    color: #8196ad;
    font-size: .75rem;
    font-weight: 830;
    cursor: pointer;
}

.filter-chip:hover,
.filter-chip.is-active {
    border-color: rgba(24,168,255,.4);
    background: rgba(24,168,255,.11);
    color: #bfe8ff;
}

.listings-section {
    min-height: 600px;
}

.listing-results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    color: #71879e;
    font-size: .78rem;
}

.listing-results-meta strong {
    color: var(--white);
}

.listing-group + .listing-group {
    margin-top: 80px;
}

.group-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.group-title h2 {
    margin: 6px 0 0;
    font-size: 2.5rem;
}

.group-title > span {
    color: #72889f;
    font-size: .76rem;
}

.league-block + .league-block {
    margin-top: 54px;
}

.league-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.league-heading h2,
.league-heading h3 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 1.3rem;
}

.league-heading span {
    color: #6f859c;
    font-size: .72rem;
}

.no-filter-results {
    padding: 70px 30px;
    text-align: center;
    border: 1px dashed rgba(255,255,255,.14);
    border-radius: 24px;
}

.no-filter-results p {
    color: var(--text-soft);
}

.sport-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(340px, .55fr);
    align-items: center;
    gap: 60px;
    padding-block: 80px;
}

.sport-channel-panel {
    --channel-accent: var(--blue);
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(14,36,63,.88), rgba(5,16,30,.94));
    box-shadow: var(--shadow);
}

.sport-channel-top,
.sport-channel-panel h2,
.sport-channel-panel p,
.sport-channel-panel > a,
.sport-channel-panel > div {
    position: relative;
    z-index: 1;
}

.sport-channel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #6e849b;
    font-size: .62rem;
    font-weight: 880;
    letter-spacing: .09em;
}

.sport-channel-panel h2 {
    margin: 34px 0 10px;
    font-size: 2rem;
}

.sport-channel-panel p {
    color: var(--text-soft);
}

.sport-channel-panel > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #c9e9ff;
    font-size: .82rem;
}

.premium-empty-state {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 50px 30px;
    text-align: center;
    border: 1px dashed rgba(255,255,255,.15);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 50%, rgba(24,168,255,.1), transparent 34%),
        rgba(7,18,34,.76);
}

.empty-state-ring {
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(24,168,255,.15);
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(24,168,255,.05);
}

.premium-empty-state > *:not(.empty-state-ring) {
    position: relative;
    z-index: 1;
}

.premium-empty-state h2 {
    margin: 14px 0 10px;
}

.premium-empty-state p {
    max-width: 520px;
    color: var(--text-soft);
}

.premium-empty-state .button {
    margin-top: 18px;
}

.ad-slot {
    width: var(--shell);
    margin: 24px auto;
    overflow: hidden;
    border-radius: 18px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.09);
    background: #01040c;
}

.footer-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -220px;
    top: -270px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24,168,255,.11), transparent 68%);
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    padding-block: 72px 52px;
}

.footer-logo img {
    width: 250px;
    max-height: 60px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand-column p {
    max-width: 380px;
    margin-top: 22px;
    color: #71869c;
    font-size: .9rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 25px;
    color: #8da1b7;
    font-size: .76rem;
    font-weight: 780;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a {
    color: #788da4;
    font-size: .82rem;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--cyan);
}

.footer-column a span {
    display: block;
    color: #4f667d;
    font-size: .66rem;
}

.footer-bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #53697f;
    font-size: .72rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .65s ease,
        transform .65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 22px;
    }

    .main-nav {
        gap: 19px;
    }

    .main-nav a {
        font-size: .83rem;
    }

    .header-cta {
        display: none;
    }

    .premium-hero-inner {
        grid-template-columns: 1fr .82fr;
        gap: 38px;
    }

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

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

    .experience-grid {
        gap: 50px;
    }

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

    .footer-column:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 820px) {
    .top-strip-links span {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .brand img {
        width: 230px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 120px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 20px;
        background: rgba(4,12,25,.98);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 12px;
        border-radius: 11px;
    }

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

    .main-nav a:hover,
    .main-nav a.is-active {
        background: rgba(24,168,255,.09);
    }

    .premium-hero {
        min-height: auto;
    }

    .premium-hero-inner,
    .sport-hero-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero-inner {
        padding-block: 76px 120px;
    }

    .live-board {
        max-width: 620px;
    }

    .experience-visual {
        min-height: 470px;
    }

    .sponsor-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .listing-toolbar {
        min-height: auto;
        align-items: stretch;
        flex-direction: column;
        padding-block: 14px;
    }

    .listing-search {
        min-width: 100%;
    }

    .listing-toolbar-wrap {
        top: 86px;
    }

    .channel-directory-card {
        grid-template-columns: 80px 1fr;
    }

    .channel-benefit-grid,
    .commercial-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-brand-column {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}

@media (max-width: 580px) {
    :root {
        --shell: min(100% - 28px, 1220px);
    }

    .top-strip-inner {
        justify-content: center;
    }

    .top-strip-links {
        display: none;
    }

    .header-inner {
        min-height: 74px;
    }

    .brand img {
        width: 205px;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.6rem);
    }

    h2 {
        font-size: 2.15rem;
    }

    .hero-kicker strong {
        display: none;
    }

    .hero-proof,
    .page-hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-proof div,
    .page-hero-stats div {
        min-height: 72px;
    }

    .section {
        padding-block: 72px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .listing-grid,
    .channel-grid {
        grid-template-columns: 1fr;
    }

    .live-board-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .live-board-status {
        margin-top: -8px;
    }

    .live-board-item {
        grid-template-columns: 56px 1fr;
    }

    .live-board-arrow {
        display: none;
    }

    .territory-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .sponsor-panel {
        padding: 30px 24px;
    }

    .date-navigator {
        grid-template-columns: 45px 1fr 45px;
    }

    .date-navigator label {
        grid-column: 2;
        grid-row: 1;
    }

    .date-navigator .button {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .date-navigator .date-arrow:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .date-navigator .date-arrow:last-child {
        grid-column: 3;
        grid-row: 1;
    }

    .channel-directory-card {
        grid-template-columns: 1fr;
    }

    .channel-directory-number {
        min-height: 64px;
        justify-content: flex-start;
        padding-left: 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .channel-directory-content {
        padding: 24px;
    }

    .channel-directory-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .channel-directory-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .visual-panel-main {
        padding: 26px;
    }

    .visual-panel-main h3 {
        font-size: 1.9rem;
    }

    .visual-panel-float {
        right: 0;
    }

    .visual-ring {
        width: 330px;
        height: 330px;
    }

    .listing-results-meta,
    .group-title,
    .league-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-block: 56px 40px;
    }

    .footer-brand-column,
    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
