@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
}

.glass-card {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#entry-screen, #loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: #050505; 
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#entry-screen { cursor: pointer; }
#loader.hidden { display: none; }

#loader h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem; 
    color: white;
}

.name {
    padding: 5px 20px;
    border-radius: 20px;
    background: linear-gradient(to right, #ffcc00 0%, #ffaa00 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}

.animate-fill {
    animation: fillIn 3.0s ease forwards;
}

@keyframes fillIn {
    100% { 
        background-position: left bottom; 
        color: #121212; 
    }
}
