.flink a {
            transition: all 0.3s ease;
            border-radius: 8px;
            padding: 10px 15px;
            display: inline-block;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            margin: 5px;
            text-decoration: none;
            color: #333;
        }
        .flink a:hover {
            background-color: #007bff;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .hover-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .live-score {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { background-color: #f8f9fa; }
            50% { background-color: #e9ecef; }
            100% { background-color: #f8f9fa; }
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        }
        .footer-links a {
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #007bff !important;
        }
