:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-color: #f8f9fa;
            --dark-color: #1f2937;
        }
        body {
            font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fff;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: white;
            padding: 6rem 0;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .card {
            border: none;
            border-radius: 10px;
            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);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        .live-score {
            background-color: #fef3c7;
            border-left: 5px solid var(--accent-color);
            padding: 1rem;
            font-weight: bold;
            border-radius: 5px;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(30, 58, 138, 0.05);
        }
        .friendlink .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.5rem;
            background-color: #e5e7eb;
            border-radius: 5px;
            color: var(--dark-color);
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .friendlink .flink:hover {
            background-color: var(--primary-color);
            color: white;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .analysis-content {
            column-count: 2;
            column-gap: 2rem;
            text-align: justify;
        }
        @media (max-width: 576px) {
            .analysis-content {
                column-count: 1;
            }
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        a[rel="nofollow"] {
            color: #6b7280;
        }
