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

body {
    font-family: Inter, Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #0f172a,
        #1e293b,
        #2563eb
    );
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
}

.content {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 span {
    color: #60a5fa;
}

.description {
    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.time-box {
    width: 120px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.time-box small {
    color: rgba(255,255,255,0.7);
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.notify-form input {
    width: 350px;
    max-width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    outline: none;
    font-size: 1rem;
}

.notify-form button {
    padding: 16px 28px;
    border: none;
    border-radius: 12px;
    background: #3b82f6;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.notify-form button:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.08);
    padding: 12px 18px;
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .notify-form {
        flex-direction: column;
        align-items: center;
    }

    .notify-form button,
    .notify-form input {
        width: 100%;
        max-width: 400px;
    }
}
