body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #4facfe, #00f2fe);
}

.countdown-container {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333333;
}

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

.time-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.time {
    font-size: 3em;
    font-weight: bold;
    color: #4facfe;
}

.label {
    margin-top: 10px;
    font-size: 1em;
    color: #777777;
}
