body {
    font-family: 'Inter', sans-serif;
    background-color: #080d1a;
    color: #f8fafc;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.font-display {
    font-family: 'Rajdhani', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #080d1a;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Slide Drawer Animation */
.drawer-overlay {
    transition: opacity 0.3s ease-in-out;
}
.drawer-content {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Toast animation */
@keyframes toastIn {
    from { transform: translateY(100%) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.animate-toast {
    animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}