:root {
            --primary-color: #0a3d62;
            --secondary-color: #e84118;
            --accent-color: #f9ca24;
            --light-bg: #f8f9fa;
            --dark-text: #2d3436;
        }
        body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            color: var(--dark-text);
            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(10, 61, 98, 0.85), rgba(232, 65, 24, 0.8)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .prediction-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            border-top: 4px solid var(--secondary-color);
            margin-bottom: 2rem;
        }
        .prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(232, 65, 24, 0.15);
        }
        .team-flag {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .vs-badge {
            background: var(--accent-color);
            color: #000;
            font-weight: bold;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            margin: 1rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .stat-box {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 5px solid var(--primary-color);
            transition: all 0.3s;
        }
        .stat-box:hover {
            background: white;
            box-shadow: 0 8px 20px rgba(10, 61, 98, 0.1);
        }
        .live-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: #e84118;
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .match-timeline {
            position: relative;
            padding-left: 2rem;
            border-left: 3px dashed #ccc;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-color);
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.2s;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .friendlink a.flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            color: var(--primary-color);
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s;
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 5rem 0; }
            .stats-grid { grid-template-columns: 1fr; }
            .display-4 { font-size: 2.5rem; }
        }
        .article-content {
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .article-content h3 {
            color: var(--primary-color);
            border-left: 4px solid var(--accent-color);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
