:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1638892001132-2fbfa86b0c8a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            margin-bottom: 30px;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
            transition: var(--transition);
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        .live-score {
            background: linear-gradient(135deg, #1e3a8a, #dc2626);
            color: white;
            padding: 20px;
            border-radius: 15px;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin: 30px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 10px;
            background: var(--light-bg);
            border-radius: 10px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .flink:hover {
            border-color: var(--accent-color);
            background: white;
            transform: translateY(-5px);
        }
        .friendlink {
            background-color: white;
            padding: 60px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: var(--accent-color);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        .stat-box {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 5px solid var(--secondary-color);
        }
        .analysis-text {
            column-count: 2;
            column-gap: 40px;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .analysis-text {
                column-count: 1;
            }
            .hero-section {
                padding: 80px 0;
            }
            .live-score {
                font-size: 1.2rem;
            }
        }
        .form-control {
            border-radius: 10px;
            padding: 15px;
            border: 2px solid #cbd5e1;
        }
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.25);
        }
