@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #020617;
    color: #f1f5f9;
    overflow-x: hidden;
    user-select: none;
    /* Anti-copy measure */
}

/* Custom Context Menu */
#custom-menu {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(24px);
    background: rgba(15, 23, 42, 0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#custom-menu button {
    outline: none;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(5px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-fade-in {
    animation: fade-in 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.drop-zone-active {
    border-color: #22d3ee;
    background: rgba(13, 148, 136, 0.1);
    transform: scale(1.01);
}

.omni-gradient {
    background: linear-gradient(135deg, #0d9488 0%, #22d3ee 100%);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    animation: pulse-subtle 8s infinite;
}

.filter-btn.active {
    background: #0d9488;
    color: white;
    border-color: #22d3ee;
}

@keyframes pulse-subtle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

input,
textarea {
    user-select: text;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.btn-glow-border {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-glow-border:hover {
    border: 1px solid rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 15px rgba(13, 148, 136, 0.3);
}