/* Reset & base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    height: 100%;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: fadeIn 2s ease-out;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.headline {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.subtext {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown div {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 60px;
}

.countdown span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.notify-form input {
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.notify-form button {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background: #164b76; /*#ff7f50;*/
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.notify-form button:hover {
    background: #1d639b; /*#ff6347;*/
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}