﻿/* style block 1 from live.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html,
        body {
            width: 100%;
            height: 100%;
            overflow: auto;
            background: #030407;
        }
        .responsive-page {
            display: block;
            width: 100%;
            height: 100vh;
            border: 0;
        }
        .responsive-page--mobile {
            display: none;
        }
        .responsive-page--pc {
            display: block;
        }
        @media (max-width: 767px) {
            .responsive-page--mobile {
                display: block;
            }
            .responsive-page--pc {
                display: none;
            }
        }
/* style block 2 from live.html */
:root {
                    --bg-deep: #030407;
                    --bg-surface: #090B12;
                    --primary-glow: #00FF66;
                    --secondary-glow: #7B2CBF;
                    --text-high: #FFFFFF;
                }
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }
                body {
                    background-color: var(--bg-deep);
                    font-family: sans-serif;
                    color: var(--text-high);
                }
                .original-main {
                    width: 60%;
                    margin: 30px auto;
                }
                .section-header-huge {
                    font-size: 22px;
                    font-weight: 900;
                    margin-bottom: 16px;
                }
                .unbound-layout {
                    display: grid;
                    grid-template-columns: 18% 80%;
                    gap: 2%;
                }
                .date-strip {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                }
                .date-node-huge {
                    font-size: 16px;
                    font-weight: 900;
                    color: #4A5568;
                    cursor: pointer;
                    padding: 8px;
                    background: var(--bg-surface);
                    border-radius: 6px;
                }
                .date-node-huge.active {
                    color: var(--primary-glow);
                    border-left: 3px solid var(--primary-glow);
                }
                .date-node-huge[data-date="hot"] {
                    color: var(--primary-glow);
                }
                .matrix-flow {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                }
                .matrix-skeleton {
                    background: rgba(255, 255, 255, 0.01);
                    border-radius: 8px;
                    padding: 12px 20px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    border: 1px solid rgba(255, 255, 255, 0.03);
                }
                .skeleton-left {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    font-size: 16px;
                }
                .time-badge {
                    font-weight: bold;
                    color: var(--secondary-glow);
                }
                .match-pairing {
                    font-weight: 700;
                }
                .terminal-btn {
                    background: transparent;
                    border: none;
                    color: var(--primary-glow);
                    font-size: 16px;
                    font-weight: bold;
                    cursor: pointer;
                }
/* style block 3 from live.html */
:root {
                    --bg-main: #08090D;
                    --bg-card: #12141C;
                    --primary: #00FF66;
                    --text-main: #FFFFFF;
                    --text-muted: #64748B;
                    --danger: #FF3B30;
                }
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }
                body {
                    background-color: var(--bg-main);
                    font-family: -apple-system, sans-serif;
                    color: var(--text-main);
                    padding-bottom: 90px;
                }
                /* 新排版：横向日历滚动轴带 */
                .timeline-bar {
                    display: flex;
                    gap: 12px;
                    overflow-x: auto;
                    padding: 16px;
                    background: #0E1017;
                    scrollbar-width: none;
                }
                .timeline-bar::-webkit-scrollbar {
                    display: none;
                }
                .time-node {
                    flex: 0 0 60px;
                    height: 64px;
                    background: var(--bg-card);
                    border-radius: 12px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    border: 1px solid rgba(255, 255, 255, 0.02);
                    transition: 0.3s;
                }
                .time-node.active {
                    background: var(--primary);
                    color: #000;
                    font-weight: bold;
                    box-shadow: 0 4px 14px rgba(0, 255, 102, 0.3);
                }
                .time-node .date {
                    font-size: 16px;
                    font-weight: 800;
                    font-family: 'Impact', sans-serif;
                }
                .time-node .day {
                    font-size: 10px;
                    opacity: 0.7;
                    margin-top: 2px;
                }
                /* 赛事分类胶囊 */
                .filter-capsules {
                    display: flex;
                    gap: 8px;
                    padding: 12px 16px;
                    overflow-x: auto;
                }
                .capsule {
                    background: #181B25;
                    color: var(--text-muted);
                    padding: 6px 14px;
                    border-radius: 20px;
                    font-size: 12px;
                    font-weight: 600;
                    white-space: nowrap;
                    border: 1px solid rgba(255, 255, 255, 0.03);
                }
                .capsule.active {
                    background: rgba(0, 255, 102, 0.1);
                    color: var(--primary);
                    border-color: var(--primary);
                }
                .capsule[data-date="hot"] {
                    color: var(--primary);
                    border-color: rgba(0, 255, 102, 0.55);
                }
                /* 直播列表 */
                .match-list {
                    padding: 12px 16px;
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                }
                .match-list-card {
                    background: var(--bg-card);
                    border-radius: 16px;
                    padding: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    border: 1px solid rgba(255, 255, 255, 0.02);
                }
                .match-info-left {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                    width: 25%;
                }
                .match-league {
                    font-size: 11px;
                    color: var(--primary);
                    font-weight: bold;
                }
                .match-clock {
                    font-size: 15px;
                    font-weight: 700;
                    font-family: monospace;
                    color: var(--text-muted);
                }
                .match-teams-center {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    width: 50%;
                    border-left: 1px solid rgba(255, 255, 255, 0.05);
                    padding-left: 14px;
                }
                .team-row {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    font-size: 14px;
                    font-weight: 600;
                }
                .team-dot {
                    width: 16px;
                    height: 16px;
                    background: rgba(255, 255, 255, 0.1);
                    border-radius: 50%;
                    display: inline-block;
                }
                .match-action-right {
                    width: 25%;
                    display: flex;
                    justify-content: flex-end;
                }
                .live-tag-btn {
                    background: transparent;
                    border: 1px solid var(--primary);
                    color: var(--primary);
                    font-size: 11px;
                    font-weight: 700;
                    padding: 6px 12px;
                    border-radius: 8px;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    gap: 4px;
                }
                .live-tag-btn.playing {
                    background: var(--danger);
                    border-color: var(--danger);
                    color: #fff;
                }
/* responsive iframe shell */
html:has(body.responsive-shell),
body.responsive-shell {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
