.flink {
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 6px;
            background-color: #f8f9fa;
            color: #333;
            text-decoration: none;
            display: inline-block;
            margin: 5px;
        }
        .flink:hover {
            background-color: #007bff;
            color: white;
            transform: translateY(-3px);
        }
        .hero-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.7), 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 center/cover;
        }
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .footer-bg {
            background: linear-gradient(to right, #1a1a1a, #333);
        }
