@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --karaoke: #9333ea;
    --bar: #f59e0b;
    --hotel: #0d9488;
    --resto: #f97316;
}

body {
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-slide-up {
    animation: slideUp 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in forwards;
}

/* Membership Card Gradient */
.card-platinum {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.card-gold {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
}

.card-silver {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
}

/* Unit Colors */
.bg-karaoke { background-color: var(--karaoke); }
.text-karaoke { color: var(--karaoke); }
.border-karaoke { border-color: var(--karaoke); }

.bg-bar { background-color: var(--bar); }
.text-bar { color: var(--bar); }
.border-bar { border-color: var(--bar); }

.bg-hotel { background-color: var(--hotel); }
.text-hotel { color: var(--hotel); }
.border-hotel { border-color: var(--hotel); }

.bg-resto { background-color: var(--resto); }
.text-resto { color: var(--resto); }
.border-resto { border-color: var(--resto); }

/* Progress Bar */
.progress-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 999px;
    transition: width 1s ease-out;
}

/* Slide to Redeem */
.slider-track {
    background: #f3f4f6;
    height: 56px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.slider-handle {
    width: 48px;
    height: 48px;
    background: #4f46e5;
    border-radius: 24px;
    position: absolute;
    top: 4px;
    left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.slider-text {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 56px;
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    pointer-events: none;
}

/* Auth Inputs */
.auth-input {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px 16px;
    width: 100%;
    outline: none;
    transition: all 0.2s;
}

.auth-input:focus {
    border-color: #4f46e5;
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Transition Screens */
.screen-transition {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
