/* Base & Reset */
body {
    background-color: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

/* Card Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.15);
}



/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Sway Animation for Hanging Decorations */
@keyframes sway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.animate-sway {
    animation: sway 3s ease-in-out infinite;
    transform-origin: top center;
}

.absolute.top-0.left-0.w-80.h-64.pointer-events-none.hidden.lg\:block.-translate-x-12.-translate-y-4.z-9999 {
    z-index: 999;
}

img.w-12.h-12.relative.z-10.drop-shadow-sm {
    width: 130px;
}