:root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #198754;
            --dark-color: #212529;
            --light-color: #f8f9fa;
        }
        body {
            font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
            color: #333;
            line-height: 1.8;
        }
        header {
            background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
            color: white;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }
        .hero {
            background: 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;
            padding: 120px 0;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }
        .section-title {
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: bold;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .live-score {
            background: linear-gradient(to right, #dc3545, #fd7e14);
            color: white;
            border-radius: 10px;
            padding: 20px;
            font-size: 1.2rem;
        }
        .stats-table {
            font-size: 0.95rem;
        }
        .stats-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .friendlink .flink {
            display: inline-block;
            margin: 10px 15px;
            padding: 10px 20px;
            background: var(--light-color);
            border-radius: 50px;
            text-decoration: none;
            color: var(--dark-color);
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .friendlink .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: var(--dark-color);
            color: #adb5bd;
        }
        .social-icons a {
            color: #adb5bd;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: white;
        }
        .analysis-content {
            column-count: 2;
            column-gap: 40px;
        }
        @media (max-width: 768px) {
            .analysis-content {
                column-count: 1;
            }
            .hero {
                padding: 80px 0;
            }
        }
        .btn-custom {
            background: var(--accent-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            transition: background 0.3s;
        }
        .btn-custom:hover {
            background: #146c43;
            color: white;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
