/* ==========================================================================
   View Scorehub - Flight-Board Live Football Data Hub
   Theme: Midnight blue / data terminal / monospace numerals
   Class prefix: sh-
   ========================================================================== */

:root {
    --sh-bg: #0f172a;
    --sh-bg-2: #111c33;
    --sh-bg-3: #1e293b;
    --sh-bg-4: #0a1224;
    --sh-cyan: #06b6d4;
    --sh-cyan-d: #0891b2;
    --sh-cyan-l: #22d3ee;
    --sh-red: #ef4444;
    --sh-green: #10b981;
    --sh-yellow: #fbbf24;
    --sh-text: #e2e8f0;
    --sh-text-mute: #94a3b8;
    --sh-text-dim: #64748b;
    --sh-line: rgba(6, 182, 212, 0.18);
    --sh-line-soft: rgba(148, 163, 184, 0.14);
    --sh-card: #111c33;
    --sh-card-up: #1a2745;
    --sh-radius: 8px;
    --sh-radius-sm: 4px;
    --sh-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    --sh-mono: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
    --sh-sans: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--sh-sans);
    background: var(--sh-bg);
    color: var(--sh-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol, li { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

.sh-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; }
.sh-skip { position: absolute; left: -9999px; }
.sh-em { color: var(--sh-cyan); }

.sh-data-key { font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-dim); letter-spacing: 1px; text-transform: uppercase; }
.sh-data-val { font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text); font-weight: 600; }
.sh-data-val-cyan { color: var(--sh-cyan); }
.sh-data-val-green { color: var(--sh-green); }
.sh-data-val-red { color: var(--sh-red); }
.sh-data-val-yellow { color: var(--sh-yellow); }
.sh-data-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--sh-text-dim); display: inline-block; }

/* --------------------------- Buttons --------------------------- */
.sh-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: var(--sh-radius);
    font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: var(--sh-mono);
    white-space: nowrap;
}
.sh-btn-lg { padding: 16px 32px; font-size: 14px; }
.sh-btn-xl { padding: 20px 40px; font-size: 15px; }
.sh-btn-block { display: flex; width: 100%; justify-content: center; }
.sh-btn-cyan {
    background: linear-gradient(135deg, var(--sh-cyan) 0%, var(--sh-cyan-d) 100%);
    color: #001119;
    box-shadow: 0 6px 22px rgba(6, 182, 212, 0.35), 0 0 0 1px rgba(6, 182, 212, 0.4) inset;
}
.sh-btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5); }
.sh-btn-line {
    background: transparent;
    color: var(--sh-cyan);
    border: 1px solid var(--sh-cyan);
}
.sh-btn-line:hover { background: rgba(6, 182, 212, 0.1); }
.sh-btn-blink {
    width: 8px; height: 8px; border-radius: 50%; background: currentColor;
    animation: sh-blink 1.2s infinite;
    flex-shrink: 0;
}
@keyframes sh-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes sh-pulse-cyan {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
}

/* --------------------------- Header --------------------------- */
.sh-header { position: sticky; top: 0; z-index: 50; background: rgba(15, 23, 42, 0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--sh-line); }
.sh-header-data {
    background: var(--sh-bg-4);
    border-bottom: 1px solid var(--sh-line-soft);
    padding: 6px 24px;
    overflow: hidden;
}
.sh-header-data-row { display: flex; align-items: center; gap: 12px; max-width: 1280px; margin: 0 auto; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.sh-header-data-row::-webkit-scrollbar { display: none; }
.sh-header-row { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.sh-logo-link { display: flex; align-items: center; gap: 12px; }
.sh-logo-mark { display: inline-flex; align-items: end; gap: 3px; height: 32px; }
.sh-logo-bar { display: block; width: 6px; background: var(--sh-cyan); border-radius: 1px; }
.sh-logo-bar-1 { height: 14px; animation: sh-bar 1.5s infinite; }
.sh-logo-bar-2 { height: 24px; animation: sh-bar 1.5s 0.2s infinite; }
.sh-logo-bar-3 { height: 18px; animation: sh-bar 1.5s 0.4s infinite; }
@keyframes sh-bar { 0%, 100% { transform: scaleY(0.6); transform-origin: bottom; } 50% { transform: scaleY(1.2); transform-origin: bottom; } }
.sh-logo-text { display: flex; flex-direction: column; line-height: 1; }
.sh-logo-name { font-family: var(--sh-mono); font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 2px; }
.sh-logo-tag { font-size: 10px; color: var(--sh-cyan); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 4px; font-family: var(--sh-mono); }

.sh-nav { display: flex; gap: 4px; align-items: center; }
.sh-nav-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: var(--sh-radius);
    font-size: 13px; color: var(--sh-text-mute);
    transition: all 0.2s;
    font-family: var(--sh-mono);
}
.sh-nav-key { font-size: 10px; padding: 2px 5px; border-radius: 3px; background: rgba(148,163,184,0.15); color: var(--sh-text-dim); font-weight: 700; }
.sh-nav-text { font-weight: 600; }
.sh-nav-link:hover { color: var(--sh-cyan); background: rgba(6,182,212,0.08); }
.sh-nav-link:hover .sh-nav-key { background: rgba(6,182,212,0.2); color: var(--sh-cyan); }
.sh-nav-active { color: var(--sh-cyan); background: rgba(6,182,212,0.1); }
.sh-nav-active .sh-nav-key { background: var(--sh-cyan); color: #001119; }
.sh-nav-drop { position: relative; }
.sh-nav-panel {
    position: absolute; top: 100%; left: 0; margin-top: 4px;
    background: var(--sh-card-up); border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius); padding: 6px; min-width: 200px;
    display: none; flex-direction: column;
    box-shadow: var(--sh-shadow);
}
.sh-nav-drop:hover .sh-nav-panel { display: flex; }
.sh-nav-panel-link { padding: 8px 12px; border-radius: var(--sh-radius-sm); font-size: 13px; color: var(--sh-text); font-family: var(--sh-mono); }
.sh-nav-panel-link:hover { background: rgba(6,182,212,0.12); color: var(--sh-cyan); }

.sh-burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 4px; border-radius: var(--sh-radius-sm); background: rgba(6,182,212,0.1); border: 1px solid var(--sh-line); }
.sh-burger span { display: block; width: 18px; height: 2px; background: var(--sh-cyan); }

