:root {
    --bg: #050816;
    --bg-soft: #0a1024;
    --panel: rgba(10, 18, 40, 0.84);
    --panel-2: rgba(13, 27, 58, 0.94);
    --panel-solid: #0b1530;
    --line: rgba(60, 255, 210, 0.14);
    --line-strong: rgba(71, 217, 255, 0.30);
    --text: #f4fbff;
    --muted: #89a7c9;
    --primary: #00d9ff;
    --primary-2: #7b61ff;
    --secondary: #39ff88;
    --gold: #d4ff3f;
    --success: #39ff88;
    --danger: #ff4fd8;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    --shadow-neon: 0 0 0 1px rgba(71, 217, 255, 0.16), 0 0 24px rgba(0, 217, 255, 0.10), 0 24px 60px rgba(0, 0, 0, 0.48);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1420px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 16% -4%, rgba(0, 217, 255, 0.18), transparent 24%),
        radial-gradient(circle at 84% 0%, rgba(57, 255, 136, 0.10), transparent 20%),
        radial-gradient(circle at 50% 110%, rgba(123, 97, 255, 0.22), transparent 38%),
        linear-gradient(180deg, #030611 0%, #050918 22%, #070d1f 55%, #03050c 100%);
    font: 400 1.5rem/1.75 "Trebuchet MS", "Segoe UI", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    background:
        linear-gradient(rgba(18, 255, 207, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.05), transparent 18%, transparent 82%, rgba(255,255,255,0.03));
    background-size: 46px 46px, 46px 46px, auto;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.96), rgba(0,0,0,0.82) 36%, transparent 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.10), transparent 28%),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 6px);
    mix-blend-mode: screen;
    opacity: 0.45;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
    color: #fff;
}

button,
input {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

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

.header-translate-slot {
    position: relative;
    z-index: 30;
    display: flex;
    justify-content: flex-end;
    width: min(var(--container), calc(100% - 32px));
    margin: 8px auto 0;
    pointer-events: none;
}

.header-translate-slot .gtranslate_wrapper {
    pointer-events: auto;
    transform-origin: top right;
    transform: scale(clamp(0.76, 0.6 + 0.4vw, 1));
}

@media (max-width: 768px) {
    .header-translate-slot {
        width: calc(100% - 24px);
        margin-top: 6px;
    }

    .header-translate-slot .gtranslate_wrapper {
        transform: scale(clamp(0.68, 0.48 + 0.9vw, 0.92));
    }
}

.site-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 520px;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 217, 255, 0.08), transparent 55%),
        radial-gradient(circle at 12% 0%, rgba(57,255,136,0.16), transparent 26%),
        radial-gradient(circle at 86% 0%, rgba(123,97,255,0.18), transparent 28%);
}

.score-ticker {
    position: relative;
    border-bottom: 1px solid rgba(0, 217, 255, 0.16);
    background: rgba(2, 7, 19, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: inset 0 -1px 0 rgba(57,255,136,0.08);
}

.ticker-inner {
    display: grid;
    grid-template-columns: 150px 1fr 94px;
    align-items: center;
    gap: 18px;
    min-height: 50px;
}

.ticker-label,
.ticker-more {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--secondary);
}

.ticker-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    overflow: hidden;
    color: #d8eeff;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.16);
}

.ticker-track span::after {
    content: "/";
    color: rgba(71, 217, 255, 0.35);
    margin-left: 28px;
}

