* {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: #050505;
}

body::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 5)); }
}

.animate-scroll {
    animation: scroll 40s linear infinite;
    width: max-content;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

.package-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.package-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.02);
}

input, select {
    appearance: none;
}

option {
    background: #111;
    color: white;
}