body {
    background-color: #f0f1f2;
    background-image: radial-gradient(circle at 10% 20%, rgba(217, 249, 157, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(15, 16, 18, 0.05) 0%, transparent 20%);
}

/* Custom Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Password Dot Masking */
.password-mask {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Pill Tick Marks for Progress Bar */
.tick-pill {
    flex: 1;
    height: 36px;
    border-radius: 999px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleY(0);
    /* Initial state for animation */
    transform-origin: bottom;
}

.tick-pill.animate-fill {
    transform: scaleY(1);
}

.tick-pill.filled {
    background-color: #1a1b1e;
}

.tick-pill.filled-lime {
    background-color: #d9f99d;
}

.tick-pill.empty {
    border: 1px solid #e5e7eb;
    transform: scaleY(1);
}

/* Animation for Copy Toast */
@keyframes slideUpFade {
    0% {
        transform: translate(-50%, 100%) scale(0.9);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0) scale(1);
        opacity: 1;
    }
}

.toast-enter {
    animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Smooth Card Hover */
.card-interaction {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.card-interaction:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
}

.card-interaction:active {
    transform: scale(0.98);
}

/* Focus Ring Animation */
.search-ring {
    transition: all 0.3s ease;
}

.search-ring:focus-within {
    box-shadow: 0 0 0 4px rgba(217, 249, 157, 0.5);
    border-color: #d9f99d;
    transform: scale(1.02);
}

/* PIN Input Styles */
.pin-input {
    width: 45px;
    /* Smaller for mobile */
    height: 55px;
    font-size: 24px;
    text-align: center;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    transition: all 0.3s ease;
    color: #0f1012;
    font-weight: bold;
}

@media (min-width: 768px) {
    .pin-input {
        width: 50px;
        height: 60px;
    }
}

.pin-input:focus {
    outline: none;
    border-color: #d9f99d;
    box-shadow: 0 0 0 4px rgba(217, 249, 157, 0.3);
    background: white;
    transform: translateY(-2px);
}
