:root {
            --primary-blue: #003366;
            --secondary-blue: #00509e;
            --accent-gold: #d4af37;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
            --success-green: #28a745;
            --danger-red: #dc3545;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            border-bottom: 4px solid var(--accent-gold);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s;
            margin: 0 5px;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1630418887757-72ea8b46d71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 120px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 51, 102, 0.85);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        .match-prediction-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            overflow: hidden;
            transition: transform 0.3s;
            margin-bottom: 30px;
        }
        .match-prediction-card:hover {
            transform: translateY(-10px);
        }
        .flag-icon {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .prediction-badge {
            font-size: 0.9rem;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
        }
        .live-score {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }
        .stat-card {
            background: var(--light-gray);
            border-left: 4px solid var(--secondary-blue);
            padding: 20px;
            border-radius: 8px;
            height: 100%;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .analysis-section {
            background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
            padding: 60px 0;
        }
        .player-card {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        .player-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .player-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-gold);
            margin: 0 auto 15px;
        }
        .form-guide {
            border-top: 3px solid var(--accent-gold);
            background: white;
            padding: 25px;
            border-radius: 10px;
        }
        .form-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
        }
        .form-win { background: var(--success-green); }
        .form-draw { background: #ffc107; }
        .form-loss { background: var(--danger-red); }
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 60px 0 20px;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: #ddd;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .flink:hover {
            background: var(--accent-gold);
            color: var(--dark-gray);
            transform: translateY(-3px);
        }
        .contact-info li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 80px 0; }
            .stat-number { font-size: 2rem; }
            .navbar-brand { font-size: 1.5rem; }
        }
