/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
}

/* Header & Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #38bdf8; /* Warna aksen biru muda */
}

/* Konten Utama */
.content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content h1 span {
    color: #38bdf8;
}

.content p {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.time-box span {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.time-box p {
    font-size: 0.8rem;
    color: #38bdf8;
    margin: 5px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Pendaftaran */
.notify-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    gap: 10px;
}

.notify-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input[type="email"]:focus {
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.15);
}

.notify-form button {
    padding: 15px 30px;
    background: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notify-form button:hover {
    background: #0ea5e9;
}

/* Footer */
footer p {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 40px;
}

/* Responsivitas Layar HP */
@media (max-width: 600px) {
    .content h1 {
        font-size: 2rem;
    }
    .countdown {
        gap: 10px;
    }
    .time-box {
        padding: 15px 10px;
        min-width: 70px;
    }
    .time-box span {
        font-size: 1.5rem;
    }
    .notify-form {
        flex-direction: column;
    }
    .notify-form button {
        width: 100%;
    }
}