.sports-header {
    position: sticky;
    top: 0;
    z-index: 20;
    overflow: visible;
    background: rgba(4, 9, 24, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(71, 217, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-main {
    width:100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 20px;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(0,217,255,0.95), rgba(57,255,136,0.86));
    color: #04111d;
    font: 900 1.8rem/1 "Impact", "Arial Narrow", sans-serif;
    letter-spacing: 0.08em;
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.28), 0 10px 30px rgba(0, 0, 0, 0.34);
}

.brand-copy strong,
.hero-copy h1,
.section-heading h2,
.page-hero h1,
.story-card h3,
.sidebar-card h3,
.article-card h3,
.player-card h3,
.team-card h3,
.league-card h3,
.video-card h3,
.score-card h3,
.content-article h2,
.ranking-table strong {
    font-family: "Impact", "Arial Narrow", sans-serif;
    letter-spacing: 0.05em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-main .brand-copy strong {
    font-size: 2.2rem;
    line-height: 1;
}

.header-main .brand-copy em {
    display: block;
    color: rgba(57,255,136,0.75);
    font-style: normal;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 1.05rem;
}

.brand-copy strong {
    font-size: 3rem;
    line-height: 1;
    text-shadow: 0 0 18px rgba(0, 217, 255, 0.20);
}

.brand-copy em {
    color: var(--muted);
    font-style: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.top-links {
    display: flex;
    gap: 16px;
    color: var(--muted);
    font-size: 1.25rem;
}

.top-links a:hover {
    color: var(--secondary);
    text-shadow: 0 0 12px rgba(57,255,136,0.35);
}

.header-search {
    display: flex;
    align-items: center;
    width: 240px;
    max-width: 100%;
    border: 1px solid rgba(71, 217, 255, 0.22);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(7, 14, 30, 0.82);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.header-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 8px 12px;
    font-size: 1.3rem;
}

.header-search input::placeholder {
    color: rgba(137, 167, 201, 0.74);
}

.header-search button {
    width: 42px;
    height: 36px;
    flex-shrink: 0;
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #04111d;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(71, 217, 255, 0.22);
    border-radius: 12px;
    background: rgba(8, 15, 33, 0.88);
    color: #fff;
}

.sports-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sports-nav::-webkit-scrollbar {
    display: none;
}

.sports-nav > .nav-link,
.sports-nav .nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: #d8efff;
    font-size: 1.3rem;
    background: transparent;
    white-space: nowrap;
    border: 1px solid transparent;
}

.sports-nav > .nav-link:hover,
.sports-nav > .nav-link.is-active,
.sports-nav .nav-trigger:hover,
.sports-nav .nav-item.is-open > .nav-trigger {
    background: linear-gradient(135deg, rgba(0,217,255,0.16), rgba(57,255,136,0.08));
    border-color: rgba(71, 217, 255, 0.24);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(57,255,136,0.08) inset, 0 0 18px rgba(0,217,255,0.12);
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-item:last-child .nav-dropdown {
    left: auto;
    right: 0;
}

.nav-caret {
    font-size: 1.1rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown.is-open .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 40;
    min-width: 210px;
    padding: 8px;
    border: 1px solid rgba(71, 217, 255, 0.18);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(9, 18, 37, 0.98), rgba(5, 11, 23, 0.99));
    box-shadow: var(--shadow-neon);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
    color: #d7e1f4;
    font-size: 1.35rem;
    line-height: 1.4;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
    background: rgba(0, 217, 255, 0.12);
    color: #fff;
}

.nav-dropdown a + a {
    margin-top: 2px;
}

.page-main {
    position: relative;
    padding: 34px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.84fr);
    gap: 24px;
    margin-bottom: 28px;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .8s ease, transform 6s ease;
}

.hero-carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 7, 16, 0.18), rgba(3, 7, 16, 0.92)),
        linear-gradient(135deg, rgba(0,217,255,0.18), transparent 36%, rgba(57,255,136,0.10) 72%, transparent 100%);
}

.hero-carousel-slide.is-active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.06);
}

.hero-carousel-caption {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    max-width: 64%;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(5, 14, 28, 0.48);
    border: 1px solid rgba(71, 217, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #fff;
    box-shadow: 0 0 20px rgba(0,217,255,0.08);
}

.hero-carousel-caption span {
    font-size: 1.1rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(57,255,136,0.86);
}

.hero-carousel-caption strong {
    font-size: 2rem;
    line-height: 1.1;
    text-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.hero-card .hero-copy {
    z-index: 2;
}

.hero-card .hero-copy,
.hero-card .hero-copy * {
    position: relative;
}

.hero-card {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: 30px;
    border: 1px solid rgba(71, 217, 255, 0.16);
    box-shadow: var(--shadow-neon);
    background: radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 40%);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 8, 16, 0.05), rgba(4, 8, 16, 0.94)),
        url("../banner/b1.jpg") center/cover no-repeat;
    transform: scale(1.08);
    transition: transform 10s ease;
    animation: hero-pan 12s ease-in-out infinite alternate;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(900px 420px at 16% 12%, rgba(0, 217, 255, 0.24), transparent 58%),
        radial-gradient(760px 420px at 88% 18%, rgba(57, 255, 136, 0.14), transparent 58%),
        radial-gradient(820px 520px at 56% 112%, rgba(123, 97, 255, 0.16), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.00) 34%, rgba(0,0,0,0.34));
    mix-blend-mode: screen;
    opacity: 0.96;
}

.feature-highlight:hover::before {
    transform: scale(1.12);
}

.feature-highlight:hover::after {
    opacity: 1;
}

.hero-copy {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 34px;
    z-index: 2;
    max-width: 720px;
}

.hero-live-orbit {
    position: absolute;
    right: -100px;
    top: -120px;
    width: 430px;
    height: 430px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.98;
    filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.35));
}

.hero-live-orbit .orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(71, 217, 255, 0.22);
    background: radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.12), transparent 55%);
}

.hero-live-orbit .orbit-ring--one {
    transform: rotate(8deg);
    animation: orbitSpin 18s linear infinite;
}

.hero-live-orbit .orbit-ring--two {
    inset: 34px;
    border-color: rgba(57, 255, 136, 0.20);
    background: radial-gradient(circle at 70% 30%, rgba(57, 255, 136, 0.12), transparent 58%);
    animation: orbitSpinReverse 26s linear infinite;
}

