* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.main-container {
    min-height: 100vh;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.logo {
    width: 220px;
    margin-bottom: 20px;
}

h1 {
    font-size: 46px;
    letter-spacing: 2px;
}

h1 span {
    color: #ffbf00;
}

h3 {
    color: #ffbf00;
    margin-top: 6px;
    letter-spacing: 1px;
}

.badge {
    display: inline-block;
    background: #ffbf00;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 6px;
}

p {
    margin: 12px 0;
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
}

p span {
    color: #ffbf00;
    font-weight: bold;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.time-box {
    border: 1px solid #ffbf00;
    background: #111;
    padding: 18px 16px;
    border-radius: 10px;
    min-width: 90px;
}

.time-box h2 {
    color: #ffbf00;
    font-size: 28px;
}

.time-box p {
    font-size: 12px;
    margin-top: 6px;
    text-transform: uppercase;
}

.notify {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.notify input {
    padding: 12px;
    width: 260px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.notify button {
    background: #ffbf00;
    padding: 12px 20px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.notify button:hover {
    background: #e6ac00;
}

footer {
    margin-top: 50px;
    font-size: 14px;
    color: gray;
}

@media (max-width: 600px) {

    h1 {
        font-size: 34px;
    }

    .logo {
        width: 170px;
    }

    .countdown {
        flex-wrap: wrap;
    }
}
