        :root {
            --primary-white: #ffffff;
            --secondary-dark: #1a1a1a;
            --accent-green: #00c853;
            --accent-orange: #ff6b00;
            --text-gray: #666666;
            --border-light: #e0e0e0;
            --hover-bg: #f5f5f5;
            --footer-dark: #0f0f0f;
            --footer-gray: #2a2a2a;
            --bg-light: #f8f9fa;
            --danger-red: #ff1744;
            --live-red: #ff0040;
            --upcoming-blue: #2196F3;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: var(--bg-light);
            color: var(--secondary-dark);
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        /* 顶部实时比分条 */
        .live-ticker {
            background-color: var(--secondary-dark);
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
            border-bottom: 3px solid var(--accent-green);
        }

        .ticker-wrapper {
            display: flex;
            align-items: center;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-label {
            background-color: var(--accent-green);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ticker-content {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .match-item {
            display: inline-flex;
            align-items: center;
            margin-right: 30px;
            padding: 0 10px;
        }

        .match-item:hover {
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
            cursor: pointer;
        }

        .team-name {
            font-weight: 500;
            margin: 0 8px;
        }

        .score {
            color: var(--accent-green);
            font-weight: 700;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1em;
        }

        .match-time {
            color: #aaa;
            font-size: 0.8em;
            margin-left: 8px;
        }

        /* 主导航栏 */
        .main-navbar {
            background-color: var(--primary-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .navbar-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-dark) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .nav-link {
            color: var(--secondary-dark) !important;
            font-weight: 500;
            padding: 1.2rem 1rem !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-green) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: var(--accent-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 80%;
        }

        /* 页面标题区 */
        .page-header {
            background: linear-gradient(135deg, var(--secondary-dark) 0%, #2d2d2d 100%);
            padding: 60px 0 50px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-title {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .page-title i {
            color: var(--accent-green);
        }

        .page-subtitle {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            max-width: 600px;
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--live-red);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .live-indicator::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: white;
            border-radius: 50%;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* 统计栏 */
        .stats-bar {
            background-color: white;
            border-bottom: 1px solid var(--border-light);
            padding: 20px 0;
            position: sticky;
            top: 72px;
            z-index: 1020;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }

        .stats-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .stat-icon.live {
            background-color: rgba(255, 0, 64, 0.1);
            color: var(--live-red);
        }

        .stat-icon.upcoming {
            background-color: rgba(33, 150, 243, 0.1);
            color: var(--upcoming-blue);
        }

        .stat-icon.total {
            background-color: rgba(0, 200, 83, 0.1);
            color: var(--accent-green);
        }

        .stat-info h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            color: var(--secondary-dark);
        }

        .stat-info span {
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .filter-tabs {
            display: flex;
            gap: 10px;
        }

        .filter-tab {
            padding: 10px 25px;
            border-radius: 25px;
            border: 2px solid var(--border-light);
            background-color: white;
            color: var(--text-gray);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-tab:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
        }

        .filter-tab.active {
            background-color: var(--accent-green);
            border-color: var(--accent-green);
            color: white;
        }

        /* 主内容区 */
        .matches-section {
            padding: 40px 0 60px;
        }

        /* 赛事卡片网格 */
        .matches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        /* 赛事卡片 */
        .match-card {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
        }

        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
            border-color: var(--accent-green);
        }

        .match-card.live {
            border-color: var(--live-red);
        }

        .match-card.live:hover {
            border-color: var(--live-red);
            box-shadow: 0 12px 30px rgba(255, 0, 64, 0.15);
        }

        /* 卡片头部 */
        .match-card-header {
            padding: 15px 20px;
            background-color: var(--hover-bg);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .match-league {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--secondary-dark);
            font-size: 0.9rem;
        }

        .match-league i {
            color: var(--accent-green);
        }

        .match-status {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .match-status.live {
            background-color: var(--live-red);
            color: white;
            animation: pulse-bg 2s infinite;
        }

        @keyframes pulse-bg {
            0%, 100% { background-color: var(--live-red); }
            50% { background-color: #ff3366; }
        }

        .match-status.upcoming {
           
            color: #5d5959;
        }

        .match-status.ended {
            background-color: var(--text-gray);
            color: white;
        }

        /* 对阵区 */
        .match-teams {
            padding: 30px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .team-logo {
            width: 70px;
            height: 70px;
            background-color: var(--hover-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--secondary-dark);
            border: 3px solid var(--border-light);
            transition: all 0.3s;
        }

        .match-card:hover .team-logo {
            border-color: var(--accent-green);
            transform: scale(1.05);
        }

        .team-name {
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
        }

        .match-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            min-width: 100px;
        }

        .match-score {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-dark);
            line-height: 1;
        }

        .match-score.live {
            color: var(--live-red);
        }

        .match-time {
            font-size: 0.9rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        .match-time.live {
            color: var(--live-red);
            font-weight: 700;
        }

        .match-minute {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .match-mini {
            font-size: 1rem;
            opacity: 0.9;
        }
        /* 卡片底部 */
        .match-card-footer {
            padding: 20px 25px;
            border-top: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .match-meta {
            display: flex;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .match-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .watch-btn {
            padding: 10px 25px;
            background-color: var(--accent-green);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .watch-btn:hover {
            background-color: #00a344;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,200,83,0.3);
            color: white;
        }

        .watch-btn.live {
            background-color: var(--live-red);
            animation: pulse-btn 2s infinite;
        }

        .watch-btn.live:hover {
            background-color: #ff0040;
            box-shadow: 0 5px 15px rgba(255,0,64,0.3);
        }

        .watch-btn.win {
            background-color: var(--live-red);
            animation: pulse-btn 2s infinite;
        }

        .watch-btn.win:hover {
            background-color: #e95765;
            box-shadow: 0 5px 15px rgba(255,0,64,0.3);
        }

        .watch-btn.pan {
            background-color: #12bd92;
            animation: pulse-btn 2s infinite;
        }

        .watch-btn.pan:hover {
            background-color: #6edbc0;
            box-shadow: 0 5px 15px rgba(123, 179, 135, 0.3);
        }

        .watch-btn.lose {
            background-color: #4f5251;
            animation: pulse-btn 2s infinite;
        }

        .watch-btn.lose:hover {
            background-color: #969696;
            box-shadow: 0 5px 15px rgba(184, 184, 184, 0.3);
        }

        .watch-btn.dai {
            background-color: #2772d4;
            animation: pulse-btn 2s infinite;
        }

        .watch-btn.dai:hover {
            background-color: #72a0dd;
            box-shadow: 0 5px 15px rgba(91, 146, 218, 0.3);
        }

        @keyframes pulse-btn {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .watch-btn:disabled {
            background-color: var(--border-light);
            color: var(--text-gray);
            cursor: not-allowed;
            animation: none;
        }

        /* 特色直播卡片（大） */
        .featured-match {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--secondary-dark) 0%, #2d2d2d 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .featured-match::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
        }

        .featured-match .match-card-header {
            background-color: rgba(255,255,255,0.05);
        }

        .featured-match .match-league {
            color: white;
        }

        .featured-match .team-logo {
            background-color: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            color: white;
            width: 90px;
            height: 90px;
            font-size: 1.5rem;
        }

        .featured-match .team-name {
            color: white;
            font-size: 1.2rem;
        }

        .featured-match .match-score {
            color: white;
            font-size: 4rem;
        }

        .featured-match .match-score.live {
            color: var(--accent-green);
        }

        .featured-match .match-time {
            color: rgba(255,255,255,0.8);
            text-align: center;
        }

        .featured-match .match-card-footer {
            border-top-color: rgba(255,255,255,0.1);
        }

        .featured-match .match-meta {
            color: rgba(255,255,255,0.7);
        }

        /* 侧边栏 */
        .sidebar-section {
            margin-bottom: 30px;
        }

        .sidebar-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sidebar-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background-color: var(--accent-green);
            margin-left: 10px;
        }

        .sidebar-title i {
            color: var(--accent-green);
        }

        /* ==================== 今日赛事推荐 ==================== */
        .match-recommendation {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .match-recommendation:hover {
            border-color: var(--accent-green);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,200,83,0.15);
        }

        .match-recommendation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--accent-green);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .match-recommendation:hover::before {
            opacity: 1;
        }

        .recommend-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background-color: var(--accent-orange);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .recommend-badge.high-confidence {
            background-color: var(--accent-green);
        }

        .recommend-badge.risk {
            background-color: #ff1744;
        }

        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .team-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .team-logo-placeholder {
            width: 40px;
            height: 40px;
            background-color: var(--hover-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--secondary-dark);
            font-size: 0.9rem;
            border: 2px solid var(--border-light);
        }

        .team-info-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary-dark);
            text-align: center;
        }

        .match-vs {
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-gray);
            padding: 0 15px;
        }

        .match-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px dashed var(--border-light);
        }

        .match-league {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        .match-league i {
            color: var(--accent-green);
        }

        .match-time-countdown {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-orange);
        }

        .match-time-countdown i {
            font-size: 0.9rem;
        }

        .odds-section {
            margin-top: 12px;
            padding: 12px;
            background-color: white;
            border-radius: 8px;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .odds-item {
            text-align: center;
        }

        .odds-label {
            font-size: 0.7rem;
            color: #999;
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .odds-value {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary-dark);
        }

        .odds-value.recommended {
            color: var(--accent-green);
            position: relative;
        }

        .odds-value.recommended::after {
            content: '★';
            position: absolute;
            top: -8px;
            right: -10px;
            font-size: 0.6rem;
            color: var(--accent-orange);
        }

        .prediction-bar {
            margin-top: 12px;
            height: 6px;
            background-color: var(--hover-bg);
            border-radius: 3px;
            overflow: hidden;
            display: flex;
        }

        .prediction-segment {
            height: 100%;
            transition: all 0.3s;
        }

        .prediction-segment.win {
            background-color: var(--accent-green);
        }

        .prediction-segment.draw {
            background-color: var(--warning-yellow);
        }

        .prediction-segment.loss {
            background-color: var(--danger-red);
        }

        .prediction-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 0.75rem;
            color: #999;
        }

        .view-analysis-btn {
            width: 100%;
            margin-top: 15px;
            padding: 10px;
            background-color: transparent;
            border: 2px solid var(--accent-green);
            color: var(--accent-green);
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .view-analysis-btn:hover {
            background-color: var(--accent-green);
            color: white;
        }

        .more-matches-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .more-matches-link:hover {
            color: var(--accent-green);
            gap: 12px;
        }

        /* 专家排行榜 */
        .expert-rank-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background-color: white;
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .expert-rank-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .rank-number {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--border-light);
            min-width: 30px;
            text-align: center;
        }

        .rank-number.top {
            color: var(--accent-orange);
        }

        .rank-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-green);
        }

        .rank-info {
            flex: 1;
        }

        .rank-name {
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 4px;
        }

        .rank-stats {
            font-size: 0.8rem;
            color: #999;
        }

        .rank-accuracy {
            text-align: right;
        }

        .accuracy-value {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-green);
        }

        .accuracy-label {
            font-size: 0.75rem;
            color: #999;
        }

        /* 页脚 */
        .site-footer {
            background-color: var(--footer-dark);
            color: white;
            margin-top: 60px;
        }

        .footer-cta {
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .footer-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.03) 10px,
                rgba(255,255,255,0.03) 20px
            );
            animation: slide 20s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cta-text h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-text p {
            margin: 0;
            opacity: 0.9;
            font-size: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-cta {
            background-color: white;
            color: var(--accent-green);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--accent-green);
        }

        .footer-main {
            padding: 60px 0 40px;
        }

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .brand-icon-footer {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .brand-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .brand-text span {
            color: var(--accent-green);
        }

        .footer-desc {
            color: #999;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            background-color: var(--footer-gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background-color: var(--accent-green);
            color: white;
            transform: translateY(-3px);
        }

        .footer-links-col {
            margin-bottom: 30px;
        }

        .footer-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-green);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-bottom {
            background-color: #0a0a0a;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 25px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .copyright a {
            color: var(--accent-green);
            text-decoration: none;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* 响应式设计 */
        @media (max-width: 991px) {
            .page-title {
                font-size: 2rem;
            }

            .matches-grid {
                grid-template-columns: 1fr;
            }

            .featured-match {
                grid-column: span 1;
            }

            .stats-wrapper {
                flex-direction: column;
                align-items: flex-start;
            }

            .filter-tabs {
                width: 100%;
                overflow-x: auto;
                flex-wrap: nowrap;
            }
        }

        @media (max-width: 576px) {
            .match-teams {
                padding: 20px 15px;
            }

            .team-logo {
                width: 50px;
                height: 50px;
                font-size: 0.9rem;
            }

            .match-score {
                font-size: 1.8rem;
            }

            .featured-match .team-logo {
                width: 60px;
                height: 60px;
            }

            .featured-match .match-score {
                font-size: 2.5rem;
            }

            .cta-text h3 {
                font-size: 1.4rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
        }
    body,td,th {
	font-family: "Noto Sans SC", sans-serif;
}

/* 分页容器 */
.pagination-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 6px;
}

/* 页码按钮通用样式 */
.page-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s;
}

.page-item:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* 当前页高亮 */
.page-item.active {
    background: #009966;
    color: #fff;
    border-color: #009966;
    font-weight: bold;
}

/* 禁用按钮 */
.page-item.disabled {
    background: #f0f0f0;
    color: #999;
    border-color: #eee;
    cursor: not-allowed;
}
        /* 专家信息卡片 */
        .expert-info-card {
            background: rgba(255,255,255,0.95);
            border-radius: 16px;
            padding: 24px;
            margin-top: 20px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        .expert-info-inner {
            display: flex;
            gap: 30px;
            align-items: stretch;
        }

        /* 左侧头像区 */
        .expert-avatar-section {
            flex-shrink: 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-right: 24px;
            border-right: 1px solid rgba(0,0,0,0.08);
        }

        .expert-avatar-wrapper {
            position: relative;
            width: 120px;
            height: 120px;
            margin-bottom: 12px;
        }

        .expert-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .expert-rank-badge {
            position: absolute;
            bottom: -5px;
            right: -5px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            padding: 4px 10px;
            border-radius: 20px;
            border: 2px solid #fff;
        }

        .expert-name {
            font-size: 28px;
            font-weight: 900;
            color: #333;
        }
         .expert-rank-text {
            font-size: 12px;
        }
        /* 右侧数据区 */
        .expert-data-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* 胜率网格 */
        .win-rate-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .rate-box {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 16px;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .rate-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .rate-label {
            font-size: 14px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .rate-label i {
            color: #667eea;
        }

        .rate-value {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
            font-family: 'Oswald', sans-serif;
        }

        .rate-value[data-rate="0"], .rate-value[data-rate=""] {
            color: #999;
        }

        /* 进度条 */
        .progress-bar {
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        .rate-stats {
            display: flex;
            gap: 15px;
            font-size: 13px;
            color: #666;
        }

        .rate-stats b {
            color: #333;
            font-weight: 600;
        }

        .stat-win b { color: #28a745; }
        .stat-draw b { color: #ffc107; }
        .stat-lose b { color: #dc3545; }

        /* 近期战绩 */
        .recent-records {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 16px;
        }

        .records-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .records-header em {
            font-style: normal;
            color: #666;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .records-header em i {
            color: #667eea;
        }

        .records-more {
            color: #667eea;
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 2px;
            transition: all 0.2s;
        }

        .records-more:hover {
            color: #764ba2;
            gap: 6px;
        }

        .records-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .record-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .record-icon:hover {
            transform: scale(1.1);
        }

        .record-icon.sheng {
            background: #ca4a5b;
            color: #ffffff;
        }

        .record-icon.ping {
            background: #70d349;
            color: #ffffff;
        }

        .record-icon.fu {
            background: #696969;
            color: #ffffff;
        }

        .record-icon.dai {
            background: #5f8adf;
            color: #ffffff;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .expert-info-inner {
                flex-direction: column;
                gap: 20px;
            }

            .expert-avatar-section {
                padding-right: 0;
                border-right: none;
                border-bottom: 1px solid rgba(0,0,0,0.08);
                padding-bottom: 20px;
            }

            .win-rate-grid {
                grid-template-columns: 1fr;
            }

            .records-icons {
                gap: 6px;
            }

            .record-icon {
                width: 28px;
                height: 28px;
                font-size: 11px;
            }
        }

