/* Custom Scrollbar for mobile feel */
::-webkit-scrollbar { 
    width: 0px; 
    background: transparent; 
}

body { 
    font-family: 'Inter', sans-serif; 
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-nav-item.active { 
    color: #3b82f6; 
}

/* Page Transitions */
.page-section { 
    display: none; 
    animation: fadeIn 0.3s ease; 
}

.page-section.active { 
    display: block; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* QR Scanner Scan Line Animation */
.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #00ff00;
    box-shadow: 0 0 4px #00ff00;
    animation: scan 2s infinite linear;
}

@keyframes scan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* Bounce Animation for Modal */
.animate-bounce-small {
    animation: bounceSmall 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceSmall {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}