:root {
            --primary: #1a4b8c;
            --secondary: #cf2e2e;
            --accent: #f8c300;
            --dark: #212529;
            --light: #f8f9fa;
            --success: #28a745;
            --info: #17a2b8;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        .card-header {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            padding: 1rem 1.5rem;
            border-bottom: none;
        }
        .badge-custom {
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            color: white;
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 600;
        }
        .table-custom {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .table-custom thead th {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem;
        }
        .table-custom tbody tr:hover {
            background-color: rgba(26, 75, 140, 0.05);
        }
        .progress {
            height: 12px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
        .progress-bar {
            background-color: var(--secondary);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px 10px;
            background: var(--light);
            border-radius: 8px;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--dark);
            color: #aaa;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: block;
        }
        .contact-info li {
            margin-bottom: 12px;
        }
        .contact-info i {
            width: 24px;
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 25px;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            background-color: var(--success);
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .prediction-card {
            border-left: 5px solid var(--secondary);
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
            border: 2px solid white;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stats-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
                text-align: center;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-number {
                font-size: 2rem;
            }
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(26, 75, 140, 0.25);
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 30px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #153a6d;
            border-color: #153a6d;
        }
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        .analysis-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            margin-bottom: 30px;
            border-top: 4px solid var(--info);
        }
        .player-card {
            border-radius: 10px;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .player-card:hover {
            transform: scale(1.03);
        }
        .player-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        .tactical-diagram {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            border: 2px dashed #ced4da;
        }
