body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: #0d6efd !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(25, 135, 84, 0.8)), url('https://images.unsplash.com/photo-1553778263-73a83bab9b0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: bold;
            color: #0d6efd;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #25a244;
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: #e9ecef;
            border-radius: 30px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: #0d6efd;
            color: white;
            border-color: #0d6efd;
        }
        .friendlink {
            background: #f1f8ff;
            padding: 50px 0;
        }
        .footer {
            background: #212529;
            color: #adb5bd;
            padding: 40px 0;
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
        }
        .footer a:hover {
            color: #0d6efd;
        }
        .score-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .score-table th {
            background: #0d6efd;
            color: white;
            border: none;
        }
        .score-table td {
            vertical-align: middle;
        }
        .live-badge {
            background: #dc3545;
            color: white;
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .btn-custom {
            background: linear-gradient(to right, #0d6efd, #25a244);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 10px 30px;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