/* --------------------------- Mobile Menu --------------------------- */
.sh-mobile {
    position: fixed; top: 0; right: -100%; width: 320px; max-width: 90vw; height: 100vh;
    background: var(--sh-card-up); border-left: 1px solid var(--sh-cyan);
    z-index: 100; padding: 24px; overflow-y: auto;
    transition: right 0.3s ease;
}
.sh-mobile-open { right: 0; }
.sh-mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px dashed var(--sh-line); }
.sh-mobile-title { font-family: var(--sh-mono); font-size: 12px; font-weight: 700; color: var(--sh-cyan); letter-spacing: 1.5px; }
.sh-mobile-close { width: 32px; height: 32px; border-radius: var(--sh-radius-sm); background: rgba(239,68,68,0.12); color: var(--sh-red); font-weight: 700; font-family: var(--sh-mono); }
.sh-mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.sh-mobile-link { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--sh-radius-sm); font-size: 14px; color: var(--sh-text); font-family: var(--sh-mono); transition: background 0.2s; }
.sh-mobile-link:hover { background: rgba(6,182,212,0.1); }
.sh-mobile-key { font-size: 10px; padding: 2px 6px; border-radius: 3px; background: rgba(6,182,212,0.15); color: var(--sh-cyan); font-weight: 700; }
.sh-mobile-link-sub { padding-left: 28px; font-size: 12px; color: var(--sh-text-mute); }
.sh-mobile-divider { padding: 16px 14px 8px; font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-dim); letter-spacing: 1.5px; }
.sh-mobile-cta { margin-top: 20px; }

/* --------------------------- Section Heads --------------------------- */
.sh-section-head { margin-bottom: 28px; }
.sh-section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border: 1px solid var(--sh-line); border-radius: var(--sh-radius-sm);
    background: rgba(6,182,212,0.06);
    margin-bottom: 14px;
}
.sh-section-title {
    font-size: 36px; font-weight: 800; line-height: 1.15;
    color: #fff; letter-spacing: -0.5px;
    font-family: var(--sh-sans);
}
.sh-section-desc { color: var(--sh-text-mute); font-size: 14px; max-width: 580px; margin-top: 10px; }

/* --------------------------- Section 1: Board (Hero Flight Board) --------------------------- */
.sh-board { padding: 40px 0 60px; position: relative; }
.sh-board-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top, rgba(6,182,212,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.sh-board-container { position: relative; z-index: 2; }
.sh-board-head { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: end; margin-bottom: 32px; }
.sh-board-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
    border-radius: var(--sh-radius-sm); font-family: var(--sh-mono); font-size: 11px; font-weight: 700; color: var(--sh-red); letter-spacing: 2px;
    margin-bottom: 16px;
}
.sh-board-tag-blink { width: 6px; height: 6px; border-radius: 50%; background: var(--sh-red); animation: sh-blink 1.2s infinite; }
.sh-board-title { font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.1; margin-bottom: 14px; }
.sh-board-title-em { display: block; color: var(--sh-cyan); font-size: 0.5em; font-family: var(--sh-mono); letter-spacing: 4px; text-transform: uppercase; margin-top: 8px; font-weight: 700; }
.sh-board-desc { color: var(--sh-text-mute); font-size: 16px; max-width: 580px; line-height: 1.7; }
.sh-board-system { background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); padding: 18px 20px; }
.sh-board-sys-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--sh-line-soft); }
.sh-board-sys-row:last-child { border-bottom: 0; }

