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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0f;
    color: #fff;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
    position: relative;
}

/* animated background glow */
.bg-glow {
    position: fixed;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 680px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* logo */
.logo-area {
    margin-bottom: 2.5rem;
}

.logo {
    height: auto;
    width: 200px;
    max-width: 50%;
    filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* heading */
h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.7rem;
    color: #ffffff;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #777;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

/* countdown */
.countdown {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.number-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.number-wrap:hover {
    border-color: rgba(220, 38, 38, 0.4);
}

.number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #555;
    font-weight: 600;
}

/* notify section */
.notify {
    margin-bottom: 3rem;
}

.notify-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.notify-form:focus-within {
    border-color: rgba(220, 38, 38, 0.5);
}

.notify-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
}

.notify-input::placeholder {
    color: #555;
}

.notify-btn {
    padding: 0.9rem 1.6rem;
    background: #dc2626;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.notify-btn:hover {
    background: #b91c1c;
}

/* honeypot - invisible to humans */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

/* form message */
.form-msg {
    font-size: 0.85rem;
    margin-top: 0.8rem;
    min-height: 1.2em;
}

.form-msg.success {
    color: #4ade80;
}

.form-msg.error {
    color: #f87171;
}

/* footer */
footer {
    padding-top: 1rem;
}

footer p {
    font-size: 0.75rem;
    color: #333;
    letter-spacing: 0.5px;
}

/* responsive */
@media (max-width: 550px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .number-wrap {
        width: 72px;
        height: 72px;
        border-radius: 12px;
    }

    .number {
        font-size: 2rem;
    }

    .label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .notify-form {
        flex-direction: column;
        border-radius: 12px;
    }

    .notify-btn {
        border-radius: 0 0 11px 11px;
    }

    .logo {
        max-width: 70%;
        max-height: 35px;
    }

    .logo-area {
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 1.5rem 1rem;
    }
}
