:root {
    --bg-image: url('bg.png');
    --glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.5);
    --accent: #a855f7;
    --accent-glow: rgba(168, 85, 247, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #030712;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #030712 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 32px;
    text-align: center;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0.7;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.loading-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.progress-bar {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    height: 100%;
    width: 30%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
    animation: progressMove 2.5s infinite ease-in-out;
}

.ticker-wrap {
    height: 20px;
    overflow: hidden;
}

.ticker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.5s ease-in-out;
}

.footer {
    margin-top: 60px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1.5px;
    font-weight: 300;
}

@keyframes progressMove {
    0% { left: -30%; width: 20%; }
    50% { width: 50%; }
    100% { left: 100%; width: 20%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
    .card {
        padding: 40px 24px;
    }
    h1 {
        font-size: 32px;
    }
}
