:root {
            --primary-color: #1a3c8b;
            --secondary-color: #c8102e;
            --accent-color: #ffd700;
            --dark-color: #0a1931;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: #f5f7ff;
            color: #333;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0a1931 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #ffffff 0%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
        }
        .stat-bar {
            height: 10px;
            border-radius: 5px;
            overflow: hidden;
        }
        .england-bar {
            background: linear-gradient(90deg, var(--primary-color) 0%, #3a6bff 100%);
        }
        .croatia-bar {
            background: linear-gradient(90deg, #d70026 0%, var(--secondary-color) 100%);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background-color: #eef2ff;
            border-radius: 30px;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #d1d9ff;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        footer {
            background-color: var(--dark-color);
        }
        .contact-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