.sh-flight-board { background: var(--sh-bg-4); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); overflow: hidden; box-shadow: var(--sh-shadow); margin-bottom: 32px; }
.sh-flight-head, .sh-flight-row { display: grid; grid-template-columns: 100px 100px 1fr 140px 120px; align-items: center; gap: 14px; padding: 14px 22px; }
.sh-flight-head { background: linear-gradient(90deg, rgba(6,182,212,0.18), rgba(6,182,212,0.05)); border-bottom: 1px solid var(--sh-cyan); }
.sh-flight-cell { font-family: var(--sh-mono); font-size: 13px; }
.sh-flight-head .sh-flight-cell { font-size: 11px; color: var(--sh-cyan); letter-spacing: 2px; font-weight: 700; }
.sh-flight-body .sh-flight-row { border-bottom: 1px solid var(--sh-line-soft); transition: background 0.15s; }
.sh-flight-body .sh-flight-row:last-child { border-bottom: 0; }
.sh-flight-body .sh-flight-row:hover { background: rgba(6,182,212,0.06); }
.sh-flight-cell-time { color: var(--sh-yellow); font-weight: 700; }
.sh-flight-cell-match { color: #fff; font-weight: 600; letter-spacing: 1px; }
.sh-flight-cell-score { color: var(--sh-cyan); font-weight: 800; font-size: 16px; letter-spacing: 1px; }
.sh-flight-liga-tag { display: inline-block; padding: 3px 8px; background: rgba(6,182,212,0.15); color: var(--sh-cyan); border-radius: 3px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.sh-flight-status {
    display: inline-block; padding: 4px 10px; border-radius: 3px; font-size: 11px; font-weight: 800; letter-spacing: 1px;
}
.sh-flight-status-ft { background: rgba(16,185,129,0.15); color: var(--sh-green); }
.sh-flight-status-live { background: rgba(239,68,68,0.15); color: var(--sh-red); animation: sh-blink 1.4s infinite; }
.sh-flight-status-soon { background: rgba(251,191,36,0.15); color: var(--sh-yellow); }

.sh-board-cta-center { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px 0; border-top: 1px dashed var(--sh-line); }
.sh-board-cta-note { font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text-dim); letter-spacing: 1px; }

/* --------------------------- Section 2: Multi-League --------------------------- */
.sh-multi { padding: 60px 0; background: var(--sh-bg-2); }
.sh-multi-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.sh-multi-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: var(--sh-radius);
    background: var(--sh-card); border: 1px solid var(--sh-line);
    color: var(--sh-text-mute); font-family: var(--sh-mono);
    transition: all 0.2s;
}
.sh-multi-tab-key { font-size: 11px; color: var(--sh-cyan); font-weight: 700; }
.sh-multi-tab-text { font-size: 13px; font-weight: 600; }
.sh-multi-tab:hover { border-color: var(--sh-cyan); color: var(--sh-cyan); }
.sh-multi-tab-active { background: var(--sh-cyan); color: #001119; border-color: var(--sh-cyan); }
.sh-multi-tab-active .sh-multi-tab-key { color: #001119; }
.sh-multi-status { display: flex; align-items: center; gap: 12px; padding: 10px 18px; background: var(--sh-bg-4); border: 1px solid var(--sh-line-soft); border-radius: var(--sh-radius); margin-bottom: 16px; font-family: var(--sh-mono); font-size: 12px; }
.sh-multi-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sh-green); animation: sh-blink 1.4s infinite; flex-shrink: 0; }
.sh-multi-status-text { color: var(--sh-text-mute); flex: 1; }
.sh-multi-status-stamp { display: flex; align-items: center; gap: 6px; }
.sh-multi-status-stamp span:last-child { color: var(--sh-cyan); font-weight: 700; }

.sh-multi-table { background: var(--sh-bg-4); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); overflow: hidden; }
.sh-multi-thead, .sh-multi-tr { display: grid; grid-template-columns: 80px 1fr 100px 1fr 1fr 80px; align-items: center; gap: 12px; padding: 12px 18px; }
.sh-multi-thead { background: linear-gradient(90deg, rgba(6,182,212,0.15), rgba(6,182,212,0.04)); border-bottom: 1px solid var(--sh-cyan); }
.sh-multi-th { font-family: var(--sh-mono); font-size: 10px; color: var(--sh-cyan); letter-spacing: 2px; font-weight: 700; }
.sh-multi-tbody .sh-multi-tr { border-bottom: 1px solid var(--sh-line-soft); font-family: var(--sh-mono); font-size: 13px; }
.sh-multi-tbody .sh-multi-tr:last-child { border-bottom: 0; }
.sh-multi-tbody .sh-multi-tr:hover { background: rgba(6,182,212,0.05); }
.sh-multi-td-time { color: var(--sh-yellow); font-weight: 700; }
.sh-multi-td-home, .sh-multi-td-away { color: #fff; font-weight: 600; }
.sh-multi-td-away { text-align: left; }
.sh-multi-td-score { text-align: center; color: var(--sh-text-mute); font-family: var(--sh-mono); }
.sh-multi-td-score b { color: var(--sh-cyan); font-weight: 800; padding: 0 4px; }
.sh-multi-td-venue { color: var(--sh-text-dim); font-size: 12px; }
.sh-multi-st { display: inline-block; padding: 3px 8px; border-radius: 3px; font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.sh-multi-st-ft { background: rgba(16,185,129,0.15); color: var(--sh-green); }
.sh-multi-st-live { background: rgba(239,68,68,0.15); color: var(--sh-red); }

/* --------------------------- Section 3: Stat Gauges --------------------------- */
.sh-stat { padding: 60px 0; }
.sh-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sh-stat-card {
    background: var(--sh-card); border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius); padding: 24px; text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}
.sh-stat-card:hover { transform: translateY(-4px); border-color: var(--sh-cyan); }
.sh-gauge { position: relative; width: 120px; height: 120px; margin: 0 auto 16px; }
.sh-gauge-svg { width: 100%; height: 100%; }
.sh-gauge-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--sh-mono); font-size: 24px; font-weight: 800; color: #fff; }
.sh-stat-lbl { font-family: var(--sh-mono); font-size: 11px; color: var(--sh-cyan); letter-spacing: 2px; font-weight: 700; margin-bottom: 10px; }
.sh-stat-trend { display: flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-mute); }
.sh-trend-arrow { font-weight: 800; font-size: 14px; }
.sh-trend-up { color: var(--sh-green); }
.sh-trend-down { color: var(--sh-red); }


