:root {
            --primary-color: #0d1b2a;
            --secondary-color: #1b263b;
            --accent-color: #415a77;
            --light-color: #778da9;
            --highlight-color: #e0e1dd;
            --danger-color: #e63946;
            --success-color: #2a9d8f;
            --warning-color: #f4a261;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(27, 38, 59, 0.85)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            margin-bottom: 60px;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 35px;
            max-width: 700px;
            opacity: 0.95;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            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.15);
        }
        .prediction-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            background-color: var(--danger-color);
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 50px;
            height: 35px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        .stat-progress {
            height: 10px;
            border-radius: 5px;
            background-color: #e9ecef;
            margin-top: 8px;
        }
        .stat-progress-bar {
            height: 100%;
            border-radius: 5px;
            background-color: var(--accent-color);
        }
        .footer {
            background-color: var(--primary-color);
            color: var(--highlight-color);
            padding: 60px 0 30px;
        }
        .footer a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink .flink {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 10px 20px;
            margin: 8px;
            border-radius: 8px;
            border: 1px solid #dee2e6;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .friendlink .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-color);
        }
        .contact-info i {
            width: 24px;
            color: var(--accent-color);
        }
        .analysis-section {
            background-color: white;
            border-left: 5px solid var(--accent-color);
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .match-card {
            border-left: 4px solid var(--success-color);
            background-color: #f8fff9;
        }
        .player-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #dee2e6;
        }
        .mobile-optimized {
            font-size: 1.05rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .mobile-optimized {
                font-size: 1rem;
            }
        }
        .seo-content {
            text-align: justify;
            hyphens: auto;
        }
