:root {
            --primary-color: #1a237e;
            --secondary-color: #c62828;
            --accent-color: #ff9800;
            --light-bg: #f5f7fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1632754887179-87f7886e58b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            margin-bottom: 3rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 20px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            border: 2px solid #ddd;
        }
        .prediction-meter {
            height: 25px;
            border-radius: 15px;
            overflow: hidden;
            background: #e9ecef;
        }
        .meter-fill {
            height: 100%;
            border-radius: 15px;
            transition: width 1.5s ease-in-out;
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        .analysis-box {
            border-left: 5px solid var(--accent-color);
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 30px;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #1a1a2e;
            color: #b0b0b0;
            padding-top: 3rem;
        }
        footer a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin-right: 10px;
            transition: background 0.3s;
        }
        .social-icon:hover {
            background: var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
