:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a1f2e;
    --bg-card-hover: #242b3d;
    --accent-cyan: #00d4ff;
    --accent-pink: #ff006e;
    --accent-green: #00ff88;
    --accent-yellow: #ffd60a;
    --accent-red: #ff4757;
    --accent-purple: #a855f7;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #1e293b;
    --border-glow: rgba(0, 212, 255, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.15);
    --gradient-cyber: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    --live-panel-bg: rgba(17, 24, 39, 0.97);
    --live-panel-border: rgba(255, 71, 87, 0.5);
    --live-panel-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    --live-panel-head-bg: rgba(0, 212, 255, 0.06);
    --live-team-chip-bg: rgba(255, 255, 255, 0.06);
    --live-row-bg: rgba(0, 0, 0, 0.14);
    --live-meta-color: #b8c5d6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 110px;
}

.dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-glow);
}

h1.logo {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--accent-cyan));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-text .accent {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.viewers-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 20px;
}

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

.viewers-count {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 900;
    color: var(--accent-green);
    text-shadow: 0 0 10px var(--accent-green);
}

.viewers-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid var(--accent-red);
    border-radius: 20px;
    animation: pulse 2s infinite;
}

.live-indicator.hidden {
    display: none;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

.live-text {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-red);
}

.refresh-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.final-hero-countdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 30px;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.12) 55%, rgba(255, 214, 10, 0.08) 100%);
    box-shadow: 0 0 32px rgba(0, 212, 255, 0.12);
}

.final-hero-eyebrow {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.final-hero-matchup {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 6px;
}

.final-hero-date {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.watch-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(168, 85, 247, 0.14));
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.watch-final-btn::after {
    content: '↓';
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

.watch-final-btn:hover {
    transform: translateY(-1px);
    border-color: var(--accent-purple);
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.22);
}

.watch-final-btn:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

.live-matches-anchor {
    height: 0;
    scroll-margin-top: 88px;
}

.live-matches-section.is-floating-panel {
    position: fixed;
    z-index: 9100;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: auto;
    width: auto;
    max-height: min(82vh, 780px);
    margin: 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(12px);
    background: var(--live-panel-bg);
    border: 2px solid var(--live-panel-border);
    box-shadow: var(--live-panel-shadow);
    color: var(--text-primary);
    touch-action: none;
}

.live-matches-section.is-floating-panel.is-positioned {
    bottom: auto;
}

.live-matches-section.is-floating-panel.is-dragging {
    user-select: none;
}

.live-matches-section.is-floating-panel.is-dragging,
.live-matches-section.is-floating-panel.is-dragging * {
    cursor: grabbing !important;
}

.live-matches-section.is-floating-panel .live-section-body {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.live-section-head {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 12px;
    flex-shrink: 0;
    cursor: grab;
}

.live-section-drag {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 52px;
    padding: 8px 10px;
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.18);
    color: var(--accent-cyan);
    cursor: grab;
    font-family: inherit;
    touch-action: none;
}

.live-section-drag:active,
.live-matches-section.is-dragging .live-section-drag {
    cursor: grabbing;
    background: rgba(0, 212, 255, 0.28);
}

.live-section-drag-icon {
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.18em;
}

.live-section-drag-label {
    font-family: 'JetBrains Mono', 'Orbitron', monospace;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}

.live-section-toggle {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.live-section-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.live-section-chevron {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.live-section-hint {
    display: none;
    flex: 1 1 100%;
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.02em;
    text-align: left;
    padding: 2px 0 0;
    animation: live-hint-pulse 2.2s ease-in-out infinite;
}

.live-matches-section.is-panel-collapsed .live-section-hint {
    display: block;
}

.live-matches-section.is-panel-collapsed .final-live-pill {
    display: none;
}

.live-matches-section.is-panel-collapsed {
    max-height: none;
    padding: 10px 14px;
}

.live-matches-section.is-panel-collapsed .live-section-head {
    margin-bottom: 0;
}

.live-matches-section.is-panel-collapsed .live-section-toggle {
    cursor: pointer;
}

@keyframes live-hint-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.live-section-body.is-collapsed {
    display: none;
}

.live-matches-section.scroll-target-flash {
    animation: live-section-flash 1.4s ease;
}

@keyframes live-section-flash {
    0%, 100% { box-shadow: none; }
    35% { box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.45), 0 0 28px rgba(0, 212, 255, 0.18); }
}

.countdown-blocks {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-blocks.is-live .cd-value {
    color: var(--accent-red);
    animation: pulse 1.2s infinite;
}

.cd-block {
    min-width: 78px;
    text-align: center;
    padding: 14px 12px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.cd-value {
    display: block;
    font-family: 'JetBrains Mono', 'Orbitron', monospace;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 6px;
}

.cd-block em {
    font-style: normal;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.cd-sep {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    color: var(--text-muted);
    padding-bottom: 18px;
}

.youtube-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.youtube-section-head .section-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.youtube-sub,
.youtube-note {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.youtube-geo-notice {
    margin-bottom: 14px;
}

.youtube-geo-notice-inner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(250, 204, 21, 0.45);
    background: rgba(250, 204, 21, 0.1);
}

.youtube-geo-flag {
    font-size: 1.6rem;
    line-height: 1;
}

.youtube-geo-notice-inner strong {
    display: block;
    margin-bottom: 4px;
    color: #facc15;
    font-size: 0.9rem;
}

.youtube-geo-notice-inner p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.45;
}

.youtube-shuffle-btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--accent-purple);
    background: rgba(168, 85, 247, 0.12);
    color: var(--text-primary);
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.youtube-shuffle-btn:hover {
    border-color: var(--accent-cyan);
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.yt-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.yt-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.yt-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a0f;
    overflow: hidden;
}

.yt-play-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

.yt-thumb-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    overflow: hidden;
}

.yt-player-wrap,
.yt-player-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.yt-card.is-playing {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.18);
}

.yt-thumb-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.yt-thumb-main.yt-thumb-missing {
    opacity: 0.35;
}

.yt-card:hover .yt-thumb-main {
    transform: scale(1.03);
}

.yt-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    transition: background 0.25s ease;
}

