* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    /*max-width: 600px;*/
    width: 100%;
}

.badge {
    background-color: #1e293b;
    color: #38bdf8;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid #334155;
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(to right, #f8fafc, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

.notify-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto 40px auto;
}

input[type="email"] {
    flex: 1;
    background-color: #1e293b;
    border: 1px solid #334155;
    padding: 14px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

input[type="email"]:focus {
    border-color: #38bdf8;
}

button {
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #7dd3fc;
}

.footer {
    font-size: 0.85rem;
    color: #64748b;
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .notify-form {
        flex-direction: column;
    }
}

