/* 
 * Project: IMAX Theater Directory for India
 * Maintainer: Vishnu Pattani Cheriya 
 * Description: Custom styling utilities and glassmorphism overrides
 */

/* Base Font Setup */
body { 
    font-family: 'Space Grotesk', sans-serif; 
}

/* Futuristic Scrollbar */
::-webkit-scrollbar { 
    width: 8px; 
    height: 8px; 
}
::-webkit-scrollbar-track { 
    background: #020617; 
}
::-webkit-scrollbar-thumb { 
    background: #06b6d4; 
    border-radius: 4px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #0891b2; 
}

/* Glassmorphism Panel Component */
.glass-panel {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

/* Glowing Text Utility */
.glow-text { 
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.6); 
}

/* Input Select Dark Mode Override */
select option { 
    background-color: #0f172a; 
    color: #cbd5e1; 
}