.yt-card:hover .yt-play-btn {
    background: rgba(0, 0, 0, 0.42);
}

.yt-play-bg {
    fill: rgba(0, 0, 0, 0.72);
}

.yt-play-icon {
    fill: #fff;
}

.yt-watch-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.yt-card-meta {
    padding: 12px;
}

.yt-card-meta h3 {
    font-size: 0.82rem;
    line-height: 1.35;
    margin-bottom: 6px;
    font-weight: 600;
}

.yt-watch-link {
    font-size: 0.74rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.yt-watch-link:hover {
    text-decoration: underline;
}

.yt-card--source {
    display: block;
    color: inherit;
    text-decoration: none;
}

.yt-card--source:hover {
    border-color: var(--yt-accent, var(--accent-cyan));
}

.yt-media--source {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(168, 85, 247, 0.14));
}

.yt-source-panel {
    text-align: center;
}

.yt-source-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 8px;
}

.yt-source-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: var(--yt-accent, var(--accent-cyan));
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.yt-source-desc {
    margin: 0 0 8px;
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.yt-card--blocked-my {
    display: block;
    color: inherit;
    text-decoration: none;
}

.yt-card--blocked-my .yt-watch-badge {
    background: rgba(220, 38, 38, 0.88);
}

.yt-geo-hint {
    display: block;
    font-size: 0.72rem;
    color: #fbbf24;
    margin-bottom: 6px;
}

.yt-blocked-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    text-align: center;
    background: rgba(10, 14, 23, 0.94);
}

.yt-blocked-panel strong {
    color: #fbbf24;
    font-size: 0.88rem;
}

.yt-blocked-panel p {
    margin: 0;
    font-size: 0.74rem;
    color: var(--text-muted);
    max-width: 220px;
}

.yt-card.is-blocked {
    border-color: rgba(250, 204, 21, 0.45);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.section-title .icon {
    font-size: 1.3rem;
}

section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
}

.live-final-command:not(.is-floating-panel) {
    border: 2px solid rgba(255, 71, 87, 0.45);
    box-shadow: 0 0 28px rgba(255, 71, 87, 0.15);
}

.live-matches-section.is-floating-panel .live-match-card {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.live-matches-section.is-floating-panel .match-group {
    color: var(--text-secondary);
    font-weight: 600;
}

.live-matches-section.is-floating-panel .team-name {
    color: var(--text-primary);
    font-weight: 600;
}

.live-matches-section.is-floating-panel .team-score {
    color: var(--accent-cyan);
    text-shadow: none;
}

.live-matches-section.is-floating-panel .match-stadium,
.live-matches-section.is-floating-panel .final-live-clock-box,
.live-matches-section.is-floating-panel .final-live-meta {
    color: var(--live-meta-color);
}

.live-matches-section.is-floating-panel .final-live-clock-box strong {
    color: var(--accent-cyan);
}

.live-matches-section.is-floating-panel .final-archive-row {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.live-matches-section.is-floating-panel .archive-clock {
    color: var(--accent-cyan);
}

.live-matches-section.is-floating-panel .archive-score {
    color: var(--text-secondary);
}

.live-matches-section.is-floating-panel .loading {
    color: var(--text-secondary);
    font-weight: 500;
}

.live-matches-section.is-floating-panel .live-section-drag-label,
.live-matches-section.is-floating-panel .live-section-title,
.live-matches-section.is-floating-panel .live-column-title {
    color: var(--text-primary);
}

.live-matches-section.is-floating-panel .live-column-title {
    color: var(--accent-cyan);
}

.live-matches-section.is-floating-panel .final-live-pill {
    color: var(--accent-red);
    border-color: color-mix(in srgb, var(--accent-red) 55%, transparent);
    background: color-mix(in srgb, var(--accent-red) 12%, transparent);
}

.live-matches-section.is-floating-panel .live-section-chevron {
    color: var(--text-secondary);
}

.final-live-pill {
    margin-left: auto;
    font-family: 'Orbitron', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-red);
    border: 1px solid rgba(255, 71, 87, 0.45);
    border-radius: 999px;
    padding: 4px 10px;
    animation: pulse 2s infinite;
}

.live-finals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

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

.live-column-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    padding-left: 4px;
}

