:root {
            --primary-color: #0d3b66;
            --secondary-color: #f95738;
            --accent-color: #ee964b;
            --light-color: #f4f4f9;
            --dark-color: #1a1a2e;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            background-color: var(--light-color);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            margin-bottom: 2.5rem;
            font-weight: 700;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .match-card {
            background: linear-gradient(135deg, var(--primary-color), #1c5d99);
            color: white;
            border-radius: 15px;
            padding: 2rem;
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .live-badge {
            background-color: #dc3545;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .friendlink a.flink {
            display: inline-block;
            background-color: #f8f9fa;
            color: var(--dark-color);
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            border-color: var(--secondary-color);
            color: var(--secondary-color);
            transform: scale(1.05);
        }
        footer {
            background-color: var(--dark-color);
            color: #aaa;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info li {
            margin-bottom: 0.75rem;
        }
        .contact-info i {
            color: var(--accent-color);
            width: 1.5rem;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        .analysis-highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .btn-custom {
            background-color: var(--secondary-color);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: background-color 0.3s ease;
        }
        .btn-custom:hover {
            background-color: #e04a2d;
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                text-align: center;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
