:root {
            --primary: #0a3d62;
            --secondary: #1e90ff;
            --accent: #ff6b6b;
            --light: #f8f9fa;
            --dark: #2d3436;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .navbar-brand i {
            color: var(--accent);
        }
        .hero {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
        }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .section-title {
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .match-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--secondary);
        }
        .prediction-badge {
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .live-badge {
            background: #ff3838;
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .stat-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            border-top: 4px solid var(--primary);
        }
        .stat-box i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: #f1f8ff;
            border-radius: 8px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #d1e7ff;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--secondary);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: var(--dark);
            color: #ccc;
            padding-top: 3rem;
        }
        footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
        }
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 40px;
        }
        .btn-primary-custom {
            background: var(--primary);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .btn-primary-custom:hover {
            background: #08304e;
        }
        .analysis-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
        }
        .timeline {
            border-left: 3px solid var(--secondary);
            padding-left: 25px;
            margin-left: 10px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -32px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary);
        }
        .contact-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .contact-box i {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.5rem;
        }
