@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fade-in {
    animation: fade-in .5s ease-out
}

html {
    scroll-behavior: smooth
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 10px
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #2563eb, #7c3aed)
}

.hover\:scale-105:hover {
    transform: scale(1.05)
}

.transition-all {
    transition: all .3s ease-in-out
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04)
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

.animate-slide-in-right {
    animation: slideInRight .5s ease-out
}

.gradient-border {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
    padding: 2px;
    border-radius: 16px
}

.gradient-border>div {
    background: white;
    border-radius: 14px
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

@keyframes float-delayed {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

@keyframes float-slow {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-5px)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }
    100% {
        background-position: 200% 0
    }
}

@keyframes bounce-subtle {
    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        transform: translate3d(0, -8px, 0)
    }
    70% {
        transform: translate3d(0, -4px, 0)
    }
    90% {
        transform: translate3d(0, -2px, 0)
    }
}

@keyframes pulse-subtle {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: .8
    }
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px)
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite
}

.animate-float-delayed {
    animation: float-delayed 3s ease-in-out infinite 1s
}

.animate-float-slow {
    animation: float-slow 4s ease-in-out infinite
}

.animate-shimmer {
    animation: shimmer 2s linear infinite
}

.animate-bounce-subtle {
    animation: bounce-subtle 1s ease-in-out
}

.animate-pulse-subtle {
    animation: pulse-subtle 2s ease-in-out infinite
}

.animate-shake {
    animation: shake .5s ease-in-out
}

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

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .1)
}

.payment-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1)
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

.border-gradient-to-r {
    border-image: linear-gradient(to right, #3b82f6, #8b5cf6) 1
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fade-in-up {
    animation: fade-in-up .6s ease-out
}

.animate-fade-in-up-delay {
    animation: fade-in-up .6s ease-out .2s
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite
}

.fade-in-up {
    animation: fadeInUp .8s ease-out
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, .3)
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, .6)
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite
}