.et-timer {
    max-width: 380px;
    margin: 30px auto;
    text-align: center;
    font-family: system-ui, -apple-system, sans-serif;
    transform: scale(var(--scale, 1));
    transform-origin: top center;
}

.et-text {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}

/* ── Circle mode ── */
.et-circular {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
}

.et-circular svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.et-bg-circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 12;
}

.et-progress-circle {
    fill: none;
    stroke: var(--accent, #00d4aa);
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.4s linear;
}

.et-circular .et-countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: #222;
    width: 100%;
    text-align: center;
    z-index: 2;
}

/* ── Numbers-only mode ── */
.et-countdown-numbers {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin: 20px 0 15px;
    line-height: 1.1;
    text-align: center;
}

/* ── Progress bar ── */
.et-progress-bar {
    height: 8px;
    background: #eee;
    margin: 10px 20px;
    border-radius: 4px;
    overflow: hidden;
}

.et-bar-fill {
    height: 100%;
    background: var(--accent, #00d4aa);
    border-radius: 4px;
    transition: width 0.4s linear;
}

/* ── Expired ── */
.et-expired {
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    color: #666;
}

/* ── Admin preview ── */
.et-admin-preview {
    display: flex;
    justify-content: center;
    padding: 25px 0;
    background: #f8f9fa;
    border-radius: 8px;
}

.et-admin-preview .et-timer {
    transform: scale(0.72) !important;
    max-width: 340px;
    margin: 0 auto;
}