/* --------------------------- Section 4: Feature (Bloomberg) --------------------------- */
.sh-feature { padding: 60px 0; background: var(--sh-bg-2); }
.sh-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sh-feature-hero { background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); overflow: hidden; transition: transform 0.25s, border-color 0.25s; display: flex; flex-direction: column; }
.sh-feature-hero:hover { transform: translateY(-4px); border-color: var(--sh-cyan); }
.sh-feature-hero-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.sh-feature-hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sh-feature-hero:hover .sh-feature-hero-img img { transform: scale(1.05); }
.sh-feature-hero-tag { position: absolute; top: 14px; left: 14px; padding: 4px 10px; background: rgba(15,23,42,0.85); color: var(--sh-cyan); font-family: var(--sh-mono); font-size: 10px; font-weight: 700; letter-spacing: 2px; border-radius: 3px; }
.sh-feature-hero-meta { padding: 22px 24px; }
.sh-feature-stamp { font-family: var(--sh-mono); font-size: 11px; color: var(--sh-yellow); letter-spacing: 1px; margin-bottom: 12px; display: block; }
.sh-feature-hero-title { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 10px; }
.sh-feature-hero-desc { font-size: 13px; color: var(--sh-text-mute); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.sh-feature-list { background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); padding: 4px 0; display: flex; flex-direction: column; }
.sh-feature-list-head { display: grid; grid-template-columns: 60px 1fr; padding: 12px 18px; border-bottom: 1px solid var(--sh-cyan); background: rgba(6,182,212,0.06); }
.sh-feature-list-head .sh-data-key { color: var(--sh-cyan); }
.sh-feature-row {
    display: grid; grid-template-columns: 60px auto 1fr 24px; gap: 10px; align-items: center;
    padding: 14px 18px; border-bottom: 1px solid var(--sh-line-soft);
    font-family: var(--sh-mono); font-size: 13px; transition: background 0.15s;
}
.sh-feature-row:last-child { border-bottom: 0; }
.sh-feature-row:hover { background: rgba(6,182,212,0.06); }
.sh-feature-row-time { color: var(--sh-yellow); font-weight: 700; font-size: 12px; }
.sh-feature-row-cat { color: var(--sh-cyan); font-size: 11px; font-weight: 700; }
.sh-feature-row-title { color: #fff; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sh-feature-row:hover .sh-feature-row-title { color: var(--sh-cyan); }
.sh-feature-row-arrow { color: var(--sh-text-dim); transition: transform 0.2s, color 0.2s; }
.sh-feature-row:hover .sh-feature-row-arrow { color: var(--sh-cyan); transform: translateX(3px); }

/* --------------------------- Section 5: Standings --------------------------- */
.sh-standings { padding: 60px 0; }
.sh-standings-table { background: var(--sh-bg-4); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); overflow: hidden; }
.sh-standings-thead, .sh-st-row { display: grid; grid-template-columns: 50px 1fr repeat(6, 56px) 70px; align-items: center; gap: 8px; padding: 12px 22px; }
.sh-standings-thead { background: linear-gradient(90deg, rgba(6,182,212,0.18), rgba(6,182,212,0.05)); border-bottom: 1px solid var(--sh-cyan); }
.sh-st-th { font-family: var(--sh-mono); font-size: 10px; color: var(--sh-cyan); letter-spacing: 1.5px; font-weight: 700; text-align: center; }
.sh-st-th-club { text-align: left; }
.sh-st-th-pts { color: var(--sh-yellow); }
.sh-st-row { font-family: var(--sh-mono); font-size: 13px; border-bottom: 1px solid var(--sh-line-soft); transition: background 0.15s; position: relative; }
.sh-st-row:last-child { border-bottom: 0; }
.sh-st-row:hover { background: rgba(6,182,212,0.05); }
.sh-st-row-cl::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--sh-cyan); }
.sh-st-row-el::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--sh-yellow); }
.sh-st-td { text-align: center; color: var(--sh-text); }
.sh-st-td-pos { font-weight: 800; color: var(--sh-cyan); }
.sh-st-td-club { text-align: left; color: #fff; font-weight: 600; font-family: var(--sh-sans); }
.sh-st-td-pts { font-weight: 800; color: var(--sh-yellow); font-size: 14px; }
.sh-standings-legend { padding: 14px 22px; border-top: 1px dashed var(--sh-line); display: flex; gap: 24px; flex-wrap: wrap; font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-mute); }
.sh-legend-item { display: flex; align-items: center; gap: 8px; }
.sh-legend-dot { width: 10px; height: 10px; border-radius: 2px; }
.sh-legend-cl { background: var(--sh-cyan); }
.sh-legend-el { background: var(--sh-yellow); }

/* --------------------------- Section 6: Gauge Promo --------------------------- */
.sh-gauge { padding: 60px 0; }
.sh-gauge-card { background: linear-gradient(135deg, var(--sh-card-up) 0%, var(--sh-card) 100%); border: 1px solid var(--sh-cyan); border-radius: var(--sh-radius); padding: 48px; text-align: center; max-width: 880px; margin: 0 auto; box-shadow: var(--sh-shadow); }
.sh-gauge-card-bar { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px dashed var(--sh-line); margin-bottom: 32px; }
.sh-gauge-meter { margin-bottom: 32px; position: relative; }
.sh-gauge-meter-track { height: 14px; background: var(--sh-bg-4); border-radius: 7px; overflow: hidden; border: 1px solid var(--sh-line); }
.sh-gauge-meter-fill { width: 75%; height: 100%; background: linear-gradient(90deg, var(--sh-green) 0%, var(--sh-cyan) 50%, var(--sh-yellow) 100%); animation: sh-meter-grow 2s ease-out; }
@keyframes sh-meter-grow { from { width: 0; } to { width: 75%; } }
.sh-gauge-meter-labels { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-dim); }
.sh-gauge-active { color: var(--sh-cyan); font-weight: 700; font-size: 13px; }
.sh-gauge-meter-text { margin-top: 16px; }
.sh-gauge-meter-num { font-family: var(--sh-mono); font-size: 56px; font-weight: 900; color: var(--sh-cyan); display: block; line-height: 1; }
.sh-gauge-meter-lbl { font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-mute); letter-spacing: 2px; }
.sh-gauge-title { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.sh-gauge-desc { font-size: 15px; color: var(--sh-text-mute); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.sh-gauge-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 520px; margin: 0 auto 32px; }
.sh-gauge-feat { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--sh-bg-4); border: 1px solid var(--sh-line); border-radius: var(--sh-radius-sm); font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text); text-align: left; }
.sh-gauge-feat .sh-data-key { color: var(--sh-green); font-size: 14px; font-weight: 800; }
.sh-gauge-cta { display: flex; justify-content: center; }
.sh-gauge-note { display: block; margin-top: 14px; font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-dim); letter-spacing: 1px; }

