:root {
    --wkclr-red: #e50914;
    --wkclr-red-dark: #b20710;
    --wkclr-red-soft: #fff4f5;
    --wkclr-text: #181818;
    --wkclr-muted: #666666;
    --wkclr-border: #f1cfd1;
    --wkclr-white: #ffffff;
}

.wkclr-auto-group,
.wkclr-auto-group * { box-sizing: border-box; }

.entry-content .wkclr-auto-group,
.post-content .wkclr-auto-group,
.single-content .wkclr-auto-group,
.wkclr-auto-group {
    direction: rtl !important;
    text-align: center !important;
    margin: 12px 0 !important;
    padding: 11px !important;
    border-radius: 14px !important;
    border: 1px solid var(--wkclr-border) !important;
    background: #ffffff !important;
    color: var(--wkclr-text) !important;
    box-shadow: 0 10px 24px rgba(229, 9, 20, .08) !important;
    overflow: hidden !important;
}

.wkclr-auto-head { margin: 0 0 8px !important; padding: 0 !important; }
.wkclr-auto-copy { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 3px !important; }
.wkclr-auto-copy:empty,
.wkclr-auto-head:has(.wkclr-auto-copy:empty) { display: none !important; }

.wkclr-auto-group h3 {
    margin: 0 !important;
    padding: 0 !important;
    color: var(--wkclr-text) !important;
    font-size: clamp(15px, 1.5vw, 18px) !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}
.wkclr-auto-group p {
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 620px !important;
    color: var(--wkclr-muted) !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}

.wkclr-auto-action {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wkclr-auto-trigger,
.wkclr-auto-link { font-family: inherit !important; text-decoration: none !important; }

.wkclr-auto-trigger {
    width: auto !important;
    min-width: 150px !important;
    max-width: 100% !important;
    min-height: 40px !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    background: var(--wkclr-red) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    box-shadow: 0 10px 22px rgba(229, 9, 20, .16) !important;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease !important;
}
.wkclr-auto-trigger:hover:not([disabled]) { transform: translateY(-1px) !important; box-shadow: 0 14px 28px rgba(229, 9, 20, .22) !important; }
.wkclr-auto-trigger[disabled] { cursor: wait !important; opacity: .92 !important; }
.wkclr-auto-trigger-text { display: inline-flex !important; align-items: center !important; justify-content: center !important; }

.wkclr-auto-timer[hidden],
.wkclr-auto-panel[hidden] { display: none !important; }

.wkclr-auto-timer {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    background: #ffffff !important;
    border: 3px solid var(--wkclr-red) !important;
    box-shadow: inset 0 0 0 4px var(--wkclr-red-soft), 0 8px 18px rgba(229, 9, 20, .10) !important;
}
.wkclr-auto-count { color: var(--wkclr-red) !important; font-size: 24px !important; line-height: 1 !important; font-weight: 1000 !important; font-variant-numeric: tabular-nums !important; }

.wkclr-auto-panel { position: relative !important; margin-top: 8px !important; padding-top: 8px !important; border-top: 1px solid var(--wkclr-border) !important; overflow: hidden !important; }
.wkclr-door { position: absolute !important; inset: 8px 0 0 !important; z-index: 2 !important; display: flex !important; pointer-events: none !important; border-radius: 12px !important; overflow: hidden !important; }
.wkclr-door span { width: 50% !important; background: #ffffff !important; border: 1px solid var(--wkclr-border) !important; transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .35s ease !important; }
.wkclr-auto-panel.is-open .wkclr-door span:first-child { transform: translateX(-103%) !important; opacity: 0 !important; }
.wkclr-auto-panel.is-open .wkclr-door span:last-child { transform: translateX(103%) !important; opacity: 0 !important; }

.wkclr-auto-list { position: relative !important; z-index: 1 !important; display: flex !important; flex-wrap: wrap !important; justify-content: center !important; align-items: center !important; gap: 6px !important; margin: 0 !important; padding: 0 !important; opacity: 0 !important; transform: translateY(5px) !important; transition: opacity .25s ease .18s, transform .25s ease .18s !important; }
.wkclr-auto-panel.is-open .wkclr-auto-list { opacity: 1 !important; transform: translateY(0) !important; }

.wkclr-auto-link {
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 30px !important;
    padding: 5px 8px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    flex: 0 1 auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    color: var(--wkclr-text) !important;
    border: 1px solid var(--wkclr-border) !important;
    background: #ffffff !important;
    box-shadow: 0 5px 14px rgba(229, 9, 20, .06) !important;
    text-align: right !important;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease !important;
}
.wkclr-auto-link:hover { transform: translateY(-1px) !important; border-color: var(--wkclr-red) !important; background: var(--wkclr-red-soft) !important; color: var(--wkclr-red) !important; }
.wkclr-auto-link-text { display: inline-flex !important; flex-direction: row !important; align-items: center !important; gap: 0 !important; min-width: 0 !important; max-width: calc(100% - 44px) !important; }
.wkclr-auto-link-label,
.wkclr-auto-link-note { display: inline-block !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; line-height: 1.1 !important; margin: 0 !important; padding: 0 !important; }
.wkclr-auto-link-label { max-width: 170px !important; font-size: 11.5px !important; font-weight: 900 !important; }
.wkclr-auto-link-note { max-width: 160px !important; color: var(--wkclr-muted) !important; font-size: 9.5px !important; font-weight: 700 !important; opacity: .86 !important; }
.wkclr-auto-link-note::before { content: ' — '; opacity: .75; }
.wkclr-auto-link-action { flex: 0 0 auto !important; padding: 3px 6px !important; border-radius: 999px !important; color: #ffffff !important; background: var(--wkclr-red) !important; border: 1px solid var(--wkclr-red-dark) !important; font-size: 9px !important; font-weight: 950 !important; line-height: 1 !important; }

@media (max-width: 640px) {
    .entry-content .wkclr-auto-group,
    .post-content .wkclr-auto-group,
    .single-content .wkclr-auto-group,
    .wkclr-auto-group { width: 100% !important; margin: 10px 0 !important; padding: 9px !important; border-radius: 13px !important; }
    .wkclr-auto-trigger { width: 100% !important; min-width: 0 !important; max-width: 280px !important; min-height: 42px !important; padding: 0 16px !important; font-size: 13px !important; }
    .wkclr-auto-list { gap: 6px !important; }
    .wkclr-auto-link { max-width: 100% !important; min-height: 31px !important; }
    .wkclr-auto-link-label { max-width: 145px !important; }
    .wkclr-auto-link-note { max-width: 115px !important; }
}