.hero-live-orbit .orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 255, 63, 0.95);
    box-shadow: 0 0 0 10px rgba(212, 255, 63, 0.10), 0 0 40px rgba(212, 255, 63, 0.30);
}

.hero-live-orbit .orbit-dot--one {
    left: 74px;
    top: 62px;
}

.hero-live-orbit .orbit-dot--two {
    right: 78px;
    bottom: 92px;
    background: rgba(0, 217, 255, 0.95);
    box-shadow: 0 0 0 10px rgba(0, 217, 255, 0.10), 0 0 44px rgba(0, 217, 255, 0.35);
}

.hero-match-pulse {
    position: absolute;
    left: 28px;
    top: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(71, 217, 255, 0.22);
    background: rgba(4, 11, 22, 0.46);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 22px rgba(0,217,255,0.12);
}

.hero-match-pulse span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 28px;
    border-radius: 999px;
    font: 900 1.15rem/1 "Impact", "Arial Narrow", sans-serif;
    letter-spacing: 0.18em;
    background: linear-gradient(135deg, rgba(255, 79, 216, 0.95), rgba(0, 217, 255, 0.88));
    color: #fff;
    box-shadow: 0 14px 34px rgba(255, 79, 216, 0.24);
    position: relative;
    overflow: hidden;
}

.hero-match-pulse span::after {
    content: "";
    position: absolute;
    inset: -80% 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: translateX(-120%);
    animation: liveSheen 2.6s ease-in-out infinite;
    opacity: 0.6;
}

.hero-match-pulse strong {
    font-size: 1.35rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0,217,255,0.12);
    border: 1px solid rgba(71, 217, 255, 0.24);
    color: #c9faff;
    font-size: 1.18rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    box-shadow: 0 0 20px rgba(0,217,255,0.08);
}

.hero-copy h1 {
    margin: 18px 0 14px;
    font-size: 6.8rem;
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(0,217,255,0.18), 0 18px 60px rgba(0,0,0,0.55);
}

.hero-copy h1::after {
    content: "";
    display: block;
    width: min(460px, 74%);
    height: 3px;
    margin-top: 14px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.98), rgba(57, 255, 136, 0.88), rgba(123, 97, 255, 0.64), transparent);
    box-shadow: 0 0 20px rgba(0,217,255,0.22);
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 22px;
    color: #d8ecff;
    font-size: 1.68rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn,
.pill,
.meta-chip,
.rank-badge,
.live-tag,
.stat-tag,
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
}

.btn {
    position: relative;
    min-height: 48px;
    padding: 0 20px;
    font-weight: 700;
    border: 1px solid transparent;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #04111d;
}

.btn-secondary {
    border: 1px solid rgba(71, 217, 255, 0.22);
    background: rgba(8, 17, 37, 0.68);
    color: #fff;
}

.btn-glow {
    box-shadow: 0 0 0 1px rgba(0,217,255,0.12), 0 0 22px rgba(0, 217, 255, 0.18), 0 16px 36px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow::after,
.home-page .hero-actions .btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 12%, rgba(255,255,255,0.55) 50%, transparent 88%);
    transform: translateX(-120%);
    animation: button-sheen 3.4s ease-in-out infinite;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(57,255,136,0.14), 0 0 24px rgba(57, 255, 136, 0.18), 0 18px 40px rgba(0, 0, 0, 0.42);
}

.btn-sm {
    min-height: 34px;
    padding: 0 14px;
    font-size: 1.2rem;
}

.text-highlight {
    color: var(--secondary);
    font-size: 0.55em;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.hero-stat,
.quickfact,
.brand-note,
.summary-pair,
.profile-row,
.stat-item,
.roster-card,
.sidebar-feed-item,
.schedule-row,
.article-card,
.team-card,
.player-card,
.video-card,
.score-card,
.league-card,
.content-article,
.panel,
.sidebar-card,
.table-card,
.quote-card,
.home-channels,
.home-cta {
    position: relative;
    border: 1px solid rgba(71, 217, 255, 0.12);
    background: linear-gradient(180deg, rgba(10, 18, 40, 0.90), rgba(6, 11, 24, 0.92));
    box-shadow: var(--shadow);
}

.hero-stat::before,
.quickfact::before,
.brand-note::before,
.summary-pair::before,
.profile-row::before,
.stat-item::before,
.roster-card::before,
.sidebar-feed-item::before,
.schedule-row::before,
.article-card::before,
.team-card::before,
.player-card::before,
.video-card::before,
.score-card::before,
.league-card::before,
.content-article::before,
.panel::before,
.sidebar-card::before,
.table-card::before,
.quote-card::before,
.home-channels::before,
.home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0,217,255,0.08), transparent 38%, rgba(57,255,136,0.06) 72%, transparent 100%);
}

