:root {
            --primary-color: #1a237e;
            --secondary-color: #d32f2f;
            --accent-color: #ffab00;
            --text-dark: #212121;
            --text-light: #757575;
            --bg-light: #f5f5f5;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #283593 50%, #3949ab 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" opacity="0.05"><path fill="white" d="M0 0h1200v600H0z"/><circle cx="300" cy="300" r="150"/><circle cx="900" cy="200" r="100"/><circle cx="600" cy="400" r="80"/>');
            background-size: cover;
        }
        .navbar {
            backdrop-filter: blur(10px);
            background-color: rgba(26, 35, 126, 0.95);
            transition: var(--transition);
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: white !important;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: var(--shadow);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .score-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.5rem;
            display: inline-block;
            margin: 0.5rem;
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        .live-indicator {
            animation: pulse 2s infinite;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-right: 8px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 8px;
            background-color: white;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }
        .analysis-card {
            border-left: 4px solid var(--accent-color);
            background-color: #fff8e1;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .friendlink {
            background-color: var(--bg-light);
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: white;
            border-radius: 6px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            margin: 0.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #121a3a;
            color: rgba(255, 255, 255, 0.8);
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
            margin-right: 0.75rem;
        }
        .social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        .prediction-meter {
            height: 12px;
            background-color: #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
            margin: 1rem 0;
        }
        .meter-fill {
            height: 100%;
            border-radius: 6px;
            background: linear-gradient(90deg, #4caf50, #8bc34a);
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .stat-value {
                font-size: 2rem;
            }
        }
