:root {
            --primary-color: #1a237e;
            --secondary-color: #d32f2f;
            --accent-color: #ff9800;
            --light-bg: #f5f5f5;
            --dark-text: #212121;
            --light-text: #757575;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(211, 47, 47, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
            text-align: center;
        }
        .section-title {
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-bottom: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .card-hover {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .live-score {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        .friendlink .flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 10px 20px;
            margin: 5px;
            border-radius: 5px;
            color: var(--primary-color);
            text-decoration: none;
            transition: background 0.3s;
        }
        .friendlink .flink:hover {
            background: var(--primary-color);
            color: white;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0;
        }
        .contact-info a {
            color: #bbdefb;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .analysis-box {
            border-top: 4px solid var(--accent-color);
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stat-table th {
            background-color: var(--primary-color);
            color: white;
        }
