@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
}

button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #FF1B8D;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #FF1B8D;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

select {
    cursor: pointer;
}

.cursor-move {
    cursor: move;
}

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

*::-webkit-scrollbar-track {
    background: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
    background: #FF1B8D;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #6B46C1;
}