* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a192f, #112240);
    color: white;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    flex: 1;
    max-width: 500px;
}

h1 {
    font-size: 48px;
    color: #00bcd4;
}

.tagline {
    margin: 10px 0 20px;
    color: #cfd8dc;
}

h2 {
    margin-bottom: 20px;
}

#countdown {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.time-box {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.time-box span {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.footer-text {
    margin-top: 20px;
    color: #90a4ae;
}

.illustration {
    flex: 1;
    text-align: center;
}

.illustration img {
    width: 80%;
    max-width: 400px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    #countdown {
        justify-content: center;
    }
}
