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

body {
    background: #0a0a0f;
    color: #e2e8f0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124,58,237,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 48px;
    margin-bottom: 20px;
    animation: pulse 2.5s ease-in-out infinite;
    display: block;
}

.title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.subtitle {
    color: #64748b;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.progress-bar {
    width: 180px;
    height: 2px;
    background: #1e1e2e;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    animation: load 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.12); }
}

@keyframes load {
    0%   { width: 0%;   margin-left: 0; }
    50%  { width: 100%; margin-left: 0; }
    100% { width: 0%;   margin-left: 100%; }
}