.hero-side {
    display: grid;
    gap: 18px;
}

.panel {
    padding: 22px;
    border-radius: var(--radius);
}

.panel-video {
    width: 3222px;
}

.panel-head,
.section-heading,
.sidebar-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-head h2,
.section-heading h2,
.sidebar-head h3,
.content-article h2 {
    margin: 0;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
}

.panel-head a,
.section-heading a,
.sidebar-head a {
    color: var(--secondary);
    font-size: 1.3rem;
}

.section-heading p,
.panel-head p,
.sidebar-head p,
.section-note {
    color: var(--muted);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 34px;
    margin-bottom: 24px;
    border-radius: 28px;
    border: 1px solid rgba(71, 217, 255, 0.16);
    background: linear-gradient(180deg, rgba(9, 18, 39, 0.92), rgba(5, 11, 24, 0.94));
    box-shadow: var(--shadow-neon);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(880px 420px at 18% 12%, rgba(0,217,255,0.18), transparent 62%),
        radial-gradient(760px 420px at 88% 18%, rgba(57,255,136,0.12), transparent 60%),
        linear-gradient(180deg, rgba(4, 9, 21, 0.12), rgba(4, 9, 21, 0.72));
    pointer-events: none;
}

.page-hero.live-hero::before {
    background:
        radial-gradient(920px 420px at 16% 12%, rgba(0, 217, 255, 0.22), transparent 62%),
        radial-gradient(760px 420px at 88% 18%, rgba(57, 255, 136, 0.18), transparent 60%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 10px),
        linear-gradient(180deg, rgba(7, 12, 20, 0.60), rgba(7, 12, 20, 0.92));
}

.page-hero.news-hero::before,
.page-hero[data-page="news"]::before {
    background:
        radial-gradient(900px 420px at 22% 10%, rgba(123, 97, 255, 0.16), transparent 62%),
        radial-gradient(720px 420px at 92% 22%, rgba(0, 217, 255, 0.12), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,0.06), transparent 40%),
        linear-gradient(180deg, rgba(10, 16, 28, 0.68), rgba(10, 16, 28, 0.92));
}

.page-hero.player-hero::before {
    background:
        radial-gradient(520px 520px at 30% 28%, rgba(255, 255, 255, 0.08), transparent 62%),
        radial-gradient(820px 520px at 75% 20%, rgba(0, 217, 255, 0.18), transparent 62%),
        radial-gradient(820px 640px at 55% 115%, rgba(255, 79, 216, 0.14), transparent 66%),
        linear-gradient(180deg, rgba(6, 10, 18, 0.70), rgba(6, 10, 18, 0.94));
}

.page-hero.team-hero::before {
    background:
        radial-gradient(900px 520px at 20% 18%, rgba(57, 255, 136, 0.18), transparent 62%),
        radial-gradient(760px 520px at 90% 22%, rgba(0, 217, 255, 0.18), transparent 62%),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 10px, transparent 10px 22px),
        linear-gradient(180deg, rgba(7, 11, 20, 0.62), rgba(7, 11, 20, 0.92));
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 12px 0 10px;
    font-size: 5.6rem;
    line-height: 0.92;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,217,255,0.14);
}

.page-hero.live-hero h1::after,
.page-hero.news-hero h1::after,
.page-hero[data-page="news"] h1::after,
.page-hero.player-hero h1::after,
.page-hero.team-hero h1::after {
    content: "";
    display: block;
    width: min(520px, 78%);
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.95), rgba(57, 255, 136, 0.80), rgba(255, 79, 216, 0.42), transparent);
    box-shadow: 0 0 20px rgba(0,217,255,0.20);
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 1.65rem;
    color: #d9ecff;
}

.page-hero-meta,
.meta-row,
.tag-row,
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-hero-meta {
    margin-top: 18px;
}

.pill,
.meta-chip,
.live-tag,
.filter-chip,
.rank-badge,
.stat-tag {
    min-height: 32px;
    padding: 0 14px;
    border: 1px solid rgba(71, 217, 255, 0.18);
    background: rgba(6, 14, 31, 0.72);
    color: #dffbff;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: inset 0 0 18px rgba(0,217,255,0.04);
}

.live-tag {
    background: linear-gradient(135deg, rgba(0,217,255,0.18), rgba(57,255,136,0.12));
    color: #efffff;
}

.live-chip {
    background: linear-gradient(135deg, rgba(57,255,136,0.24), rgba(0,217,255,0.16));
    border-color: rgba(57,255,136,0.42);
    color: #f4fff8;
}

.filter-row .filter-chip.is-active,
.sidebar-card .filter-chip:first-child,
.filter-row .filter-chip:first-child {
    background: linear-gradient(135deg, rgba(0,217,255,0.18), rgba(57,255,136,0.14));
    border-color: rgba(57,255,136,0.30);
    color: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 24px;
}

.main-column,
.sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
}

