/* Tpictures - Cinematic upload portal styles */
body {
    background-color: #050507;
    font-family: 'Inter', sans-serif;
    background-image: radial-gradient(circle at 50% -20%, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
    overflow-x: hidden;
}
.glass-panel {
    background: rgba(12, 12, 16, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.glow-gold {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glow-gold:hover {
    box-shadow: 0 0 65px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
}
.trap-field {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}
.filter-btn, .dim-btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.preview-glow {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
}
.preview-vignette {
    box-shadow: inset 0 0 80px rgba(0,0,0,0.85);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.film-strip-border {
    background-image: radial-gradient(circle, #050507 40%, transparent 45%);
    background-size: 14px 14px;
    background-repeat: repeat-x;
}
@keyframes sweep {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
.scanning-line {
    animation: sweep 2s linear infinite;
}
/* Custom scrollbar for filmstrip */
.scrollbar-thin::-webkit-scrollbar {
    height: 6px;
}
.scrollbar-thin::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}