body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    user-select: none;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

#starCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding-top: 10vh;
}

.image-wrapper {
    position: relative;
    text-align: center;
}

.alpha-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    pointer-events: none;
    text-align: left;
    padding: 15px;
}

.centered-image {
    height: 300px;
    max-width: 80vw;
    width: auto;
}

.waitlist-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    max-width: 400px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
}

.waitlist-block h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
}

.waitlist-block p {
    color: #aaa;
    margin-bottom: 24px;
    font-size: 14px;
    text-align: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 20px;
}

#email-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#email-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn:active {
    transform: scale(0.98);
}

#btn-email {
    background-color: white;
    color: black;
}

#btn-email:hover {
    background-color: #f0f0f0;
}

#btn-google {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

#btn-google:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

#message {
    min-height: 20px;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

#turnstile-container {
    min-height: 65px;
    /* Prevent layout shift */
    display: flex;
    justify-content: center;
}