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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0b0d10;
    color: #e8edf5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(42, 109, 255, 0.06) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 20%, rgba(42, 109, 255, 0.04) 0%, transparent 60%),
                #0b0d10;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: 100%;
    padding: 40px 32px;
    background: rgba(18, 22, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 32px;
    box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.8);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(42, 109, 255, 0.12);
    color: #6a9eff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(42, 109, 255, 0.10);
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #9bbaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #9aa8bf;
    margin-bottom: 32px;
    max-width: 520px;
}

.highlight {
    color: #6a9eff;
    font-weight: 600;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stats div {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
}

.num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8edf5;
    letter-spacing: -0.02em;
}

.num + .label {
    display: block;
    font-size: 0.75rem;
    color: #6b7a94;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #7a8aa3;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

@media (max-width: 480px) {
    .container { padding: 28px 18px; }
    .stats { grid-template-columns: 1fr; }
}
