
/* Base Card Styles */
.link-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: scale(1.02);
}

.link-card:active {
    transform: scale(0.98);
}

/* Yumi Theme */
.yumi-theme {
    border-radius: 0.75rem; /* rounded-xl */
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.yumi-theme:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Franguin Theme */
.franguin-theme {
    border-radius: 1rem; /* rounded-2xl - Pill like */
    background-color: rgba(69, 10, 10, 0.4); /* red-950/40 */
    border: 2px solid rgba(239, 68, 68, 0.2); /* red-500/20 */
}

.franguin-theme:hover {
    background-color: rgba(127, 29, 29, 0.5); /* red-900/50 */
    border-color: rgba(248, 113, 113, 0.4); /* red-400/40 */
}

/* Animations */
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    75% { transform: translateY(-5px) rotate(-2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(-2deg); }
    75% { transform: translateY(-4px) rotate(2deg); }
}

@keyframes bounceCustom {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-float-1 {
    animation: float1 4s ease-in-out infinite;
}

.logo-float-2 {
    animation: float2 5s ease-in-out infinite;
}

.animate-bounce-custom {
    animation: bounceCustom 1.5s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}
