:root {
            --primary: #0033A0;
            --secondary: #FFD100;
            --accent: #CE1126;
            --dark: #1A1A1A;
            --light: #F8F9FA;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--dark);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0,51,160,0.85), rgba(0,51,160,0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
        }
        .stat-card {
            border: none;
            border-radius: 12px;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .match-timeline {
            position: relative;
            padding-left: 30px;
        }
        .match-timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--secondary);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 40px;
            height: 30px;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .prediction-meter {
            height: 12px;
            border-radius: 6px;
            background: #e9ecef;
            overflow: hidden;
        }
        .meter-fill {
            height: 100%;
            border-radius: 6px;
        }
        .article-card {
            border-left: 4px solid var(--primary);
        }
        .friendlink a {
            color: var(--primary);
            text-decoration: none;
            padding: 8px 15px;
            border: 1px solid #dee2e6;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .friendlink a:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: scale(1.05);
        }
        .footer {
            background: var(--dark);
            color: white;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: var(--secondary);
            color: var(--dark);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
