:root {
    --brand-red: #a30021;
    --dark-bg: #050505;
}

body {
    margin: 0;
    background: radial-gradient(circle at center, #1a0508 0%, #000000 100%);
    color: white;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.logo {
    max-width: 250px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(163, 0, 33, 0.5));
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--brand-red);
    min-width: 70px;
}

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

.notify-form input {
    padding: 12px;
    width: 250px;
    border-radius: 5px 0 0 5px;
    border: none;
    outline: none;
}

.notify-form button {
    padding: 12px 20px;
    border: none;
    background: var(--brand-red);
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: 0.3s;
}

.notify-form button:hover { background: #ff0000; box-shadow: 0 0 15px var(--brand-red); }
