        /* 全局变量 - 丰富色彩 */
        :root {
            /* 主色调 */
            --primary: #4361ee;
            --primary-light: #4895ef;
            --primary-dark: #3a0ca3;
            
            /* 副色调 */
            --secondary: #f72585;
            --secondary-light: #ff4da6;
            --secondary-dark: #d9047c;
            
            /* 成功色 */
            --success: #4cc9f0;
            --success-light: #6bd4f5;
            --success-dark: #2bb4da;
            
            /* 警告色 */
            --warning: #ff9e00;
            --warning-light: #ffb133;
            --warning-dark: #e68a00;
            
            /* 强调色 */
            --accent-1: #7209b7;
            --accent-2: #3f37c9;
            --accent-3: #38b000;
            --accent-4: #ff0054;
            
            /* 中性色 */
            --white: #ffffff;
            --black: #000000;
            --gray-50: #f8f9fa;
            --gray-100: #e9ecef;
            --gray-200: #dee2e6;
            --gray-300: #ced4da;
            --gray-400: #adb5bd;
            --gray-500: #6c757d;
            --gray-600: #495057;
            --gray-700: #343a40;
            --gray-800: #212529;
            --gray-900: #121416;
            
            /* 圆角 */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-2xl: 32px;
            
            /* 阴影 */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.18);
            
            /* 过渡 */
            --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-normal: 350ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* 重置与基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--gray-800);
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
            min-height: 100vh;
            font-weight: 400;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Rubik', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .main-wrapper {
            display: flex;
            min-height: 100vh;
        }
        
        /* 左侧边栏 */
        .sidebar {
            width: 280px;
            background: linear-gradient(180deg, var(--primary-dark) 0%, var(--accent-1) 100%);
            color: var(--white);
            padding: 2rem 1.5rem;
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            z-index: 100;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
        }
        
        .nav-menu {
            list-style: none;
            margin-bottom: 3rem;
        }
        
        .nav-item {
            margin-bottom: 0.75rem;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            border-radius: var(--radius-lg);
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all var(--transition-fast);
            font-weight: 500;
        }
        
        .nav-link:hover,
        .nav-link.active {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            transform: translateX(5px);
        }
        
        .nav-icon {
            font-size: 1.25rem;
            width: 24px;
            text-align: center;
        }
        
        /* 侧边栏统计 */
        .sidebar-stats {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.25rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stat-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
        }
        
        /* 右侧主内容区 */
        .main-content {
            flex: 1;
            padding: 2rem;
        }
        
        /* 顶部栏 */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--gray-100);
        }
        
        .top-title h1 {
            font-size: 2.2rem;
            color: var(--gray-900);
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent-1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .top-title p {
            color: var(--gray-600);
            font-size: 1rem;
        }
        
        .user-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        /* 搜索框 */
        .search-box {
            position: relative;
            width: 300px;
        }
        
        .search-input {
            width: 100%;
            padding: 0.85rem 1.25rem 0.85rem 3rem;
            border: none;
            border-radius: var(--radius-xl);
            background: var(--white);
            color: var(--gray-800);
            font-size: 1rem;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-fast);
        }
        
        .search-input:focus {
            outline: none;
            box-shadow: var(--shadow-md);
        }
        
        .search-icon {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-500);
        }
        
        /* 主内容网格 */
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        
        /* 卡片通用样式 */
        .card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            border: 1px solid var(--gray-100);
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
        }
        
        .view-all {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color var(--transition-fast);
        }
        
        .view-all:hover {
            color: var(--primary-dark);
        }
        
        /* 直播卡片 */
        .live-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .live-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        
        .live-card:nth-child(2) {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
        }
        
        .live-card:nth-child(3) {
            background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
        }
        
        .live-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .live-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .live-content {
            padding: 1.5rem;
        }
        
        .teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
        }
        
        .team-logo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            color: var(--white);
            font-size: 2rem;
        }
        
        .team-name {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .vs {
            font-weight: 800;
            font-size: 1.5rem;
            margin: 0 1rem;
            opacity: 0.9;
        }
        
        .match-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-md);
            padding: 1rem;
            font-size: 0.9rem;
        }
        
        /* 右侧边栏 */
        .right-sidebar .card {
            margin-bottom: 2rem;
        }
        
        .right-sidebar .card:last-child {
            margin-bottom: 0;
        }
        
        /* 今日焦点 */
        .highlight-card {
            background: linear-gradient(135deg, var(--accent-1) 0%, #9d4edd 100%);
            color: var(--white);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .highlight-badge {
            display: inline-block;
            background: var(--warning);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* 排行榜 */
        .rankings-list {
            list-style: none;
        }
        
        .ranking-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-radius: var(--radius-md);
            margin-bottom: 0.75rem;
            background: var(--gray-50);
            transition: all var(--transition-fast);
        }
        
        .ranking-item:hover {
            background: var(--gray-100);
            transform: translateX(5px);
        }
        
        .ranking-item:nth-child(1) .rank {
            background: var(--warning);
        }
        
        .ranking-item:nth-child(2) .rank {
            background: var(--gray-500);
        }
        
        .ranking-item:nth-child(3) .rank {
            background: var(--accent-3);
        }
        
        .rank {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .ranking-info {
            flex: 1;
        }
        
        .ranking-name {
            font-weight: 600;
            color: var(--gray-900);
        }
        
        .ranking-score {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        /* 热门话题 */
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 0.75rem;
        }
        
        .topic-tag {
            background: var(--gray-100);
            color: var(--gray-700);
            padding: 0.75rem;
            border-radius: var(--radius-md);
            text-align: center;
            font-weight: 500;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        
        .topic-tag:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* 体育新闻 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .news-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: var(--radius-md);
            background: var(--gray-50);
            transition: all var(--transition-fast);
        }
        
        .news-item:hover {
            background: var(--gray-100);
        }
        
        .news-image {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
        }
        
        .news-content {
            flex: 1;
        }
        
        .news-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--gray-900);
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--gray-500);
        }
        
        /* 录像回放 */
        .replay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .replay-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--white);
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        
        .replay-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .thumbnail {
            height: 140px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .play-button {
            position: absolute;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            transition: all var(--transition-fast);
        }
        
        .replay-card:hover .play-button {
            background: var(--white);
            transform: scale(1.1);
        }
        
        .replay-info {
            padding: 1.25rem;
        }
        
        .replay-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--gray-900);
        }
        
        .replay-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--gray-500);
        }
        
        /* 合作伙伴 */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 1rem;
        }
        
        .partner-item {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--gray-700);
            transition: all var(--transition-fast);
            border: 1px solid var(--gray-200);
        }
        
        .partner-item:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        /* 底部 */
        .bottom-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--gray-100);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .right-sidebar {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }
        }
        
        @media (max-width: 992px) {
            .main-wrapper {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                height: auto;
                position: static;
            }
            
            .nav-menu {
                display: flex;
                overflow-x: auto;
                margin-bottom: 1.5rem;
            }
            
            .nav-item {
                margin-bottom: 0;
                margin-right: 0.5rem;
            }
            
            .nav-link {
                white-space: nowrap;
            }
            
            .sidebar-stats {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
            }
            
            .stat-item {
                flex: 1;
                min-width: 120px;
                margin-right: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            
            .search-box {
                width: 100%;
            }
            
            .user-actions {
                width: 100%;
                justify-content: space-between;
            }
            
            .live-grid,
            .replay-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            
            .main-content {
                padding: 1.5rem;
            }
            
            .card {
                padding: 1.25rem;
            }
            
            .top-title h1 {
                font-size: 1.75rem;
            }
        }
        
        /* 工具类 */
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .mb-6 { margin-bottom: 3rem; }
        
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mt-6 { margin-top: 3rem; }
        
        .text-center { text-align: center; }
        .text-right { text-align: right; }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .badge-primary {
            background: var(--primary);
            color: var(--white);
        }
        
        .badge-secondary {
            background: var(--secondary);
            color: var(--white);
        }
        
        .badge-success {
            background: var(--success);
            color: var(--white);
        }
        
        .live-content img{
            width: 100%;
        }
        .cursor_pointer{
            cursor: pointer;
        }