.yac-countdown-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 24px;
    border-radius: 12px;
    box-sizing: border-box;
    --yac-countdown-color: #ffffff;
}

.yac-countdown-wrap.yac-countdown-bg {
    background: linear-gradient(135deg, #0d3b91 0%, #1565d8 100%);
}

.yac-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.yac-countdown-ring {
    position: relative;
    width: 200px;
    height: 200px;
}

.yac-countdown-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.yac-countdown-ring circle {
    fill: none;
    stroke-width: 10;
}

.yac-countdown-ring .yac-countdown-track {
    stroke: #495057;
}

.yac-countdown-ring .yac-countdown-progress {
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s linear;
}

.yac-countdown-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--yac-countdown-color, #ffffff);
    line-height: 1;
}

.yac-countdown-label {
    margin-top: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--yac-countdown-color, #ffffff);
}

.yac-countdown-expired {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yac-countdown-color, #ffffff);
    text-align: center;
    width: 100%;
}

@media (max-width: 640px) {
    .yac-countdown-ring {
        width: 130px;
        height: 130px;
    }

    .yac-countdown-value {
        font-size: 2rem;
    }

    .yac-countdown-wrap {
        gap: 20px;
        padding: 24px 16px;
    }
}
