body {
    margin: 0;
    font-family: Arial;
    background: url("https://images.unsplash.com/photo-1493246507139-91e8fad9978e")
                center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 12px;
}

.logo img {
    width: 100px;
    margin-bottom: 20px;
}
.logo-icon {
    width: 60px;
    height 60px;
    object-fit contain;
}
h1 {
    font-size: 50px;
}

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

.countdown div {
    text-align: center;
}

.countdown span {
    font-size: 30px;
    font-weight: bold;
}

form input {
    padding: 10px;
    width: 200px;
    border: none;
    border-radius: 5px;
}

form button {
    padding: 10px 15px;
    background: #00ff88;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}