html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: #03040a;
}

#starfield {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    touch-action: none;
    cursor: none;
    background:
        radial-gradient(circle at 76% 18%, rgba(124,58,237,.22), transparent 22%),
        radial-gradient(circle at center, #070b16 0%, #000 72%);
}

.home-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    pointer-events: none;
    padding: 24px;
}

.home-content > * { pointer-events: auto; }

.home-content h1,
h1 {
    margin: 0;
    max-width: 780px;
    color: #ffffff;
    font-size: clamp(36px, 7vw, 82px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -0.055em;
    text-shadow: 0 0 48px rgba(124,58,237,.26);
}

.explore-btn {
    margin-top: 34px;
    padding: 14px 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.075);
    backdrop-filter: blur(14px);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.explore-btn:hover {
    transform: translateY(-2px);
    background: rgba(124,58,237,.24);
    border-color: rgba(168,85,247,.48);
}

.footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 3;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.52);
}
