.timer-container {
    text-align: center;
    background: #1e1e1e;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    border: 2px solid #333;
    max-width: 450px;
    margin: 50px auto;
    font-family: 'Segoe UI', sans-serif;
}

.timer-title {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timer-display {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffcc00; /* Золотистый цвет для акцента */
    text-shadow: 0 0 25px rgba(255, 204, 0, 0.5);
    font-family: 'Courier New', monospace;
}

.timer-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    color: #666;
    font-size: 0.75rem;
    margin-top: 10px;
}