.media-card iframe {
    height: 200px;
}


.content-article,
.sidebar-card,
.table-card,
.quote-card,
.article-card,
.team-card,
.player-card,
.video-card,
.score-card,
.league-card {
    border-radius: 22px;
}

.player-card {
    overflow: hidden;
}

.player-card .card-body {
    padding: 14px;
}

.player-card h3 {
    margin: 0 0 6px;
    font-size: 1.85rem;
    line-height: 1.02;
}

.player-card p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.45;
}

.player-card .cover {
    aspect-ratio: 16 / 9;
}

.player-card .player-meta {
    margin-top: 8px;
}

.player-card .player-meta span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 1rem;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 14px;
}

.player-grid-item {
    overflow: hidden;
    padding: 0;
}

.player-grid-link {
    display: grid;
    gap: 10px;
    height: 100%;
    padding: 12px;
    color: inherit;
}

.player-grid-pic {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,217,255,0.16), rgba(57,255,136,0.10));
}

.player-grid-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.player-grid-body {
    display: grid;
    gap: 4px;
}

.player-grid-body strong {
    font-size: 1.45rem;
    line-height: 1.15;
}

.player-grid-body span {
    font-size: 1.05rem;
    line-height: 1.45;
    opacity: 0.88;
}

.team-grid,
.league-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px;
}

.team-grid.cards-6 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.team-card--thumb .team-card-link {
    display: grid;
    height: 100%;
    color: inherit;
}

.team-card--thumb .card-body {
    padding: 10px;
}

.team-card--thumb .cover {
    aspect-ratio: 16 / 11;
}

.team-card--thumb .card-body h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.12;
}

.team-card--thumb .card-body p {
    font-size: 0.95rem;
    line-height: 1.35;
}

.team-grid-item,
.league-grid-item {
    overflow: hidden;
    padding: 0;
}

.team-grid-link,
.league-grid-link {
    display: grid;
    gap: 10px;
    height: 100%;
    padding: 12px;
    color: inherit;
}

.team-grid-pic,
.league-grid-pic {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,217,255,0.16), rgba(57,255,136,0.10));
}

.team-grid-pic img,
.league-grid-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-grid-body,
.league-grid-body {
    display: grid;
    gap: 4px;
}

.team-grid-body strong,
.league-grid-body strong {
    font-size: 1.45rem;
    line-height: 1.15;
}

.team-grid-body span,
.league-grid-body span {
    font-size: 1.05rem;
    line-height: 1.45;
    opacity: 0.88;
}

.article-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    overflow: hidden;
}

.article-cover {
    min-height: 100%;
    background: linear-gradient(135deg, rgba(0,217,255,0.24), rgba(123,97,255,0.18));
}

.article-cover img,
.cover img,
.brand-image,
.player-portrait,
.team-crest {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body,
.card-body,
.sidebar-stack-body,
.table-card,
.content-article {
    position: relative;
    z-index: 1;
}

.article-body {
    padding: 24px;
}

.article-body h3 {
    margin: 0 0 12px;
    font-size: 2.8rem;
    line-height: 1.05;
}

.player-list,
.team-list,
.rank-list,
.quick-list,
.sidebar-feed-list,
.home-fixture-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-row,
.player-item,
.team-item,
.home-fixture-item,
.sidebar-feed-item {
    border-radius: 18px;
}

.schedule-row,
.home-fixture-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
}

.player-item a,
.team-item a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
}

.player-item strong,
.team-item strong,
.schedule-row strong,
.home-fixture-item .fixture-teams,
.quick-list a,
.sidebar-feed-item a,
.profile-row strong,
.summary-pair strong,
.brand-note strong {
    color: #fff;
}

.player-item span,
.team-item span,
.schedule-row p,
.home-fixture-item span,
.quick-list li,
.sidebar-feed-item time,
.profile-row span,
.summary-pair span,
.brand-note span,
.section-note,
.content-article p,
.content-article li,
.content-article td,
.content-article th,
.table-card td,
.table-card th {
    color: var(--muted);
}

.sidebar-stack {
    display: grid;
    gap: 18px;
}

.sidebar-card,
.content-article,
.table-card,
.quote-card {
    padding: 22px;
}

.sidebar-head h3,
.author-card h3,
.table-card h3,
.quote-card h3 {
    margin: 0 0 12px;
    font-size: 2rem;
}

.sidebar-feed-item {
    padding: 14px 16px;
}

.sidebar-feed-item + .sidebar-feed-item,
.quick-list li + li,
.rank-list li + li,
.player-list li + li,
.team-list li + li,
.home-fixture-item + .home-fixture-item {
    margin-top: 12px;
}

.feed-rank,
.quick-rank,
.rank-badge,
.team-code,
.player-code,
.league-sign,
.team-sign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,217,255,0.22), rgba(57,255,136,0.16));
    color: #fff;
    box-shadow: 0 0 18px rgba(0,217,255,0.12);
}

