:root {
            --primary-color: #1a237e;
            --secondary-color: #d32f2f;
            --accent-color: #ff9800;
            --light-bg: #f5f5f7;
            --dark-text: #212121;
            --light-text: #757575;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', system-ui, sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 60px;
        }
        .match-countdown {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 25px;
            margin-top: 30px;
        }
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffeb3b;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: var(--box-shadow);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        .live-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 0.9; }
            50% { opacity: 1; }
            100% { opacity: 0.9; }
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin: 0 auto 15px;
        }
        .stat-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--box-shadow);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .prediction-meter {
            height: 20px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            margin: 15px 0;
        }
        .meter-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 1.5s ease;
        }
        .analysis-section {
            background: var(--light-bg);
            padding: 60px 0;
            margin: 60px 0;
        }
        .form-table {
            width: 100%;
            border-collapse: collapse;
        }
        .form-table td {
            width: 30px;
            height: 30px;
            text-align: center;
            border-radius: 4px;
            font-weight: 600;
        }
        .win-form { background: #4caf50; color: white; }
        .draw-form { background: #ff9800; color: white; }
        .loss-form { background: #f44336; color: white; }
        .contact-info {
            background: linear-gradient(135deg, var(--primary-color), #283593);
            color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            height: 100%;
        }
        .footer {
            background: #0d1531;
            color: #b0b0b0;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #e0e0e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink {
            background: #f8f9fa;
            padding: 40px 0;
            border-top: 1px solid #eaeaea;
            border-bottom: 1px solid #eaeaea;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            margin: 8px;
            border-radius: 6px;
            color: var(--primary-color);
            font-weight: 500;
            border: 1px solid #e0e0e0;
            transition: var(--transition);
            text-decoration: none !important;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .sticky-sidebar {
            position: sticky;
            top: 100px;
        }
        .content-section {
            margin-bottom: 80px;
        }
        .content-section h2 {
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        .highlight-text {
            background: linear-gradient(90deg, #ffecb3, #ffe082);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-color);
            margin: 25px 0;
        }
        .player-card {
            text-align: center;
            padding: 20px 10px;
            border-radius: var(--border-radius);
            background: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }
        .player-card:hover {
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
        }
        .player-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 4px solid #f0f0f0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
                text-align: center;
            }
            .countdown-number {
                font-size: 1.8rem;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
            .sticky-sidebar {
                position: static;
                margin-top: 40px;
            }
        }
