.flink {
            display: inline-block;
            margin: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .flink:hover {
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .friendlink {
            background-color: #f8fafc;
            border-top: 4px solid #1e40af;
            border-bottom: 4px solid #1e40af;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
        }
        .stats-card {
            background: white;
            border-left: 6px solid #1e40af;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