.player-hero-main,
.team-hero-main,
.live-hero-main {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1.4fr) minmax(220px, 0.8fr);
    gap: 24px;
    align-items: center;
}

.live-hero-main {
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.8fr);
}

.player-portrait-wrap,
.team-identity-mark,
.brand-visual {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(71, 217, 255, 0.18);
    background: linear-gradient(135deg, rgba(0,217,255,0.12), rgba(123,97,255,0.16));
    box-shadow: 0 0 26px rgba(0,217,255,0.10);
}

.player-portrait--fallback,
.team-crest--fallback,
.brand-image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font: 900 3rem/1 "Impact", "Arial Narrow", sans-serif;
    letter-spacing: 0.08em;
    color: #fff;
}

.player-code,
.team-code {
    min-height: 80px;
    border-radius: 20px;
    font: 900 2.6rem/1 "Impact", "Arial Narrow", sans-serif;
    letter-spacing: 0.08em;
}

.player-quickfacts,
.team-brand-notes,
.live-quickfacts,
.stat-grid,
.player-summary-grid,
.team-summary-grid,
.player-profile-grid,
.team-profile-grid,
.team-brand-grid,
.video-grid,
.cards-4,
.league-grid,
.roster-grid {
    display: grid;
    gap: 14px;
}

.player-quickfacts,
.team-brand-notes,
.live-quickfacts,
.stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.player-summary-grid,
.team-summary-grid,
.team-brand-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
}

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

.cards-4,
.video-grid,
.league-grid,
.roster-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 视频并排：列表页 / 首页模块统一走网格 */
.video-grid {
    align-items: start;
}

.video-card {
    overflow: hidden;
}

.video-card .card-body {
    padding: 14px;
}

.video-card h3 {
    margin: 0 0 8px;
    font-size: 1.9rem;
    line-height: 1.05;
}

.video-card p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.45;
}

.video-card .cover {
    aspect-ratio: 16 / 9;
}

.video-card .play-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(71, 217, 255, 0.18);
    background: rgba(6, 14, 31, 0.72);
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(0,217,255,0.10);
}

.stat-item,
.quickfact,
.brand-note,
.summary-pair,
.profile-row {
    padding: 18px;
    border-radius: 18px;
}

.stat-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 3.2rem;
    color: #fff;
}

.profile-row,
.summary-pair,
.brand-note,
.quickfact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.table-card table,
.player-boxscore-table table {
    width: 100%;
    border-collapse: collapse;
}

.table-card th,
.table-card td,
.player-boxscore-table th,
.player-boxscore-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(71, 217, 255, 0.10);
    text-align: left;
}

.content-article blockquote {
    margin: 20px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--primary);
    background: rgba(0,217,255,0.08);
    color: #f5f7fd;
    font-size: 1.8rem;
}

.home-page {
    position: relative;
    isolation: isolate;
}

.home-page::before {
    content: "";
    position: absolute;
    inset: -120px 0 auto;
    height: 900px;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at 50% 10%, rgba(0, 217, 255, 0.24), transparent 28%),
        radial-gradient(circle at 16% 0%, rgba(57, 255, 136, 0.14), transparent 22%),
        radial-gradient(circle at 100% 12%, rgba(123, 97, 255, 0.18), transparent 20%);
}

.home-page::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.34;
    background:
        linear-gradient(180deg, rgba(2, 6, 17, 0.18), rgba(2, 6, 17, 0) 22%, rgba(2, 6, 17, 0.42) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25.5%, transparent 50%, rgba(255, 255, 255, 0.04) 50.5%, rgba(255, 255, 255, 0.04) 75%, transparent 75.5%),
        linear-gradient(90deg, rgba(0, 217, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 96px 96px, 48px 48px;
}

.home-page > .hero-grid,
.home-page > .home-channels,
.home-page > .section {
    opacity: 1;
    transform: none;
    animation: none;
}

.home-page .hero-grid {
    align-items: stretch;
}

.home-page .hero-copy::before {
    content: "";
    position: absolute;
    inset: -26px -26px -30px -26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(4, 10, 22, 0.24), rgba(4, 10, 22, 0.86));
    border: 1px solid rgba(71, 217, 255, 0.12);
    backdrop-filter: blur(8px);
    z-index: -1;
}

.home-page .hero-copy::after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    bottom: -12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57,255,136,0.55), rgba(0,217,255,0.75), transparent);
    opacity: 0.7;
}

.home-page .hero-stats {
    margin-bottom: 20px;
}

.home-page .hero-stat {
    padding: 16px;
    border-radius: 18px;
    backdrop-filter: blur(6px);
}

.home-page .hero-stat strong {
    font-size: 3.2rem;
    color: #fff;
}

.home-page .hero-side .panel {
    min-height: 100%;
}

.home-page .mini-scoreboard {
    display: grid;
    gap: 12px;
}

