.flink a {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            padding: 10px 20px;
            border-radius: 8px;
            display: inline-block;
            background: #f9fafb;
        }
        .flink a:hover {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
            transform: translateY(-2px);
        }
        .friendlink {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }
        .hover-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .gradient-bg {
            background: linear-gradient(90deg, #1e40af 0%, #1e3a8a 50%, #1d4ed8 100%);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