.third-live-card {
    border-color: rgba(255, 214, 10, 0.35);
}

.third-live-card.live::before {
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-cyan));
}

.final-live-suite {
    margin-bottom: 0;
}

.final-live-row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
    gap: 20px;
    align-items: stretch;
}

.final-live-card {
    border-color: rgba(255, 71, 87, 0.35);
}

.final-live-card.live::before {
    background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
}

.final-live-clock-box {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.final-live-clock-box strong {
    font-family: 'JetBrains Mono', 'Orbitron', monospace;
    font-size: 1.35rem;
    color: var(--accent-cyan);
    letter-spacing: 0.06em;
}

.tv-pitch-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.tv-bezel {
    width: 100%;
    padding: 14px 14px 18px;
    border-radius: 18px 18px 10px 10px;
    background: linear-gradient(180deg, #2a3140 0%, #151a24 100%);
    border: 2px solid #3d4658;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.tv-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    background: #0d2818;
    border: 2px solid #0a0e17;
}

.tv-screen canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.tv-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tv-live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    background: rgba(255, 71, 87, 0.88);
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255, 71, 87, 0.55);
}

.tv-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 2px,
        transparent 4px
    );
    opacity: 0.35;
    animation: tv-flicker 4s linear infinite;
}

.tv-stand {
    width: 42%;
    height: 12px;
    margin-top: -2px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(180deg, #3d4658, #1a2030);
}

.final-live-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.final-archive-feed {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 160px;
    overflow-y: auto;
}

.final-archive-row {
    display: grid;
    grid-template-columns: 52px 1fr 44px;
    gap: 10px;
    align-items: center;
    font-size: 0.76rem;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.final-archive-row.muted {
    grid-template-columns: 1fr;
    color: var(--text-muted);
    font-size: 0.74rem;
}

.archive-clock {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.archive-tag {
    display: inline-block;
    margin-right: 4px;
    padding: 1px 6px;
    border-radius: 4px;
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent-cyan);
}

.archive-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: right;
}

.final-archive-row.event-goal {
    border-color: rgba(34, 197, 94, 0.45);
    background: rgba(34, 197, 94, 0.08);
}

.final-archive-row.event-goal .archive-tag {
    background: rgba(34, 197, 94, 0.18);
    color: #4ade80;
}

.final-archive-row.event-penalty {
    border-color: rgba(250, 204, 21, 0.45);
    background: rgba(250, 204, 21, 0.08);
}

.final-archive-row.event-penalty .archive-tag {
    background: rgba(250, 204, 21, 0.18);
    color: #facc15;
}

.final-archive-row.event-kickoff .archive-tag,
.final-archive-row.event-fulltime .archive-tag,
.final-archive-row.event-whistle .archive-tag {
    background: rgba(168, 85, 247, 0.18);
    color: var(--accent-purple);
}

.final-archive-row.event-positions .archive-tag {
    background: rgba(148, 163, 184, 0.15);
    color: var(--text-secondary);
}

.subtle-live-empty {
    padding: 24px 12px;
    font-size: 0.95rem;
}

@keyframes tv-flicker {
    0%, 100% { opacity: 0.28; }
    50% { opacity: 0.42; }
}

.live-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.live-match-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
}

.live-match-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.match-group {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
}

.match-status {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 700;
}

.match-status.live {
    background: rgba(255, 71, 87, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.match-status.finished {
    background: rgba(100, 116, 139, 0.2);
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}

.match-status.scheduled {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 2px solid var(--border-color);
}

.team-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-score {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan);
    min-width: 80px;
    text-align: center;
}

.match-scorers {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.scorers-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.scorer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.scorer-home {
    justify-content: flex-end;
}

.scorer-away {
    justify-content: flex-start;
}

.match-time {
    text-align: center;
    margin-top: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--accent-green);
}

.group-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.group-tab {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.group-tab:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.group-tab.active {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.group-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.standings-table-wrapper {
    overflow-x: auto;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.standings-table th {
    padding: 12px 10px;
    text-align: left;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-color);
}

.standings-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-color);
}

.standings-table tr:hover {
    background: var(--bg-card-hover);
}

.standings-table .team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.standings-table .team-flag-small {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
}

.standings-table .pts-cell {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: var(--accent-cyan);
}

.chart-wrapper {
    position: relative;
    height: 300px;
}

.chart-wrapper.small {
    height: 250px;
    margin-top: 20px;
}

.chart-wrapper.ladder {
    height: 450px;
}

.ladder-layout {
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: 24px;
    align-items: stretch;
}

.final-prediction-panel {
    background: linear-gradient(160deg, rgba(0, 212, 255, 0.08) 0%, rgba(168, 85, 247, 0.12) 100%);
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.12);
}

