* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

#shader-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    padding: 30px;
    width: 100vw;
    height: 100dvh;
    color: white;
}

.content {
    text-align: center;
    max-width: 600px;
}

h1 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.notify-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.notify-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Source Sans 3', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.notify-form button {
    padding: 1rem 2rem;
    background: white;
    color: #191919;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    color: white;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    opacity: 1;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form button {
        width: 100%;
    }
}
