:root {
            --primary-color: #1a237e;
            --secondary-color: #d32f2f;
            --accent-color: #ff9800;
            --light-bg: #f5f5f5;
            --dark-text: #212121;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(211, 47, 47, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            color: var(--primary-color);
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 6px 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 12px 25px rgba(0,0,0,0.15);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--secondary-color);
        }
        .table-custom {
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .table-custom thead th {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        .live-score {
            background: linear-gradient(135deg, #ff5722, #ff9800);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 87, 34, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
        }
        .friendlink {
            background-color: var(--light-bg);
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            margin: 10px 15px;
            padding: 10px 20px;
            background: white;
            border-radius: 25px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 40px 0 20px;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: var(--accent-color);
        }
        .analysis-article {
            border-left: 5px solid var(--secondary-color);
            padding-left: 20px;
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
