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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    color: #f0f0f0;
    background: #1a1a1a;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(80, 100, 120, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(120, 100, 80, 0.1) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 540px;
    width: 100%;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 1.5rem 0;
}

p {
    color: #c0c0c8;
    font-size: 1rem;
}

.status {
    font-size: 0.8rem;
    font-weight: 600;
    color: #88aaff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
}

.status::before {
    content: '● ';
    color: #88aaff;
    margin-right: 0.3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}