.final-prediction-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.final-prediction-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.final-prediction-badge {
    font-family: 'Orbitron', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.final-prediction-badge.confirmed {
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid var(--accent-green);
}

.final-prediction-badge.predicted {
    color: var(--accent-yellow);
    background: rgba(255, 214, 10, 0.12);
    border: 1px solid var(--accent-yellow);
}

.final-prediction-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.4;
}

.final-prediction-matchup {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.finalist-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.finalist-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}

.finalist-flag {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    margin-bottom: 10px;
}

.finalist-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.finalist-confidence {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.finalist-confidence-track {
    width: 100%;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 999px;
    overflow: hidden;
}

.finalist-confidence-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    transition: width 0.5s ease;
}

.final-prediction-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.final-prediction-trophy {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px var(--accent-yellow));
}

.ladder-section {
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.top-scorers-section--compact .section-title {
    margin-bottom: 8px;
}

.scorers-compact-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 6px 8px;
    max-height: 260px;
    overflow-y: auto;
}

.scorers-empty {
    padding: 14px 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.scorer-row {
    display: grid;
    grid-template-columns: 24px 24px minmax(0, 1fr) 72px 30px;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.74rem;
    transition: background 0.2s ease;
}

.scorer-row:last-child {
    border-bottom: 0;
}

.scorer-row:hover {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 6px;
}

.scorer-row.is-gold .scorer-rank {
    color: #ffd60a;
}

.scorer-row.is-silver .scorer-rank {
    color: #cbd5e1;
}

.scorer-row.is-bronze .scorer-rank {
    color: #d97706;
}

.scorer-rank {
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-align: center;
}

.scorer-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.scorer-line {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.scorer-line strong {
    font-weight: 700;
}

.scorer-line em {
    font-style: normal;
    color: var(--text-muted);
    margin-left: 6px;
    font-size: 0.68rem;
}

.scorer-line em::before {
    content: '·';
    margin-right: 6px;
    opacity: 0.6;
}

.scorer-bar-wrap {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.scorer-bar {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
}

.scorer-row.is-gold .scorer-bar {
    background: linear-gradient(90deg, #ffd60a, #f59e0b);
}

.scorer-goals {
    font-family: 'JetBrains Mono', 'Orbitron', monospace;
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--accent-green);
    text-align: right;
}

.prediction-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.prediction-card:hover {
    border-color: var(--accent-purple);
}

.prediction-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.prediction-team {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prediction-team-name {
    font-weight: 600;
}

.prediction-vs {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.prediction-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prediction-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prediction-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    min-width: 50px;
}

.prediction-bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 4px;
    overflow: hidden;
}

.prediction-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.prediction-bar-fill.home {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
}

.prediction-bar-fill.draw {
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-green));
}

.prediction-bar-fill.away {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
}

.prediction-pct {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
}

.no-matches {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.no-matches .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (max-width: 1200px) {
    .overview-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }

    .ladder-layout {
        grid-template-columns: 1fr;
    }

    .final-prediction-matchup {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 12px;
    }

    .final-prediction-vs {
        padding: 0 4px;
    }

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

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

    .overview-charts {
        grid-template-columns: 1fr;
    }

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

    .live-matches-grid {
        grid-template-columns: 1fr;
    }

    .live-finals-grid {
        grid-template-columns: 1fr;
    }

    .final-live-row {
        grid-template-columns: 1fr;
    }

    .final-hero-countdown {
        flex-direction: column;
        align-items: stretch;
        padding: 18px 16px;
        gap: 16px;
    }

    .final-hero-copy {
        width: 100%;
        min-width: 0;
    }

    .countdown-blocks {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        align-items: stretch;
    }

    .countdown-blocks .cd-sep {
        display: none;
    }

    .cd-block {
        min-width: 0;
        width: 100%;
        padding: 10px 6px;
    }

    .cd-value {
        font-size: clamp(1.05rem, 4.8vw, 1.65rem);
        margin-bottom: 4px;
    }

    .cd-block em {
        font-size: clamp(0.52rem, 2.4vw, 0.68rem);
    }

    section {
        padding: 16px;
    }

    .header {
        padding: 16px;
    }

    .countdown-box {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .countdown-value {
        font-size: clamp(0.82rem, 3.6vw, 1rem);
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .final-archive-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 600px) {
    .dashboard {
        padding: 8px;
    }

    .main-content {
        gap: 18px;
    }

    section {
        padding: 12px;
        border-radius: 10px;
    }

    .header {
        padding: 12px 14px;
        margin-bottom: 18px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .overview-cards {
        grid-template-columns: 1fr;
    }

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

    .neural-output-row {
        grid-template-columns: 1fr;
    }

    .final-hero-countdown {
        padding: 14px 12px;
        gap: 12px;
    }

    .final-hero-matchup {
        font-size: clamp(1.05rem, 5.2vw, 1.35rem);
        line-height: 1.25;
    }

    .final-hero-date {
        font-size: 0.82rem;
    }

    .watch-final-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        padding: 10px 14px;
        font-size: 0.72rem;
    }

    .countdown-blocks {
        gap: 6px;
    }

    .cd-block {
        padding: 8px 4px;
        border-radius: 10px;
    }

    .cd-value {
        font-size: clamp(0.95rem, 5.6vw, 1.35rem);
    }

    .cd-block em {
        font-size: 0.5rem;
        letter-spacing: 0.04em;
    }

    .final-prediction-panel {
        padding: 14px;
    }

    .finalist-flag {
        width: 56px;
        height: 38px;
    }
}

/* === Tier A-D: Revamp components === */

[data-theme="light"] {
    --bg-primary: #FAFAF8;
    --bg-secondary: #FFFFFF;
    --bg-card: #F4F3F0;
    --bg-card-hover: #ECEAE6;
    --accent-cyan: #3D6B9E;
    --accent-pink: #B86B8C;
    --accent-green: #4A7C59;
    --accent-yellow: #9A7B0A;
    --accent-red: #B83A3A;
    --accent-purple: #6B5B9A;
    --text-primary: #12131A;
    --text-secondary: #3D3D46;
    --text-muted: #5C5C66;
    --border-color: rgba(0, 0, 0, 0.1);
    --border-glow: rgba(61, 107, 158, 0.28);
    --shadow-glow: 0 4px 24px rgba(26, 26, 30, 0.06);
    --live-panel-bg: rgba(255, 255, 255, 0.97);
    --live-panel-border: rgba(184, 58, 58, 0.42);
    --live-panel-shadow: 0 18px 40px rgba(18, 19, 26, 0.14);
    --live-panel-head-bg: rgba(61, 107, 158, 0.08);
    --live-team-chip-bg: rgba(0, 0, 0, 0.05);
    --live-row-bg: rgba(0, 0, 0, 0.04);
    --live-meta-color: #3D3D46;
}

[data-theme="light"] .live-matches-section.is-floating-panel .team {
    background: var(--live-team-chip-bg);
}

[data-theme="light"] .live-matches-section.is-floating-panel .final-live-clock-box strong {
    color: #2A5580;
}

[data-theme="light"] .live-matches-section.is-floating-panel .match-status.scheduled {
    color: #2A5580;
    background: rgba(61, 107, 158, 0.12);
    border-color: rgba(61, 107, 158, 0.35);
}

[data-theme="light"] .live-matches-section.is-floating-panel .match-status.live {
    color: #B83A3A;
    background: rgba(184, 58, 58, 0.1);
    border-color: rgba(184, 58, 58, 0.35);
}

[data-theme="light"] .live-matches-section.is-floating-panel .live-section-drag {
    color: #2A5580;
    border-color: rgba(61, 107, 158, 0.45);
    background: rgba(61, 107, 158, 0.12);
}

[data-theme="light"] .live-matches-section.is-panel-collapsed .live-section-hint {
    color: #2A5580;
}

[data-theme="light"] body {
    font-family: 'Inter', 'Rajdhani', sans-serif;
    background: var(--bg-primary);
}

[data-theme="light"] .stat-value,
[data-theme="light"] .team-score {
    text-shadow: none;
}

.ainna-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.nav-link {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding: 8px 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.countdown-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-value {
    font-family: 'JetBrains Mono', 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.header-controls {
    display: flex;
    gap: 8px;
}

.ctrl-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
}

.ctrl-btn:hover {
    border-color: var(--accent-cyan);
}

.error-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    margin-bottom: 20px;
    background: rgba(255, 71, 87, 0.12);
    border: 1px solid var(--accent-red);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.error-banner.hidden {
    display: none;
}

.retry-btn {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--accent-red);
    background: transparent;
    color: var(--accent-red);
    cursor: pointer;
    font-weight: 700;
    font-family: inherit;
}

.live-ticker {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    height: 36px;
}

.live-ticker.hidden {
    display: none;
}

.live-ticker-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
    padding: 8px 0;
}

.ticker-item {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.ticker-item em {
    color: var(--accent-red);
    font-style: normal;
    margin-left: 6px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.champion-pick {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.champion-pick img {
    width: 28px;
    height: 18px;
    border-radius: 3px;
}

.champion-pick-label {
    color: var(--text-muted);
}

.champion-pick em {
    color: var(--accent-green);
    font-style: normal;
    font-weight: 700;
}

.bracket-section--compact {
    padding-bottom: 4px;
}

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

.bracket-round {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.bracket-round.is-focus {
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.08);
}

.bracket-round-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 0;
    background: rgba(0, 212, 255, 0.05);
    color: inherit;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.bracket-round.is-focus .bracket-round-toggle {
    background: rgba(0, 212, 255, 0.1);
}

.bracket-round-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.68rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bracket-round-meta {
    font-size: 0.68rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.bracket-round-chevron {
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 14px;
    text-align: center;
}

.bracket-round-body.is-collapsed {
    display: none;
}

.bracket-matches {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    max-height: 168px;
    overflow-y: auto;
}

.bracket-round.is-focus .bracket-matches {
    max-height: none;
}

.bracket-match {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.12);
    font-size: 0.72rem;
    line-height: 1.2;
}

.bracket-match.done {
    border-color: rgba(0, 255, 136, 0.28);
}

.bracket-team {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px 4px;
    border-radius: 4px;
}

.bracket-team.home {
    text-align: right;
}

.bracket-team.away {
    text-align: left;
}

.bracket-team.winner {
    background: rgba(0, 255, 136, 0.14);
    font-weight: 700;
    color: var(--accent-green);
}

.bracket-score {
    font-family: 'JetBrains Mono', 'Orbitron', monospace;
    font-size: 0.68rem;
    color: var(--text-muted);
    min-width: 34px;
    text-align: center;
    font-weight: 700;
}

.bracket-empty {
    font-size: 0.74rem;
    color: var(--text-muted);
    padding: 6px 4px;
}

.fixtures-section--compact {
    padding-bottom: 8px;
}

.fixtures-section--compact .section-title {
    margin-bottom: 0;
}

.fixtures-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.fixtures-count {
    font-family: 'JetBrains Mono', 'Orbitron', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
}

.fixture-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.fixture-filters--compact {
    gap: 6px;
    margin-bottom: 10px;
}

.fixture-filter {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
}

.fixture-filters--compact .fixture-filter {
    padding: 5px 10px;
    font-size: 0.72rem;
    border-radius: 999px;
}

.fixture-filter.active {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
}

.fixtures-compact-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.fixtures-timeline {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 10px 10px 6px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.06), transparent);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.fixtures-timeline[hidden] {
    display: none !important;
}

.fixtures-tl-col {
    flex: 0 0 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
}

.fixtures-tl-col:hover .fixtures-tl-bar,
.fixtures-tl-col:focus-visible .fixtures-tl-bar {
    background: linear-gradient(180deg, var(--accent-cyan), rgba(168, 85, 247, 0.85));
}

.fixtures-tl-bar {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: flex-end;
    border-radius: 4px 4px 2px 2px;
    background: rgba(0, 212, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.fixtures-tl-bar::after {
    content: '';
    display: block;
    width: 100%;
    height: var(--h, 20%);
    border-radius: inherit;
    background: linear-gradient(180deg, var(--accent-cyan), rgba(0, 212, 255, 0.45));
    transition: height 0.25s ease;
}

.fixtures-tl-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.fixtures-tl-label {
    font-size: 0.5rem;
    color: var(--text-muted);
    line-height: 1.1;
    text-align: center;
    max-width: 34px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixtures-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
}

.fixtures-list--compact {
    gap: 0;
    max-height: 300px;
    padding: 4px 0;
}

.fixtures-empty {
    padding: 14px 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

.fixture-date-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fixture-date-group:last-child {
    border-bottom: 0;
}

.fixture-date-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 0;
    background: rgba(0, 212, 255, 0.04);
    color: inherit;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.fixture-date-toggle:hover {
    background: rgba(0, 212, 255, 0.08);
}

.fixture-date-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent-cyan);
    text-transform: uppercase;
}

.fixture-date-meta {
    font-size: 0.64rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.fixture-date-chevron {
    font-size: 0.78rem;
    color: var(--text-muted);
    width: 12px;
    text-align: center;
}

.fixture-date-body.is-collapsed {
    display: none;
}

.fixture-row {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
}

.fixture-row--compact {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px minmax(0, 1fr) 52px;
    align-items: center;
    gap: 6px;
    padding: 5px 8px 5px 10px;
    margin: 0 6px 4px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.1);
    font-size: 0.72rem;
    line-height: 1.2;
}

.fixture-row--compact:last-child {
    margin-bottom: 6px;
}

.fixture-row--compact:hover {
    border-color: rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.05);
}

.fixture-row--compact.done {
    opacity: 0.72;
}

.fixture-row--compact.live {
    border-color: rgba(255, 71, 87, 0.4);
    background: rgba(255, 71, 87, 0.08);
}

.fixture-row--compact.live .fixture-score {
    color: var(--accent-red);
}

.fixture-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.fixture-team {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    overflow: hidden;
}

.fixture-team.home {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.fixture-team.home em {
    text-align: right;
}

.fixture-team.away em {
    text-align: left;
}

.fixture-team em {
    font-style: normal;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixture-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.fixture-score {
    font-family: 'JetBrains Mono', 'Orbitron', monospace;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-align: center;
}

.fixture-stage {
    font-family: 'Orbitron', monospace;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixture-row.done {
    opacity: 0.75;
}

.fixture-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.fixture-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.fixture-stadium {
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.match-stadium {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: center;
}

.team-click {
    cursor: pointer;
}

.team-click:hover {
    color: var(--accent-cyan);
}

.neural-sub {
    color: var(--text-secondary);
    margin: -10px 0 18px;
    font-size: 0.9rem;
}

.neural-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.neural-block {
    flex: 1;
    min-width: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    transition: all 0.35s ease;
}

.neural-block span {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 6px;
}

.neural-block em {
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.neural-block.active {
    border-color: var(--accent-purple);
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.25);
    background: rgba(168, 85, 247, 0.1);
}

.neural-block.done {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.08);
}

.neural-connector {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.neural-output-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}

.neural-terminal {
    background: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #7ee787;
    max-height: 140px;
    overflow-y: auto;
}

[data-theme="light"] .neural-terminal {
    background: #1A1A1E;
}

.terminal-line {
    margin-bottom: 4px;
}

.neural-champion-card {
    background: var(--bg-card);
    border: 1px solid var(--accent-purple);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.neural-champion-card img {
    width: 64px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    margin: 10px 0;
}

.neural-champion-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.prediction-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--accent-purple);
    margin-bottom: 10px;
    font-weight: 600;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.skeleton-card {
    height: 160px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s infinite;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.team-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.team-modal.hidden {
    display: none;
}

.team-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.team-modal-card {
    position: relative;
    width: min(420px, 100%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-glow);
}

.team-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.team-modal-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.team-modal-head img {
    width: 72px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
}

.team-modal-head h3 {
    font-size: 1.2rem;
}

.team-modal-head span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.team-modal-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.team-modal-stats div {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.team-modal-stats strong {
    display: block;
    font-family: 'Orbitron', monospace;
    color: var(--accent-cyan);
}

.team-modal-stats em {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: normal;
}

.team-modal-form,
.team-modal-next {
    margin-top: 12px;
    font-size: 0.85rem;
}

.form-dots {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.form-dots i {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 0.75rem;
}

.form-dots i.w { background: rgba(0, 255, 136, 0.2); color: var(--accent-green); }
.form-dots i.d { background: rgba(255, 214, 10, 0.2); color: var(--accent-yellow); }
.form-dots i.l { background: rgba(255, 71, 87, 0.2); color: var(--accent-red); }

.embed-hint {
    margin-top: 8px;
}

.embed-hint a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.footer a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.header-left {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .header-left,
    .header-right {
        width: 100%;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bracket-matches {
        max-height: 140px;
    }

    .scorer-row {
        grid-template-columns: 22px 22px minmax(0, 1fr) 28px;
    }

    .scorer-bar-wrap {
        display: none;
    }

    .live-matches-section.is-floating-panel {
        left: max(8px, env(safe-area-inset-left));
        right: max(8px, env(safe-area-inset-right));
        max-height: min(88vh, 900px);
        padding: 10px 12px;
    }

    .live-matches-section.is-floating-panel .live-section-body {
        overflow-x: hidden;
    }

    .live-matches-section.is-floating-panel .live-finals-grid,
    .live-matches-section.is-floating-panel .live-matches-grid,
    .live-matches-section.is-floating-panel .final-live-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .live-matches-section.is-floating-panel .live-finals-grid {
        margin-bottom: 12px;
    }

    .live-matches-section.is-floating-panel .live-match-column {
        gap: 8px;
    }

    .live-matches-section.is-floating-panel .live-column-title {
        font-size: 0.72rem;
        padding-left: 0;
    }

    .live-matches-section.is-floating-panel .live-match-card {
        padding: 12px;
    }

    .live-matches-section.is-floating-panel .match-header {
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 10px;
    }

    .live-matches-section.is-floating-panel .match-group {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .live-matches-section.is-floating-panel .match-teams {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .live-matches-section.is-floating-panel .team {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        padding: 8px 10px;
        border-radius: 8px;
        background: var(--live-team-chip-bg);
    }

    .live-matches-section.is-floating-panel .team-flag {
        width: 34px;
        height: 22px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .live-matches-section.is-floating-panel .team-name {
        max-width: none;
        white-space: normal;
        text-align: left;
        font-size: 0.82rem;
        line-height: 1.25;
    }

    .live-matches-section.is-floating-panel .team-score {
        order: -1;
        align-self: center;
        font-size: 1.85rem;
        min-width: 0;
        padding: 2px 0 4px;
    }

    .live-matches-section.is-floating-panel .live-match-column,
    .live-matches-section.is-floating-panel .final-live-suite,
    .live-matches-section.is-floating-panel .final-live-row > *,
    .live-matches-section.is-floating-panel .tv-pitch-frame,
    .live-matches-section.is-floating-panel .tv-bezel,
    .live-matches-section.is-floating-panel .tv-screen {
        min-width: 0;
        max-width: 100%;
    }

    .live-matches-section.is-floating-panel .match-stadium {
        font-size: 0.72rem;
        line-height: 1.35;
        word-break: break-word;
        padding: 0 2px;
    }

    .live-matches-section.is-floating-panel .match-status {
        font-size: 0.66rem;
        padding: 3px 8px;
        white-space: nowrap;
    }

    .live-matches-section.is-floating-panel .final-live-clock-box {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 6px;
        width: 100%;
        margin-top: 10px;
        padding-top: 10px;
        font-size: 0.72rem;
    }

    .live-matches-section.is-floating-panel .final-live-clock-box span {
        line-height: 1.3;
    }

    .live-matches-section.is-floating-panel .final-live-clock-box strong {
        display: block;
        width: 100%;
        text-align: center;
        font-size: clamp(0.82rem, 3.8vw, 1.15rem);
        letter-spacing: 0.04em;
        font-variant-numeric: tabular-nums;
        padding: 8px 6px;
        border-radius: 8px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        color: var(--accent-cyan);
        overflow-wrap: anywhere;
    }

    .live-matches-section.is-floating-panel .final-live-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        font-size: 0.72rem;
    }

    .live-matches-section.is-floating-panel .tv-bezel {
        padding: 10px 10px 12px;
    }

    .live-matches-section.is-floating-panel .final-archive-feed {
        max-height: 120px;
    }

    .live-matches-section.is-floating-panel .final-archive-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
        padding: 7px 8px;
        font-size: 0.7rem;
    }

    .live-matches-section.is-floating-panel .archive-score {
        text-align: left;
    }

    .live-matches-section.is-floating-panel .archive-clock {
        font-size: 0.66rem;
    }

    .live-section-drag {
        min-width: 44px;
        padding: 8px 8px;
    }

    .live-matches-section.is-floating-panel .live-section-head {
        gap: 6px;
        margin-bottom: 10px;
    }

    .live-matches-section.is-floating-panel .live-section-toggle {
        gap: 6px;
        flex-wrap: wrap;
    }

    .live-matches-section.is-floating-panel .live-section-title {
        font-size: 0.88rem;
        flex: 1 1 auto;
    }

    .live-matches-section.is-floating-panel .final-live-pill {
        margin-left: 0;
        flex: 1 1 100%;
        text-align: center;
        font-size: 0.58rem;
        padding: 3px 8px;
    }

    .live-matches-section.is-floating-panel .live-section-chevron {
        margin-left: 0;
    }

    .fixtures-list--compact {
        max-height: 260px;
    }

    .fixture-row--compact {
        grid-template-columns: 36px minmax(0, 1fr) 30px minmax(0, 1fr) 44px;
        gap: 4px;
        font-size: 0.68rem;
        margin-inline: 4px;
    }

    .fixture-stage {
        font-size: 0.5rem;
    }

    .fixtures-tl-col {
        flex-basis: 28px;
    }
}

@media (max-width: 600px) {
    .live-matches-section.is-floating-panel {
        left: max(6px, env(safe-area-inset-left));
        right: max(6px, env(safe-area-inset-right));
        padding: 8px 10px;
        max-height: min(90vh, 920px);
    }

    .live-matches-section.is-floating-panel .live-section-title {
        color: var(--text-primary);
    }

    .live-matches-section.is-floating-panel .live-match-card {
        padding: 10px;
    }

    .live-matches-section.is-floating-panel .team-score {
        font-size: clamp(1.35rem, 6vw, 1.6rem);
    }

    .live-matches-section.is-floating-panel .final-live-clock-box strong {
        font-size: clamp(0.78rem, 4.2vw, 1rem);
        padding: 7px 4px;
    }

    .live-matches-section.is-floating-panel .match-group {
        font-size: 0.66rem;
    }

    .live-matches-section.is-floating-panel .match-time,
    .live-matches-section.is-floating-panel .match-scorers {
        font-size: 0.72rem;
    }

    .live-matches-section.is-floating-panel .tv-bezel {
        padding: 8px 8px 10px;
        border-radius: 14px 14px 8px 8px;
    }

    .live-matches-section.is-floating-panel .live-section-drag-label {
        font-size: 0.5rem;
    }

    .fixture-row--compact {
        grid-template-columns: 32px minmax(0, 1fr) 28px minmax(0, 1fr);
    }

    .fixture-stage {
        display: none;
    }

    .fixtures-section-head {
        flex-wrap: wrap;
    }
}
