.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.timer-circle {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--rounded-full);
    position: relative;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke: var(--btn-primary);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}

.timer-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-base);
    margin-bottom: var(--space-1);
    color: var(--white);
    position: relative;
    z-index: 2;
}

.timer-label {
    font-size: var(--text-sm);
    line-height: var(--leading-base);
    color: var(--white);
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .timer-container {
        gap: 1rem;
    }
}