:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #059669;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.8;
            color: #333;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
            color: white;
            padding: 120px 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--primary-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        .flink {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 8px;
            padding: 12px 24px;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
        .friendlink {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 60px 0;
        }
        .live-score {
            background: linear-gradient(90deg, #1e3a8a, #3b82f6);
            color: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
        }
        .analysis-highlight {
            border-left: 5px solid var(--accent-color);
            padding-left: 20px;
            background: #f0fdf4;
            margin: 25px 0;
        }
        footer {
            background: #1f2937;
            color: #f9fafb;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background 0.3s;
        }
        .social-icon:hover {
            background: var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 80px 0; }
            .section-title { font-size: 1.8rem; }
            .flink { padding: 10px 20px; margin: 5px; }
        }
