* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: black;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}
.logo img {
    width: 100%;
    height: auto;
}
.container {
    background: rgba(255, 102, 0, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 8px 20px rgba(255, 102, 0, 0.3);
    max-width: 500px;
    width: 90%;
    transition: transform 0.3s ease-in-out;
}
.container:hover {
    transform: scale(1.02);
}
h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ff6600;
}
p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #ddd;
}
.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.countdown div {
    background: rgba(255, 102, 0, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    min-width: 60px;
    color: #fff;
    transition: background 0.3s ease-in-out, transform 0.2s ease;
}
.countdown div:hover {
    background: rgba(255, 102, 0, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff6600;
}
.label {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
    display: block;
}
.footer {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
    color: #ff6600;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 30px;
    }
    h1 {
        font-size: 22px;
    }
    .countdown div {
        padding: 12px 16px;
        font-size: 16px;
        min-width: 50px;
    }
}
@media (max-width: 400px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 20px;
    }
    .countdown {
        gap: 10px;
    }
    .countdown div {
        padding: 10px 14px;
        font-size: 14px;
        min-width: 45px;
    }
}
