/* assets/css/style.css */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
}

.countdown-wrap {
    text-align: center;
    padding: 20px;
}

.logo {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 40px;
}

h1 {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #94a3b8;
}

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

.box {
    background: #1e293b;
    border-radius: 12px;
    padding: 20px 25px;
    min-width: 90px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.num {
    font-size: 2.5rem;
    font-weight: bold;
    color: #38bdf8;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-top: 5px;
}

.launched {
    font-size: 2rem;
    color: #4ade80;
}

/* Notify / CTA button */
.notify-form {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.notify-form input[type="email"] {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #334155;
    background: #1e293b;
    color: #fff;
    font-size: 0.95rem;
    min-width: 240px;
}

.notify-form input[type="email"]:focus {
    outline: none;
    border-color: #38bdf8;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background: #38bdf8;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #0ea5e9;
}

.footer-note {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #64748b;
}
