@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.35s ease-out forwards;
}
@keyframes subtlePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.animate-subtle-pulse {
    animation: subtlePulse 2.5s ease-in-out infinite;
}
@keyframes washSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.wash-spinning {
    animation: washSpin 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes drumSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
    100% { transform: rotate(360deg); }
}
.drum-spin {
    animation: drumSpin 0.8s linear infinite;
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(34,211,238,0.3); }
    50% { box-shadow: 0 0 35px rgba(34,211,238,0.6), 0 0 60px rgba(34,211,238,0.2); }
}
.glow-pulse {
    animation: glowPulse 1.5s ease-in-out infinite;
}
.custom-scroll::-webkit-scrollbar { width: 6px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; }
.custom-scroll::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
.custom-scroll::-webkit-scrollbar-thumb:hover { background: #475569; }
svg text {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
