* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background-color: #0b0d12;
}

body {
    margin: 0;
    min-height: 100dvh;
    font-family: system-ui, -apple-system, sans-serif;
    color: #e6e6e6;
    background: radial-gradient(circle at top, #1b1f27, #0b0d12) no-repeat fixed;
    line-height: 1.5;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

h1 {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 600;
    text-align: center;
    color: #e6e6e6;
}

.loader {
    display: flex;
    gap: 8px;
}

.loader span {
    width: 12px;
    height: 12px;
    background-color: #4aa3ff;
    border-radius: 50%;
    animation: pulse 1.4s infinite ease-in-out both;
}

.loader span:nth-child(1) { animation-delay: -0.32s; }
.loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes pulse {
    0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}

#status {
    font-size: clamp(12px, 3vw, 14px);
    color: #8faed6;
    font-weight: 500;
    letter-spacing: 0.5px;
}
