body {
    font-family: 'Outfit', sans-serif;
    background-color: #0f172a;
    background-image: 
        radial-gradient(at 0% 0%, hsla(217, 33%, 17%, 1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(199, 89%, 20%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(220, 50%, 20%, 1) 0, transparent 50%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1e293b; }
::-webkit-scrollbar-thumb { background: #3b82f6; border-radius: 3px; }

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.4);
}

.glow-text { text-shadow: 0 0 30px rgba(59, 130, 246, 0.6); }

/* Image List Item */
.file-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.file-item:hover { background: rgba(255, 255, 255, 0.08); }

.thumb-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
}
.thumb-box img { width: 100%; height: 100%; object-fit: cover; }

.file-info { flex-grow: 1; overflow: hidden; }
.file-name { font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-meta { font-size: 0.8rem; color: #94a3b8; display: flex; gap: 10px; margin-top: 2px; }

.badge-saved { color: #4ade80; background: rgba(74, 222, 128, 0.1); padding: 0 6px; border-radius: 4px; font-size: 0.7rem; }

.animate-bounce-slow { animation: bounce 3s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(-5%); } 50% { transform: translateY(5%); } }

/* Range Slider */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px; width: 16px;
    border-radius: 50%; background: #3b82f6;
    cursor: pointer; border: 2px solid white;
}