.flink a {
            transition: all 0.3s ease;
        }
        .flink a:hover {
            transform: translateY(-3px);
            color: #e53e3e;
        }
        .hover-scale {
            transition: transform 0.3s ease;
        }
        .hover-scale:hover {
            transform: scale(1.05);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .text-shadow {
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
