/* Lux — Additional styles */

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

/* Line clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom scrollbar for WebKit */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #232738; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2d3250; }

/* Select dropdown styling */
select option { background: #0f1117; color: #e8ecf4; }

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #7c6aef;
    outline-offset: 2px;
}

/* Prevent body scroll when lightbox is open */
body.no-scroll { overflow: hidden; }

/* Image protection for guests */
.protected-img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}
.img-card { pointer-events: auto; }

/* Print-friendly hide */
@media print {
    nav, .ambient-bg, #lightbox, #toast-container { display: none !important; }
}
