* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    z-index: 1;
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.logo span { color: #38bdf8; }

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 span {
    color: #38bdf8;
}

p {
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

/* Countdown */
#countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.time-box span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.time-box p {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin: 0;
}

/* Form */
.notify-form {
    display: flex;
    gap: 10px;
}

input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    outline: none;
}

button {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background: #38bdf8;
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #7dd3fc;
    transform: translateY(-2px);
}

.social-links {
    margin-top: 2rem;
    font-size: 0.8rem;
}

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
}