/* --- Base Styles & Font --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Google Sans', sans-serif;
    background-color: #0c0c0f; /* Dark background color */
    color: #e0e0e0;
    overflow: hidden; /* Critical to prevent scrollbars */
}

/* --- Canvas Background Styling --- */
#world {
    position: fixed; /* Fixes it to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Places it behind the content */
}

/* --- Main Content Container --- */
.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    z-index: 2; /* Ensures content is on top of the canvas */
    box-sizing: border-box;
}

/* --- Logo Styling --- */
.logo h1 {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* --- Main Headline & Sub-headline --- */
.content h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
}

.content p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
}

/* --- Email Form & CTA Button --- */
.waitlist-form {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.waitlist-form input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #4a2a6b;
    border-right: none;
    color: #fff;
    border-radius: 5px 0 0 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.waitlist-form input:focus {
    border-color: #9d5dff;
}

.waitlist-form button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #8e44ad; /* A strong purple */
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.waitlist-form button:hover {
    background-color: #9b59b6;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.7);
}