/* ================= 全局暗色调打底，防止白屏闪烁 ================= */
        body { background-color: #121212; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif; margin: 0; padding: 0;}
        
        /* ================= 核心筛选区美化（玻璃拟物化） ================= */
        .live-filter-section { 
            padding: 20px; 
            background: rgba(255, 255, 255, 0.03); 
            border: 1px solid rgba(255, 255, 255, 0.05); 
            border-radius: 16px; 
            margin-bottom: 25px; 
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        /* 状态切换按钮 (PC端样式) */
        .match-status-tabs { display: flex; margin-bottom: 20px; gap: 2px;}
        .status-btn { 
            display: inline-block; padding: 12px 35px; font-size: 15px; 
            text-decoration: none; transition: all 0.2s ease; box-sizing: border-box; 
            text-align: center;
        }
        .status-btn.active { 
            background: linear-gradient(145deg, #b31d61, #007aff); 
            color: #fff; border-radius: 8px 0 0 8px; font-weight: bold; 
            box-shadow: 0 4px 15px rgba(138, 0, 67, 0.4);
        }
        .status-btn.normal { 
            background: rgba(255, 255, 255, 0.05); color: #b0b0b0; 
            border-radius: 0 8px 8px 0; 
        }
        .status-btn.normal:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

        /* 日期时间轴：自适应与手机端横向滑动核心 */
        .match-date-axis { 
            display: flex; gap: 12px; margin-bottom: 5px; 
            flex-wrap: wrap; /* PC端换行 */
        }
        
        .date-item-btn { 
            display: flex; flex-direction: column; justify-content: center; align-items: center; 
            min-width: 100px; height: 65px; 
            background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); 
            border-radius: 10px; color: #c0c0c0; text-decoration: none; font-size: 14px; 
            transition: all 0.2s ease; cursor: pointer; 
        }
        .date-item-btn .weekday-text { font-size: 12px; color: #888; margin-top: 5px;}
        .date-item-btn:hover { background: rgba(255, 255, 255, 0.1); color: #fff; transform: translateY(-1px); }
        .date-item-btn.active { 
            background: rgba(138, 0, 67, 0.1); border: 1px solid #007aff; 
            border-bottom: 4px solid #007aff; color: #fff; font-weight: bold; 
            box-shadow: 0 4px 12px rgba(138, 0, 67, 0.2);
        }
        .date-item-btn.active .weekday-text { color: #eee; }
        .date-item-btn.active .today-text { font-size: 16px; }

        .time-notice-bar { font-size: 13px; color: #777; margin-top: 8px; padding-left: 2px;}

        /* ================= 赛事列表区美化 ================= */
        .watch-guide-title { display: flex; align-items: center; font-size: 17px; color: #fff; font-weight: bold; margin: 30px 0 18px 0;}
        .watch-guide-title::before { content: ""; display: inline-block; width: 4px; height: 18px; background-color: #007aff; margin-right: 12px; border-radius: 2px; }
        
        /* 赛事卡片：暗色模式、精细边框 */
        .dynamic-match-item { 
            display: flex; align-items: center; justify-content: space-between; 
            padding: 20px 25px; 
            background-color: #1e1e1e; /* 纯暗色卡片背景 */
            border: 1px solid #2a2a2a;
            border-radius: 12px; margin-bottom: 15px; 
            transition: all 0.2s ease; 
        }
        .dynamic-match-item:hover { 
            border-color: #444; transform: translateX(2px); background-color: #222;
        }
        .match-meta { display: flex; align-items: center; gap: 20px; flex: 1;}
        .match-time { font-size: 20px; font-weight: 900; color: #fff; font-family: "Avenir", "Helvetica Neue", sans-serif; min-width: 60px;}
        .match-league { font-size: 12px; color: #aaa; background: #2a2a2a; padding: 5px 10px; border-radius: 6px; font-weight: 500; white-space: nowrap;}
        .match-teams { font-size: 17px; font-weight: bold; color: #f0f0f0; line-height: 1.5; flex: 1;}
        
        /* 按钮：酒红渐变 */
        .match-action-btn { 
            display: inline-block; 
            background: linear-gradient(135deg, #007aff, #a10051); 
            color: #fff; padding: 10px 25px; border-radius: 8px; font-size: 14px; 
            font-weight: bold; text-decoration: none; transition: all 0.2s ease; 
            white-space: nowrap; text-align: center;
        }
        .match-action-btn:hover { box-shadow: 0 4px 12px rgba(138, 0, 67, 0.5); opacity: 0.9; transform: scale(1.02); }
        .match-action-btn.end { background: linear-gradient(135deg, #555, #333); color: #ccc;}
        .match-action-btn.end:hover { box-shadow: none; opacity: 1; transform: none;}
        
        .no-data-tip { text-align: center; padding: 60px 20px; color: #666; font-size: 15px; background: #181818; border: 1px dashed #333; border-radius: 12px; }

        /* =================  手机端专属深度自适应设计 (关键部分) ================= */
        @media screen and (max-width: 768px) {
            .main-layout { display: flex; flex-direction: column; }
            .container { padding: 0 12px; }
            
            .live-filter-section { padding: 15px; margin-bottom: 15px; border-radius: 10px;}
            
            /* 状态按钮手机端拉满 */
            .match-status-tabs { width: 100%; display: flex; margin-bottom: 15px;gap: 0;}
            .status-btn { flex: 1; text-align: center; padding: 12px 0; font-size: 14px; border-radius: 6px !important;}
            
            /* 日期时间轴：改为手机端横向滑动大卡片 (App级体验) */
            .match-date-axis { 
                flex-wrap: nowrap; 
                overflow-x: auto; 
                -webkit-overflow-scrolling: touch; 
                scrollbar-width: none; 
                margin-left: -15px; margin-right: -15px; padding-left: 15px; padding-right: 15px; /* 撑满屏幕宽度滑动 */
                padding-bottom: 5px;
            }
            .match-date-axis::-webkit-scrollbar { display: none; } /* 隐藏滚动条 */
            
            .date-item-btn { min-width: 80px; height: 60px; flex-shrink: 0;}
            .date-item-btn .today-text { font-size: 14px; }
            .date-item-btn .weekday-text { font-size: 11px; margin-top: 3px; }

            /* 赛事卡片：改为分层排版，加大点击区域，一眼看到主队客队 */
            .dynamic-match-item { 
                flex-direction: column; 
                align-items: center; 
                padding: 15px; 
                text-align: center;
                border-radius: 10px;
                gap: 12px;
            }
            .match-meta { 
                flex-direction: column; /* 手机端内容纵向排 */
                gap: 8px; 
                width: 100%;
                justify-content: center;
            }
            .match-time { font-size: 16px; min-width: auto; font-weight: bold;}
            .match-league { font-size: 11px; padding: 3px 8px; }
            .match-teams { 
                font-size: 16px; 
                font-weight: 800; 
                width: 100%; 
                display: block; 
                margin: 5px 0 8px 0; 
                color: #fff;
            }
            
            /* 手机端观看按钮拉满，加大触控区域 */
            .dynamic-match-item > div:last-child {
                width: 100%;
            }
            .match-action-btn { 
                display: block; 
                width: 100%; 
                padding: 12px 0; 
                font-size: 14px; 
                box-sizing: border-box;
                border-radius: 6px;
            }
        }
        
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 30px; padding-top: 20px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: var(--radius-sm); color: var(--text-muted); font-size: 14px; transition: all 0.2s; cursor: pointer; }
.pagination a:hover { background: rgba(24, 144, 255, 0.1); color: var(--primary-blue); border-color: var(--primary-blue); }
.pagination .current { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); font-weight: bold; }