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

html, body { min-height: 100%; }

body {
    min-height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(16px, 5vh, 42px) 24px 24px;
    overflow: hidden;
    color: #fff;
    font-family: "Courier New", monospace;
    background: #020818;
}

#starfield-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

main {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.brand {
    font-size: clamp(2.4rem, 12vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: 0;
    color: #fff;
    text-shadow:
        0 0 5px rgba(255,255,255,0.72),
        0 0 18px rgba(191,90,242,0.58),
        0 4px 0 rgba(0,0,0,0.68);
}

.page {
    font-size: clamp(1.35rem, 7vw, 3rem);
    color: #ff75ff;
    letter-spacing: 0.08em;
    text-shadow:
        0 0 6px rgba(255,117,255,0.84),
        0 0 18px rgba(236,10,187,0.48);
}

.coming-soon-logo {
    display: block;
    width: auto;
    max-width: min(100%, 92vw);
    max-height: none;
    object-fit: contain;
    margin: -2px 0 0;
    filter:
        drop-shadow(0 0 8px rgba(255,255,255,0.22))
        drop-shadow(0 0 18px rgba(191,90,242,0.34))
        drop-shadow(0 4px 0 rgba(0,0,0,0.44));
}

.soon {
    font-size: clamp(1.05rem, 5.4vw, 2.1rem);
    color: #ffcc00;
    letter-spacing: 0.16em;
    text-shadow:
        0 0 5px rgba(255,204,0,0.68),
        0 0 14px rgba(255,204,0,0.28);
}

.back-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 8px;
    padding: 8px 22px;
    border: 1px solid rgba(236,10,187,0.72);
    border-radius: 999px;
    color: #f0f0f0;
    background: rgba(236,10,187,0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.20),
        inset 0 -8px 14px rgba(0,0,0,0.28),
        0 0 18px rgba(236,10,187,0.24);
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
    letter-spacing: 0.08em;
    text-decoration: none;
}

.back-pill:hover,
.back-pill:focus-visible {
    border-color: #ff75ff;
    background: rgba(236,10,187,0.22);
    outline: none;
}
