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

:root {
    --bg: #09090b;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --muted: #a1a1aa;
}

body {
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 140, 255, 0.18), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(132, 94, 255, 0.18), transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 60%);
}

.background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

.container {
    position: relative;
    z-index: 2;
    width: min(900px, 90%);
    text-align: center;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: .5rem;
    font-weight: 800;
}

.gradient {
    background: linear-gradient(
        135deg,
        #ffffff,
        #66b3ff,
        #8b7cff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aka {
    color: #8f8f98;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    letter-spacing: .1em;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: all .25s ease;
    min-width: 180px;
    justify-content: center;
}

.btn:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.08);
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
}

.btn i {
    font-size: 1.2rem;
}

.footer {
    margin-top: 4rem;
    color: #666;
    font-size: .9rem;
}

@media (max-width: 700px) {

    body {
        overflow-y: auto;
        padding: 2rem 0;
    }

    .links {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .subtitle {
        font-size: 1rem;
    }
}