html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

/* Canvas */

#starfield {
    position: fixed;
    touch-action: none;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    cursor: none;
    background: radial-gradient(circle at center, #050510 0%, #000 70%);
}

/* Content */

.home-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    pointer-events: none;
    text-align: center;
}

h1 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* Button */

.explore-btn {
    pointer-events: auto;

    margin-top: 34px;
    padding: 14px 46px;

    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);

    color: #fff;
    text-decoration: none;
    font-size: 15px;

    transition: all 0.25s ease;
}
.footer {
    position: fixed;
    bottom: 14px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.explore-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    h1 {
        font-size: 26px;
    }
}

