body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff4500, #000000);
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    animation: fadeIn 2s ease-in-out;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2em;
    margin: 20px 0;
}

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

.time {
    background: #ff4500;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
    min-width: 80px;
}

.time span {
    font-size: 2em;
    font-weight: bold;
    display: block;
}

.time p {
    margin: 5px 0 0 0;
    font-size: 0.8em;
    text-transform: uppercase;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.time:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}