/* --------------------------- Section 7: FAQ --------------------------- */
.sh-faq { padding: 60px 0; background: var(--sh-bg-2); }
.sh-faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 920px; margin: 0 auto; }
.sh-faq-item { background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); overflow: hidden; transition: border-color 0.2s; }
.sh-faq-item[open] { border-color: var(--sh-cyan); }
.sh-faq-q { display: flex; align-items: center; gap: 14px; padding: 18px 22px; cursor: pointer; list-style: none; font-family: var(--sh-mono); }
.sh-faq-q::-webkit-details-marker { display: none; }
.sh-faq-id { padding: 4px 8px; background: rgba(6,182,212,0.15); color: var(--sh-cyan); border-radius: 3px; font-size: 11px; font-weight: 800; letter-spacing: 1px; flex-shrink: 0; }
.sh-faq-item[open] .sh-faq-id { background: var(--sh-cyan); color: #001119; }
.sh-faq-q-text { flex: 1; font-size: 15px; font-weight: 600; color: #fff; font-family: var(--sh-sans); }
.sh-faq-toggle { font-family: var(--sh-mono); color: var(--sh-cyan); font-weight: 700; transition: transform 0.3s; }
.sh-faq-item[open] .sh-faq-toggle { transform: rotate(45deg); }
.sh-faq-a { padding: 0 22px 20px 78px; color: var(--sh-text-mute); font-size: 14px; line-height: 1.7; }
.sh-faq-prompt { color: var(--sh-cyan); font-family: var(--sh-mono); font-weight: 700; margin-right: 8px; }

/* --------------------------- Section 8: Pulse Terminal --------------------------- */
.sh-pulse { padding: 60px 0; }
.sh-pulse-terminal { background: #000; border: 1px solid var(--sh-cyan); border-radius: var(--sh-radius); overflow: hidden; box-shadow: var(--sh-shadow); }
.sh-pulse-bar { background: var(--sh-bg-3); padding: 10px 18px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--sh-line); }
.sh-404-dot { width: 12px; height: 12px; border-radius: 50%; }
.sh-404-dot-r { background: var(--sh-red); }
.sh-404-dot-y { background: var(--sh-yellow); }
.sh-404-dot-g { background: var(--sh-green); }
.sh-pulse-bar-title { margin-left: 10px; font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text-mute); }
.sh-pulse-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.sh-pulse-line { display: flex; gap: 10px; padding: 6px 8px; border-radius: 3px; font-family: var(--sh-mono); font-size: 13px; align-items: baseline; transition: background 0.15s; flex-wrap: wrap; }
.sh-pulse-line:hover { background: rgba(6,182,212,0.08); }
.sh-pulse-time { color: var(--sh-text-dim); flex-shrink: 0; }
.sh-pulse-prompt { color: var(--sh-green); font-weight: 700; flex-shrink: 0; }
.sh-pulse-cat { color: var(--sh-yellow); font-weight: 700; font-size: 12px; flex-shrink: 0; }
.sh-pulse-text { color: #fff; flex: 1; }
.sh-pulse-line:hover .sh-pulse-text { color: var(--sh-cyan); }
.sh-pulse-tail { color: var(--sh-cyan); animation: sh-blink 1s infinite; }

/* --------------------------- Section 9: Bento Band --------------------------- */
.sh-band { padding: 60px 0; background: var(--sh-bg-2); }
.sh-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(120px, auto); gap: 16px; }
.sh-band-card { background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); padding: 22px; transition: border-color 0.2s, transform 0.25s; display: flex; flex-direction: column; gap: 12px; }
.sh-band-card:hover { border-color: var(--sh-cyan); transform: translateY(-3px); }
.sh-band-card-lg { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, rgba(6,182,212,0.12) 0%, var(--sh-card) 60%); }
.sh-band-card-cyan { border-color: rgba(6,182,212,0.4); }
.sh-band-card-yellow { border-color: rgba(251,191,36,0.4); }
.sh-band-card-wide { grid-column: span 2; }
.sh-band-card-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px dashed var(--sh-line-soft); }
.sh-band-card-body { display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: space-between; }
.sh-band-name { font-size: 22px; font-weight: 800; color: #fff; }
.sh-band-club { font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text-mute); }
.sh-band-num { display: flex; align-items: baseline; gap: 10px; }
.sh-band-num-big { font-family: var(--sh-mono); font-size: 56px; font-weight: 900; color: var(--sh-cyan); line-height: 1; }
.sh-band-card-yellow .sh-band-num-big { color: var(--sh-yellow); }
.sh-band-card-cyan .sh-band-num-big { color: var(--sh-cyan); }
.sh-band-num-lbl { font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text-mute); letter-spacing: 1px; }
.sh-band-bar { height: 6px; background: var(--sh-bg-4); border-radius: 3px; overflow: hidden; }
.sh-band-bar-fill { height: 100%; background: linear-gradient(90deg, var(--sh-cyan) 0%, var(--sh-yellow) 100%); }
.sh-band-form { display: flex; gap: 6px; }
.sh-band-form-pill { width: 28px; height: 28px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--sh-mono); font-weight: 800; font-size: 12px; }
.sh-band-form-w { background: var(--sh-green); color: #001119; }
.sh-band-form-d { background: var(--sh-yellow); color: #422006; }
.sh-band-form-l { background: var(--sh-red); color: #fff; }
.sh-band-form-club { font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-mute); }
.sh-band-derby { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; }
.sh-band-derby-team { font-size: 18px; font-weight: 800; color: #fff; }
.sh-band-derby-vs { font-family: var(--sh-mono); font-size: 14px; color: var(--sh-cyan); padding: 4px 12px; border: 1px solid var(--sh-cyan); border-radius: 4px; font-weight: 700; }
.sh-band-derby-time { font-family: var(--sh-mono); font-size: 11px; color: var(--sh-yellow); letter-spacing: 1px; }

/* --------------------------- 404 --------------------------- */
.sh-404 { padding: 60px 0; min-height: 70vh; display: flex; align-items: center; }
.sh-404-terminal { background: #000; border: 1px solid var(--sh-cyan); border-radius: var(--sh-radius); overflow: hidden; max-width: 720px; margin: 0 auto; box-shadow: var(--sh-shadow); }
.sh-404-bar { background: var(--sh-bg-3); padding: 10px 18px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--sh-line); }
.sh-404-bar-title { margin-left: 10px; flex: 1; font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text-mute); }
.sh-404-bar-status { font-family: var(--sh-mono); font-size: 11px; color: var(--sh-red); padding: 2px 8px; background: rgba(239,68,68,0.15); border-radius: 3px; font-weight: 700; letter-spacing: 1px; animation: sh-blink 1.4s infinite; }
.sh-404-body { padding: 32px; font-family: var(--sh-mono); }
.sh-404-line { color: var(--sh-text); font-size: 14px; padding: 4px 0; }
.sh-404-line-err { color: var(--sh-red); }
.sh-404-line-blink::after { content: ""; display: inline-block; width: 8px; height: 14px; background: var(--sh-cyan); margin-left: 4px; animation: sh-blink 0.8s infinite; vertical-align: middle; }
.sh-404-prompt { color: var(--sh-green); font-weight: 700; margin-right: 8px; }
.sh-404-line-err .sh-404-prompt { color: var(--sh-red); }
.sh-404-code { font-family: var(--sh-mono); font-size: 96px; font-weight: 900; color: var(--sh-cyan); margin: 24px 0 8px; line-height: 1; letter-spacing: -2px; text-shadow: 0 0 30px rgba(6,182,212,0.5); }
.sh-404-msg { color: var(--sh-text-mute); font-size: 14px; margin-bottom: 28px; }
.sh-404-cta { display: flex; justify-content: center; }

/* --------------------------- Article List --------------------------- */
.sh-page { padding: 50px 0; }
.sh-crumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text-mute); flex-wrap: wrap; }
.sh-crumbs-prompt { color: var(--sh-cyan); font-weight: 700; }
.sh-crumbs-link:hover { color: var(--sh-cyan); }
.sh-crumbs-sep { color: var(--sh-text-dim); }
.sh-crumbs-cur { color: var(--sh-cyan); font-weight: 600; }
.sh-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: flex-start; }
.sh-page-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.sh-page-card { background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); overflow: hidden; transition: transform 0.25s, border-color 0.25s; }
.sh-page-card:hover { transform: translateY(-3px); border-color: var(--sh-cyan); }
.sh-page-card-meta { display: flex; gap: 14px; padding: 12px 22px; background: var(--sh-bg-4); border-bottom: 1px solid var(--sh-line); font-family: var(--sh-mono); font-size: 11px; flex-wrap: wrap; }
.sh-page-card-stamp { color: var(--sh-yellow); font-weight: 700; }
.sh-page-card-time { color: var(--sh-cyan); font-weight: 700; }
.sh-page-card-cat { color: var(--sh-text-mute); }
.sh-page-card-id { color: var(--sh-text-dim); margin-left: auto; }
.sh-page-card-cover { display: block; aspect-ratio: 16/8; overflow: hidden; }
.sh-page-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sh-page-card:hover .sh-page-card-img { transform: scale(1.05); }
.sh-page-card-body { padding: 20px 22px; }
.sh-page-card-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.sh-page-card-title a { color: #fff; }
.sh-page-card:hover .sh-page-card-title a { color: var(--sh-cyan); }
.sh-page-card-excerpt { font-size: 13px; color: var(--sh-text-mute); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sh-page-card-readmore { font-family: var(--sh-mono); font-size: 12px; color: var(--sh-cyan); font-weight: 700; letter-spacing: 1px; transition: color 0.2s; }
.sh-page-card-readmore:hover { color: var(--sh-yellow); }

.sh-pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.sh-pagination a, .sh-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border-radius: var(--sh-radius-sm); background: var(--sh-card); border: 1px solid var(--sh-line); color: var(--sh-text); font-family: var(--sh-mono); font-weight: 600; font-size: 13px; transition: all 0.2s; }
.sh-pagination a:hover { border-color: var(--sh-cyan); color: var(--sh-cyan); }
.sh-pagination .current, .sh-pagination .active { background: var(--sh-cyan); color: #001119; border-color: var(--sh-cyan); }

/* Sidebar */
.sh-page-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }
.sh-side-card { background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); padding: 20px; }
.sh-side-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid var(--sh-line); }
.sh-side-head-text { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.sh-side-live-list { display: flex; flex-direction: column; gap: 6px; }
.sh-side-live-list li { display: grid; grid-template-columns: 60px 1fr auto; gap: 10px; align-items: center; padding: 8px 10px; background: var(--sh-bg-4); border-radius: var(--sh-radius-sm); font-family: var(--sh-mono); font-size: 12px; }
.sh-side-time { color: var(--sh-yellow); font-weight: 700; }
.sh-side-team { color: #fff; font-weight: 600; }
.sh-side-tag { padding: 2px 8px; background: rgba(6,182,212,0.15); color: var(--sh-cyan); border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.sh-side-rank { display: flex; flex-direction: column; gap: 8px; counter-reset: sh-rk; }
.sh-side-rank-row { display: flex; gap: 10px; align-items: flex-start; counter-increment: sh-rk; }
.sh-side-rank-num { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; border-radius: 3px; background: rgba(6,182,212,0.12); color: var(--sh-cyan); font-family: var(--sh-mono); font-size: 11px; font-weight: 800; flex-shrink: 0; }
.sh-side-rank-num::before { content: counter(sh-rk, decimal-leading-zero); }
.sh-side-rank-link { font-size: 13px; color: var(--sh-text); line-height: 1.5; transition: color 0.2s; }
.sh-side-rank-link:hover { color: var(--sh-cyan); }
.sh-side-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sh-side-tag-pill { padding: 5px 12px; background: var(--sh-bg-4); border: 1px solid var(--sh-line); border-radius: var(--sh-radius-sm); font-family: var(--sh-mono); font-size: 12px; color: var(--sh-text-mute); transition: all 0.2s; }
.sh-side-tag-pill:hover { background: var(--sh-cyan); color: #001119; border-color: var(--sh-cyan); }
.sh-side-cta { background: linear-gradient(135deg, rgba(6,182,212,0.12) 0%, var(--sh-card) 100%); }
.sh-side-cta-bar { display: flex; gap: 10px; padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px dashed var(--sh-line); }
.sh-side-cta-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.sh-side-cta-desc { font-size: 13px; color: var(--sh-text-mute); margin-bottom: 14px; line-height: 1.6; }

/* --------------------------- Article Detail --------------------------- */
.sh-detail { background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius); padding: 36px; }
.sh-detail-head { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px dashed var(--sh-line); }
.sh-detail-bar { display: flex; flex-wrap: wrap; gap: 14px; padding: 10px 14px; background: var(--sh-bg-4); border-radius: var(--sh-radius-sm); margin-bottom: 20px; }
.sh-detail-title { font-size: 32px; font-weight: 800; line-height: 1.25; color: #fff; margin-bottom: 14px; }
.sh-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-mute); letter-spacing: 1px; margin-bottom: 22px; }
.sh-detail-cover { position: relative; border-radius: var(--sh-radius-sm); overflow: hidden; }
.sh-detail-img { width: 100%; height: auto; }
.sh-detail-cover-tag { position: absolute; top: 14px; left: 14px; padding: 4px 10px; background: rgba(0,0,0,0.7); color: var(--sh-cyan); font-family: var(--sh-mono); font-size: 10px; font-weight: 700; letter-spacing: 2px; border-radius: 3px; }
.sh-detail-body { color: var(--sh-text); font-size: 16px; line-height: 1.85; }
.sh-detail-body p { margin-bottom: 16px; }
.sh-detail-body h2, .sh-detail-body h3 { color: #fff; margin: 28px 0 14px; font-weight: 800; }
.sh-detail-body h2 { font-size: 22px; }
.sh-detail-body h3 { font-size: 18px; }
.sh-detail-body img { border-radius: var(--sh-radius-sm); margin: 14px 0; }
.sh-detail-body a { color: var(--sh-cyan); border-bottom: 1px dashed var(--sh-cyan); }
.sh-detail-body ul, .sh-detail-body ol { margin: 14px 0 14px 24px; }
.sh-detail-body li { margin-bottom: 6px; list-style: disc; }
.sh-detail-share { display: flex; gap: 12px; margin: 28px 0; padding-top: 22px; border-top: 1px solid var(--sh-line); flex-wrap: wrap; }
.sh-detail-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--sh-line); }
.sh-detail-nav-link { display: flex; flex-direction: column; gap: 6px; padding: 14px 18px; border-radius: var(--sh-radius-sm); background: var(--sh-bg-4); border: 1px solid var(--sh-line); transition: all 0.2s; }
.sh-detail-nav-link:hover { border-color: var(--sh-cyan); transform: translateY(-2px); }
.sh-detail-nav-disabled { opacity: 0.4; cursor: not-allowed; }
.sh-detail-nav-next { text-align: right; }
.sh-detail-nav-tag { font-family: var(--sh-mono); font-size: 11px; color: var(--sh-cyan); font-weight: 700; letter-spacing: 1px; }
.sh-detail-nav-title { font-size: 13px; font-weight: 600; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --------------------------- Footer --------------------------- */
.sh-footer { background: var(--sh-bg-4); border-top: 1px solid var(--sh-line); padding-top: 50px; position: relative; overflow: hidden; }
.sh-footer-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(6,182,212,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(6,182,212,0.03) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.sh-footer .sh-container { position: relative; z-index: 2; }
.sh-footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; border-bottom: 1px solid var(--sh-line); margin-bottom: 32px; flex-wrap: wrap; gap: 20px; }
.sh-footer-brand { display: flex; align-items: center; gap: 12px; }
.sh-footer-brand-text { display: flex; flex-direction: column; }
.sh-footer-brand-name { font-family: var(--sh-mono); font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 2px; }
.sh-footer-brand-tag { font-family: var(--sh-mono); font-size: 10px; color: var(--sh-cyan); letter-spacing: 1.5px; margin-top: 4px; }
.sh-footer-status { display: flex; gap: 18px; flex-wrap: wrap; }
.sh-footer-status-row { display: flex; align-items: center; gap: 8px; }
.sh-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.sh-footer-col { padding-right: 16px; }
.sh-footer-head { font-family: var(--sh-mono); font-size: 12px; font-weight: 800; color: var(--sh-cyan); letter-spacing: 2px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px dashed var(--sh-line); }
.sh-footer-text { color: var(--sh-text-mute); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.sh-footer-meta { display: flex; flex-direction: column; gap: 6px; }
.sh-footer-meta-row { display: flex; gap: 8px; align-items: center; }
.sh-footer-list { display: flex; flex-direction: column; gap: 8px; }
.sh-footer-link { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sh-text-mute); transition: color 0.2s; font-family: var(--sh-mono); }
.sh-footer-link:hover { color: var(--sh-cyan); }
.sh-link-key { padding: 2px 6px; background: rgba(6,182,212,0.12); color: var(--sh-cyan); border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; min-width: 32px; text-align: center; }
.sh-link-arrow { color: var(--sh-cyan); font-weight: 700; }

.sh-footer-friendlink { padding: 24px 0; border-top: 1px solid var(--sh-line); border-bottom: 1px solid var(--sh-line); margin-bottom: 20px; }
.sh-friendlink-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.sh-friendlink-list-zq { margin-top: 8px; }
.sh-friendlink-item { padding: 5px 12px; background: var(--sh-card); border: 1px solid var(--sh-line); border-radius: var(--sh-radius-sm); font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-mute); transition: all 0.2s; }
.sh-friendlink-item:hover { background: rgba(6,182,212,0.12); color: var(--sh-cyan); border-color: var(--sh-cyan); }
.sh-friendlink-item-zq { background: rgba(251,191,36,0.05); }
.sh-friendlink-item-zq:hover { background: rgba(251,191,36,0.15); color: var(--sh-yellow); border-color: var(--sh-yellow); }

.sh-footer-bottom { padding: 18px 0; }
.sh-footer-bottom-bar { height: 2px; background: var(--sh-bg-3); border-radius: 2px; margin-bottom: 14px; overflow: hidden; }
.sh-footer-bottom-bar-fill { display: block; width: 70%; height: 100%; background: linear-gradient(90deg, var(--sh-cyan), var(--sh-green)); }
.sh-footer-bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-family: var(--sh-mono); font-size: 11px; color: var(--sh-text-dim); letter-spacing: 1px; }
.sh-footer-end { padding: 4px 10px; background: var(--sh-cyan); color: #001119; border-radius: 3px; font-weight: 800; letter-spacing: 2px; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 1024px) {
    .sh-board-head { grid-template-columns: 1fr; }
    .sh-board-title { font-size: 38px; }
    .sh-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .sh-feature-grid { grid-template-columns: 1fr; }
    .sh-band-grid { grid-template-columns: repeat(2, 1fr); }
    .sh-band-card-lg { grid-column: span 2; grid-row: auto; }
    .sh-band-card-wide { grid-column: span 2; }
    .sh-page-grid { grid-template-columns: 1fr; }
    .sh-page-side { position: static; }
    .sh-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sh-nav, .sh-header-cta { display: none; }
    .sh-burger { display: flex; }
    .sh-board-title { font-size: 30px; }
    .sh-section-title { font-size: 26px; }
    .sh-flight-head, .sh-flight-row { grid-template-columns: 70px 70px 1fr 90px 80px; padding: 10px 12px; gap: 8px; }
    .sh-flight-cell { font-size: 11px; }
    .sh-flight-cell-score { font-size: 13px; }
    .sh-multi-thead, .sh-multi-tr { grid-template-columns: 60px 1fr 80px 1fr 60px; padding: 10px 12px; gap: 8px; }
    .sh-multi-th-venue, .sh-multi-td-venue { display: none; }
    .sh-stat-grid { grid-template-columns: 1fr; }
    .sh-standings-thead, .sh-st-row { grid-template-columns: 36px 1fr 40px 50px; gap: 6px; padding: 10px 14px; }
    .sh-st-th:nth-child(3), .sh-st-th:nth-child(4), .sh-st-th:nth-child(5), .sh-st-th:nth-child(6),
    .sh-st-td:nth-child(3), .sh-st-td:nth-child(4), .sh-st-td:nth-child(5), .sh-st-td:nth-child(6) { display: none; }
    .sh-gauge-card { padding: 32px 20px; }
    .sh-gauge-features { grid-template-columns: 1fr; }
    .sh-gauge-meter-num { font-size: 42px; }
    .sh-gauge-title { font-size: 22px; }
    .sh-band-grid { grid-template-columns: 1fr; }
    .sh-band-card-lg, .sh-band-card-wide { grid-column: auto; }
    .sh-detail { padding: 22px; }
    .sh-detail-title { font-size: 24px; }
    .sh-detail-nav { grid-template-columns: 1fr; }
    .sh-footer-grid { grid-template-columns: 1fr; }
    .sh-footer-top { flex-direction: column; align-items: flex-start; }
    .sh-404-code { font-size: 64px; }
}

@media (max-width: 480px) {
    .sh-container { padding: 0 14px; }
    .sh-board-title { font-size: 26px; }
    .sh-flight-head, .sh-flight-row { grid-template-columns: 56px 1fr 70px 60px; }
    .sh-flight-cell-liga { display: none; }
    .sh-faq-q { padding: 14px 16px; gap: 10px; }
    .sh-faq-a { padding: 0 16px 16px 60px; font-size: 13px; }
    .sh-feature-row { grid-template-columns: 50px 1fr 18px; gap: 6px; }
    .sh-feature-row-cat { display: none; }
}
