/* ─── STAGGERED BARS ─── */
.vira-preloader-bars { display: flex; align-items: flex-end; gap: 6px; height: 50px; }
.vira-preloader-bar { width: 8px; border-radius: 4px; background: linear-gradient(to top, var(--preloader-accent1), var(--preloader-accent3)); animation: vira-bar-bounce 1s ease-in-out infinite; box-shadow: 0 0 8px rgba(255,60,111,0.5); }
.vira-preloader-bar:nth-child(1) { animation-delay: 0s; }
.vira-preloader-bar:nth-child(2) { animation-delay: 0.1s; }
.vira-preloader-bar:nth-child(3) { animation-delay: 0.2s; }
.vira-preloader-bar:nth-child(4) { animation-delay: 0.3s; }
.vira-preloader-bar:nth-child(5) { animation-delay: 0.4s; }
.vira-preloader-bar:nth-child(6) { animation-delay: 0.5s; }
@keyframes vira-bar-bounce {
    0%,100% { height: 10px; opacity: 0.4; }
    50% { height: 48px; opacity: 1; }
}