.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.file-info {
    margin: 0;
}
#app {
    background-image: none;
}

@media (min-width: 768px) {
    #app {
        background-image: url("https://files.catbox.moe/pisxdc.gif");
        background-size: 50vw 50vw;
        background-position: right;
        background-repeat: no-repeat;
    }
}
.notification {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin-bottom: 0.5rem;
    font-family: ui-monospace, monospace;
}
.notification.info {
    color: #3b82f6;
}
.notification.success {
    color: #22c55e;
}
.notification.error {
    color: #ef4444;
}
.fade-in {
    opacity: 1;
}
.deobf-result {
    transition: all 0.5s ease-in-out;
}
.deobf-result.expired {
    opacity: 0.5;
}
.deobf-result.expired .download-link {
    background-color: #ef4444 !important;
    pointer-events: none;
}
.timer {
    font-family: ui-monospace, monospace;
    font-size: 0.75rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}
.timer.expired {
    color: #ef4444;
}
.ascii-art  {
    font-size: 12px;
}
.progress-bar-container {
    width: 100%;
    background: #18181b;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0 0.5rem 0;
    height: 0.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #22c55e 100%);
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
    width: 0%;
}
.progress-bar.expired {
    background: #ef4444;
}