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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: none;
    background-color: #121212;
    color: #ffffff;
}

/* Smooth Scrollbar - Dark */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}

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

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #242424;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #4fc3f7;
}

.app-icon-frame {
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes slideUpSpring {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02);
    }

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

.animate-spring-up {
    animation: slideUpSpring 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes pulseSoft {

    0%,
    100% {
        transform: scale(1);
        border-color: rgba(79, 195, 247, 0.3);
        background-color: rgba(79, 195, 247, 0.05);
    }

    50% {
        transform: scale(0.99);
        border-color: rgba(79, 195, 247, 0.6);
        background-color: rgba(79, 195, 247, 0.15);
    }
}

.active-drop {
    animation: pulseSoft 1.5s infinite;
}

@keyframes progressStripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.animate-stripes {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .1) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    animation: progressStripes 1s linear infinite;
}

.btn-press:active {
    transform: scale(0.96);
}

/* Dark Mode Tab Switcher */
.tab-btn {
    transition: all 0.3s;
}

.tab-btn.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.4);
}

.tab-btn.inactive {
    color: #c0c0c0;
}

.tab-btn:hover {
    color: #ffffff;
}

/* Panel Gradient Class */
.bg-panel-gradient {
    background: linear-gradient(135deg, #1E1E1E 0%, #242424 100%);
}

/* Hover Effect Class */
.hover-accent:hover {
    background-color: rgba(79, 195, 247, 0.1);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}