html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    touch-action: pan-y;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F9FAFB;
    -webkit-tap-highlight-color: transparent;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #E5E7EB;
    border-radius: 10px;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-8px);
    }
    50% {
        transform: translateX(8px);
    }
    75% {
        transform: translateX(-8px);
    }
}

.animate-shake {
    animation: shake 0.4s ease-in-out;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-shimmer {
    animation: shimmer 2s linear infinite;
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }
    10% {
        width: 15%;
    }
    30% {
        width: 35%;
    }
    60% {
        width: 70%;
    }
    80% {
        width: 85%;
    }
    100% {
        width: 100%;
    }
}

.animate-fill-progress {
    animation: fillProgress 4.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