.home-page .score-card--compact,
.home-page .score-card--live,
.home-page .league-card--home,
.home-page .video-card,
.home-page .article-card,
.home-page .sidebar-card,
.home-page .home-channels,
.home-page .home-fixtures,
.home-page .panel--news {
    box-shadow: var(--shadow-neon);
}

.home-page .score-card--compact {
    padding: 16px;
}

.home-page .score-card--compact .score-top,
.home-page .score-card--compact .score-middle,
.score-card-link,
.home-fixture-item,
.quick-list li,
.sidebar-feed-item,
.rank-list a {
    position: relative;
    z-index: 1;
}

.home-page .score-card--compact .score-middle strong,
.home-page .score-card--live .score-middle strong {
    color: #fff;
    text-shadow: 0 0 14px rgba(0,217,255,0.20);
}

.home-page .score-card--live {
    overflow: hidden;
}

.home-page .score-card--live::after {
    content: "";
    position: absolute;
    inset: auto -20% 0;
    height: 80px;
    background: radial-gradient(circle at center, rgba(57,255,136,0.14), transparent 62%);
    pointer-events: none;
}

.home-channels {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}

.channel-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    min-height: 64px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(71, 217, 255, 0.18);
    background: linear-gradient(180deg, rgba(7, 16, 34, 0.88), rgba(4, 10, 21, 0.94));
    color: #eafcff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.channel-chip .fa {
    color: var(--secondary);
    text-shadow: 0 0 14px rgba(57,255,136,0.26);
}

.channel-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(57,255,136,0.28);
    box-shadow: 0 0 24px rgba(0,217,255,0.14);
}

.home-page .section-heading {
    margin-bottom: 20px;
}

.home-page .section-heading::before {
    content: "";
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 16px rgba(0,217,255,0.22);
}

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

.home-page .section-heading h2 {
    font-size: 3rem;
}

.home-page .section-heading p {
    margin: 6px 0 0;
}

.home-page .feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 24px;
}

.home-page .panel--news .list-shell {
    display: grid;
    gap: 14px;
}

.home-page .article-card--featured {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.home-page .article-card:hover .article-cover img,
.video-card:hover .cover img,
.player-portrait-wrap:hover img,
.team-identity-mark:hover img,
.brand-visual:hover img {
    transform: scale(1.04);
}

.article-cover img,
.cover img,
.brand-image,
.player-portrait,
.team-crest {
    transition: transform 0.4s ease;
}

.home-page .home-sidebar {
    display: grid;
    gap: 18px;
}

.home-page .home-league-grid,
.home-page .video-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-page .home-fixtures {
    padding: 24px;
}

.home-page .home-fixture-item {
    grid-template-columns: 90px 140px minmax(0, 1fr) auto;
    padding: 16px 18px;
}

.home-page .home-fixture-item .fixture-status {
    justify-self: end;
}

.home-page .home-fixture-item .fixture-teams {
    font-size: 1.52rem;
}

.home-page .home-cta {
    padding: 34px 34px 32px;
}

.home-page .home-cta-copy h2 {
    font-size: 3rem;
}

.home-page .home-cta-actions .btn {
    min-width: 160px;
}

.home-page .panel,
.home-page .sidebar-card,
.home-page .article-card,
.home-page .league-card,
.home-page .player-card,
.home-page .video-card,
.home-page .score-card,
.home-page .home-cta,
.home-page .home-channels,
.home-page .content-article,
.home-page .table-card,
.home-page .quote-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}


.home-page .player-grid.small-cards {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.home-page .player-grid.small-cards .player-card {
    width: auto;
    padding: 0;
    min-height: 0;
    overflow: hidden;
}

.home-page .player-grid.small-cards .player-card .card-body {
    padding: 12px 12px 14px;
}

.home-page .player-grid.small-cards .player-card .cover {
    aspect-ratio: 1 / 1;
}

.home-page .player-grid.small-cards .player-card h3 {
    margin: 0 0 6px;
    font-size: 1.6rem;
    line-height: 1.02;
}

.home-page .player-grid.small-cards .player-card p {
    font-size: 1.05rem;
    line-height: 1.38;
    margin: 0;
}

.home-page .player-grid.small-cards .player-card .player-meta {
    margin-top: 8px;
}

.home-page .player-grid.small-cards .player-card .player-meta span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.95rem;
}

.home-page .panel:hover,
.home-page .sidebar-card:hover,
.home-page .league-card:hover,
.home-page .player-card:hover,
.home-page .video-card:hover,
.home-page .home-cta:hover,
.home-page .home-channels:hover,
.home-page .content-article:hover,
.home-page .table-card:hover,
.home-page .quote-card:hover {
    transform: translateY(-4px);
    border-color: rgba(57,255,136,0.24);
    filter: saturate(1.05);
}

