/* --- UNIKE.AI CyberFTP — Design System v2026 --- */

body {
    background-color: #0C0F1A;
    color: #e5e7eb;
    overflow: hidden;
}

/* Scrollbar (Onyx & Blue) */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #0C0F1A;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 178, 255, 0.3);
    border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 178, 255, 0.6);
}

/* Efeitos visuais */
.glass-panel {
    background: rgba(12, 15, 26, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.neon-input {
    background-color: #1c1917;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}
.neon-input:focus {
    border-color: #00B2FF;
    box-shadow: 0 0 15px rgba(0, 178, 255, 0.25);
    outline: none;
}

.premium-border {
    position: relative;
    background: #0C0F1A;
    border-radius: 18px;
    z-index: 1;
}
.premium-border::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: 19px;
    background: linear-gradient(135deg, #00B2FF, #9B5CFF, #00FFE1);
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(0, 178, 255, 0.15);
}

.scanlines {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 50%);
    background-size: 100% 4px;
    pointer-events: none;
}

.text-cyber-gradient {
    background: linear-gradient(to right, #ffffff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Drag and drop */
.drag-over {
    border-color: #00FFE1 !important;
    background-color: rgba(0, 255, 225, 0.05) !important;
    box-shadow: inset 0 0 20px rgba(0, 255, 225, 0.1);
}

.dragging {
    opacity: 0.5;
    transform: scale(0.98);
}
