body {
    background-color: #000;
    border: 10px solid #e53e17;
    margin: 0;
    height: calc(100vh - 20px);
    height: calc(100dvh - 20px);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image:
        repeating-radial-gradient(circle at 17% 32%, #fff 0 0.35px, transparent 0.8px 3px),
        repeating-radial-gradient(circle at 73% 68%, #fff 0 0.3px, transparent 0.7px 4px);
    background-size: 5px 5px, 7px 7px;
    mix-blend-mode: screen;
    opacity: 0.12;
}

:root {
    --primary-button-height: 50px;
}

.center-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 1rem;
    box-sizing: border-box;
}

.content {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content.hero-wide {
    max-width: 500px;
}

.button-row {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    gap: 0.75rem;
}

.hero-link {
    display: block;
    width: 100%;
    margin: 0 auto;
    pointer-events: none;
}

.hero-link.hero-link--active {
    pointer-events: auto;
}

.center-wrap img {
    height: auto;
    display: block;
    margin: 0 auto;
    width: calc(100% - 40px);
    transition: opacity 0.25s ease;
}

.center-wrap img.fade-out {
    opacity: 0;
}

.signup-button,
.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--primary-button-height);
    background-color: #e53e17;
    color: black;
    font-size: 18px;
    font-family: "Geist Pixel", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "ELSH" 0;
    text-decoration: none;
    border: none;
    outline: 1px solid #000;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.12s ease,
        box-shadow 0.2s ease;
}

.signup-button,
.nav-button {
    margin: 0 auto;
    width: calc(100% - 40px);
}

.nav-button {
    flex: 1;
    min-width: 0;
}

.signup-button:hover,
.nav-button:hover {
    background-color: #cf3415;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.signup-button:active,
.nav-button:active {
    transform: translateY(0);
    box-shadow: none;
}
