.flink {
            @apply inline-block px-4 py-2 mx-2 my-1 bg-white border border-gray-300 rounded-lg shadow-sm hover:shadow-md hover:border-blue-500 transition-all duration-200 text-gray-800 hover:text-blue-700;
        }
        .nav-link {
            @apply text-gray-700 hover:text-accent font-medium transition-colors duration-200;
        }
        .card-hover {
            @apply transition-transform duration-300 hover:-translate-y-2 hover:shadow-xl;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
        }
        .stat-card {
            @apply bg-gradient-to-br from-gray-50 to-white p-6 rounded-2xl shadow-lg border border-gray-100;
        }
