/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e94560; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Lightbox animations */
#lightbox { transition: opacity 0.3s ease; }
#lightbox.hidden { display: none !important; }
#lightbox.flex { display: flex !important; }

/* Filter button active state handled via JS class */
.filter-btn.active { background-color: #e94560 !important; color: white !important; }

/* Image loading placeholder */
img[loading="lazy"] { background: linear-gradient(110deg, #1a1a2e 8%, #16213e 18%, #1a1a2e 33%); background-size: 200% 100%; }

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible { outline: 2px solid #e94560; outline-offset: 2px; }