.home-page .pagination,
.home-page .pagebar {
    margin-top: 14px;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 6px;
}

.pagination a,
.pagination b,
.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(71, 217, 255, 0.18);
    background: rgba(7, 16, 34, 0.84);
    color: rgba(244, 251, 255, 0.92);
    box-shadow:
        0 0 0 1px rgba(0, 217, 255, 0.08),
        0 0 18px rgba(0, 217, 255, 0.08),
        0 20px 50px rgba(0, 0, 0, 0.26);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.pagination a:hover,
.pagination .page-link:hover {
    transform: translateY(-1px);
    border-color: rgba(57, 255, 136, 0.38);
    box-shadow:
        0 0 0 1px rgba(57, 255, 136, 0.14),
        0 0 22px rgba(57, 255, 136, 0.12),
        0 24px 64px rgba(0, 0, 0, 0.34);
}

.pagination b,
.pagination .active > .page-link,
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, rgba(0,217,255,0.92), rgba(57,255,136,0.85));
    color: #04111d;
    border-color: rgba(57,255,136,0.55);
    box-shadow:
        0 0 0 1px rgba(57,255,136,0.18),
        0 0 26px rgba(0,217,255,0.18),
        0 22px 60px rgba(0, 0, 0, 0.38);
}

.pagination .page-item {
    display: inline-flex;
}

.pagination .page-link {
    text-decoration: none;
}

.pagination .page-item.disabled .page-link,
.pagination .page-link:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.sports-footer {
    margin-top: 60px;
    border-top: 1px solid rgba(71, 217, 255, 0.12);
    background: rgba(3, 8, 19, 0.92);
    box-shadow: inset 0 1px 0 rgba(57,255,136,0.05);
}

.footer-inner {
    padding: 40px 0 22px;
}

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

.footer-col,
.footer-logo,
.footer-links,
.footer-contact,
.footer-bar {
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #04111d;
    font: 900 1.6rem/1 "Impact", "Arial Narrow", sans-serif;
}

.footer-title {
    margin: 0 0 12px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges span,
.back-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(71, 217, 255, 0.18);
    background: rgba(7, 16, 34, 0.88);
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(71, 217, 255, 0.10);
    color: var(--muted);
}

.back-top {
    color: #fff;
    cursor: pointer;
}

@keyframes orbitSpin {
    from { transform: rotate(8deg); }
    to { transform: rotate(368deg); }
}

@keyframes orbitSpinReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes liveSheen {
    0% { transform: translateX(-120%); }
    55% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@keyframes hero-pan {
    from {
        transform: scale(1.08) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.12) translate3d(-1.2%, -0.8%, 0);
    }
}

@keyframes button-sheen {
    from {
        transform: translateX(-120%);
    }
    to {
        transform: translateX(120%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-card::before,
    .hero-live-orbit .orbit-ring--one,
    .hero-live-orbit .orbit-ring--two,
    .hero-match-pulse span::after,
    .btn-glow::after,
    .home-page .hero-actions .btn-primary::after {
        animation: none !important;
    }

    .panel,
    .sidebar-card,
    .article-card,
    .league-card,
    .player-card,
    .video-card,
    .score-card,
    .home-cta,
    .home-channels,
    .content-article,
    .table-card,
    .quote-card,
    .brand-image,
    .player-portrait,
    .team-crest,
    .article-cover img,
    .cover img {
        transition: none !important;
    }
}

@media (max-width: 1200px) {
    .hero-grid,
    .home-page .feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-channels,
    .home-page .home-league-grid,
    .home-page .video-grid,
    .cards-4,
    .league-grid,
    .video-grid,
    .roster-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .player-hero-main,
    .team-hero-main,
    .live-hero-main,
    .player-summary-grid,
    .team-summary-grid,
    .team-brand-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .header-main {
        grid-template-columns: auto auto;
        row-gap: 14px;
    }

    .sports-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

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

    .home-channels,
    .home-page .home-league-grid,
    .home-page .video-grid,
    .cards-4,
    .league-grid,
    .video-grid,
    .roster-grid,
    .player-quickfacts,
    .team-brand-notes,
    .live-quickfacts,
    .stat-grid,
    .player-profile-grid,
    .team-profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-card,
    .home-page .article-card--featured,
    .schedule-row,
    .home-page .home-fixture-item {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 520px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 4.4rem;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .hero-card {
        min-height: 480px;
    }

    .hero-copy {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 3.4rem;
    }

    .home-channels,
    .home-page .home-league-grid,
    .home-page .video-grid,
    .cards-4,
    .league-grid,
    .video-grid,
    .roster-grid,
    .player-quickfacts,
    .team-brand-notes,
    .live-quickfacts,
    .stat-grid,
    .player-profile-grid,
    .team-profile-grid {
        grid-template-columns: 1fr;
    }

    .channel-chip,
    .btn,
    .footer-bar {
        width: 100%;
    }

    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}
