.countdown-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.countdown-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.countdown-blocks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    color: rgba(10, 10, 15, 0.473);
}

.label {
    font-size: 1em;
    text-transform: uppercase;
}