:root {
    --wkcr-navy: #07101f;
    --wkcr-navy-2: #0b1830;
    --wkcr-card: rgba(10, 22, 43, .94);
    --wkcr-gold: #d9a441;
    --wkcr-gold-2: #f3d58a;
    --wkcr-text: #f8fbff;
    --wkcr-muted: #a9b6ca;
    --wkcr-border: rgba(217, 164, 65, .22);
    --wkcr-glass: rgba(255, 255, 255, .06);
}
* { box-sizing: border-box; }
html { min-height: 100%; }
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: #06101f; }
html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--wkcr-gold), #8f6827);
    border-radius: 999px;
    border: 2px solid #06101f;
}
body.wkcr-body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--wkcr-text);
    background:
        radial-gradient(circle at 18% 0%, rgba(217, 164, 65, .14), transparent 28%),
        radial-gradient(circle at 82% 5%, rgba(56, 113, 203, .13), transparent 28%),
        linear-gradient(135deg, #050b16 0%, #07101f 46%, #0b1830 100%);
}
a { color: inherit; }
.wkcr-page {
    width: 100%;
    min-height: 100vh;
    padding: clamp(14px, 2.2vw, 28px);
    display: flex;
    align-items: center;
}
.wkcr-shell {
    width: min(900px, 100%);
    margin: 0 auto;
}
.wkcr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(10px, 1.6vw, 16px);
}
.wkcr-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
}
.wkcr-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #08101f;
    background: linear-gradient(135deg, var(--wkcr-gold), var(--wkcr-gold-2));
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -.05em;
    box-shadow: 0 12px 26px rgba(217, 164, 65, .2);
    flex: 0 0 auto;
}
.wkcr-brand-text {
    font-size: clamp(20px, 2.5vw, 27px);
    font-weight: 950;
    letter-spacing: -.05em;
    background: linear-gradient(135deg, #fff, var(--wkcr-gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wkcr-security-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid var(--wkcr-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    color: var(--wkcr-gold-2);
    font-weight: 850;
    font-size: 11px;
    white-space: nowrap;
}
.wkcr-security-pill span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #39e58c;
    box-shadow: 0 0 0 5px rgba(57, 229, 140, .11);
}
.wkcr-card {
    position: relative;
    overflow: hidden;
    border-radius: clamp(22px, 3vw, 30px);
    padding: clamp(20px, 4vw, 36px);
    background:
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
        var(--wkcr-card);
    border: 1px solid var(--wkcr-border);
    box-shadow: 0 26px 70px rgba(0,0,0,.34);
    text-align: center;
}
.wkcr-card:before {
    content: "";
    position: absolute;
    inset: -150px -95px auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(217, 164, 65, .12);
    pointer-events: none;
    filter: blur(10px);
}
.wkcr-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-bottom: 11px;
    position: relative;
}
.wkcr-mini-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(217, 164, 65, .13);
    border: 1px solid rgba(217, 164, 65, .24);
    color: var(--wkcr-gold-2);
    font-size: 11px;
    font-weight: 900;
    max-width: 100%;
}
.wkcr-mini-badge-soft {
    color: #d7e2f6;
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.09);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wkcr-card h1 {
    position: relative;
    margin: 0 auto 9px;
    max-width: 680px;
    font-size: clamp(27px, 4.2vw, 44px);
    line-height: 1.02;
    letter-spacing: -.055em;
}
.wkcr-subtitle {
    position: relative;
    margin: 0 auto 16px;
    max-width: 650px;
    color: var(--wkcr-muted);
    font-size: clamp(13px, 1.25vw, 16px);
    line-height: 1.65;
}
.wkcr-timer-box {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    align-items: center;
    text-align: left;
    max-width: 560px;
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.075);
    background: rgba(255,255,255,.04);
}
.wkcr-ring {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        conic-gradient(var(--wkcr-gold) var(--progress), rgba(255,255,255,.1) 0),
        rgba(255,255,255,.055);
    box-shadow: inset 0 0 0 7px rgba(7,16,31,.92);
}
.wkcr-ring span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #081121;
    color: var(--wkcr-gold-2);
    font-size: 22px;
    font-weight: 950;
}
.wkcr-timer-copy strong,
.wkcr-timer-copy span { display: block; }
.wkcr-timer-copy strong {
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -.02em;
    margin-bottom: 3px;
}
.wkcr-timer-copy span {
    color: var(--wkcr-muted);
    line-height: 1.5;
    font-size: 13px;
}
.wkcr-button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    min-width: min(100%, 260px);
    padding: 0 22px;
    margin-top: 2px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 950;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, var(--wkcr-gold), var(--wkcr-gold-2));
    color: #08101f;
    box-shadow: 0 16px 36px rgba(217, 164, 65, .22);
    transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}
.wkcr-button:hover { transform: translateY(-2px); filter: brightness(1.04); }
.wkcr-button.is-disabled {
    pointer-events: none;
    opacity: .55;
    filter: saturate(.55);
}
.wkcr-button .wkcr-button-ready { display: none; }
.wkcr-button.is-ready .wkcr-button-lock { display: none; }
.wkcr-button.is-ready .wkcr-button-ready { display: inline; }
.wkcr-note {
    margin: 11px auto 0;
    max-width: 520px;
    color: rgba(215,226,246,.72);
    font-size: 12px;
    line-height: 1.55;
}
.wkcr-native-ad {
    width: 100%;
    max-width: 760px;
    margin: clamp(8px, 1.5vw, 14px) auto;
    padding: 0;
    border: 0;
    background: transparent;
    min-height: 0;
    overflow: visible;
}
.wkcr-native-ad-flow-middle {
    margin: 10px auto 12px;
    max-width: 680px;
}
.wkcr-native-ad .adsbygoogle {
    width: 100%;
    max-width: 100%;
    min-height: 0;
}
@media (max-width: 680px) {
    .wkcr-page {
        padding: 12px;
        align-items: flex-start;
    }
    .wkcr-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    .wkcr-brand { gap: 8px; }
    .wkcr-brand-mark { width: 36px; height: 36px; border-radius: 12px; font-size: 12px; }
    .wkcr-brand-text { font-size: 21px; max-width: 170px; }
    .wkcr-security-pill { display: none; }
    .wkcr-card {
        border-radius: 22px;
        padding: 18px 14px;
    }
    .wkcr-card h1 {
        font-size: 29px;
        line-height: 1.05;
        margin-bottom: 8px;
    }
    .wkcr-subtitle {
        margin-bottom: 13px;
        line-height: 1.6;
    }
    .wkcr-timer-box {
        grid-template-columns: 58px 1fr;
        gap: 11px;
        padding: 10px;
        margin-bottom: 11px;
    }
    .wkcr-ring { width: 54px; height: 54px; box-shadow: inset 0 0 0 6px rgba(7,16,31,.92); }
    .wkcr-ring span { width: 40px; height: 40px; font-size: 19px; }
    .wkcr-timer-copy strong { font-size: 15px; }
    .wkcr-timer-copy span { font-size: 12px; }
    .wkcr-button { width: 100%; min-width: 0; min-height: 50px; }
    .wkcr-native-ad { margin: 8px auto; }
}
@media (max-width: 380px) {
    .wkcr-card h1 { font-size: 26px; }
    .wkcr-brand-text { max-width: 145px; }
    .wkcr-timer-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}


/* v1.5.0 premium verification UI */
.wkcr-security-pill {
    background: linear-gradient(135deg, rgba(57,229,140,.12), rgba(217,164,65,.08));
    border-color: rgba(57,229,140,.22);
    color: #d8ffe9;
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.wkcr-badge-row {
    gap: 9px;
    margin-bottom: 14px;
}
.wkcr-mini-badge {
    min-height: 31px;
    padding: 7px 12px;
    border-radius: 12px;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.wkcr-mini-badge:first-child::before,
.wkcr-mini-badge-soft::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    margin-right: 7px;
    background: #39e58c;
    box-shadow: 0 0 0 4px rgba(57,229,140,.12);
    flex: 0 0 auto;
}
.wkcr-mini-badge-soft {
    color: #f7e3aa;
    background: rgba(217,164,65,.08);
    border-color: rgba(217,164,65,.2);
}
.wkcr-card h1 {
    max-width: 720px;
    margin-bottom: 10px;
}
.wkcr-subtitle {
    max-width: 620px;
    margin-bottom: 18px;
}
.wkcr-timer-box {
    grid-template-columns: 100px 1fr;
    gap: 18px;
    max-width: 620px;
    padding: 15px 16px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    border-color: rgba(217,164,65,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 44px rgba(0,0,0,.18);
}
.wkcr-ring {
    width: 92px;
    height: 92px;
    box-shadow: inset 0 0 0 9px rgba(7,16,31,.94), 0 12px 32px rgba(217,164,65,.12);
}
.wkcr-ring span {
    width: 68px;
    height: 68px;
    font-size: 34px;
    letter-spacing: -.06em;
    background: radial-gradient(circle at 50% 0%, rgba(217,164,65,.14), #081121 62%);
}
.wkcr-timer-copy strong {
    font-size: 20px;
    margin-bottom: 5px;
}
.wkcr-timer-copy span {
    font-size: 14px;
    color: #c5d2e5;
}
.wkcr-button.is-disabled .wkcr-button-lock::before {
    content: "Timer • ";
}
.wkcr-button.is-ready {
    box-shadow: 0 18px 40px rgba(217,164,65,.28), 0 0 0 5px rgba(217,164,65,.08);
}
@media (max-width: 680px) {
    .wkcr-badge-row { gap: 7px; margin-bottom: 12px; }
    .wkcr-mini-badge { min-height: 29px; padding: 7px 10px; font-size: 10px; }
    .wkcr-timer-box {
        grid-template-columns: 78px 1fr;
        gap: 12px;
        padding: 12px;
        border-radius: 20px;
    }
    .wkcr-ring { width: 72px; height: 72px; box-shadow: inset 0 0 0 7px rgba(7,16,31,.94); }
    .wkcr-ring span { width: 54px; height: 54px; font-size: 27px; }
    .wkcr-timer-copy strong { font-size: 16px; }
    .wkcr-timer-copy span { font-size: 12.5px; }
}
@media (max-width: 380px) {
    .wkcr-timer-box { grid-template-columns: 1fr; text-align: center; }
}


/* v2.0.0 secure redirect gateway compact verification UI */
.wkcr-favicon-orb {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(217,164,65,.22), rgba(255,255,255,.055));
    border: 1px solid rgba(217,164,65,.28);
    box-shadow: 0 16px 36px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.09);
    overflow: hidden;
}
.wkcr-favicon-orb img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
}
.wkcr-favicon-orb span {
    color: var(--wkcr-gold-2);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -.05em;
}
.wkcr-card {
    padding-top: clamp(18px, 3vw, 30px);
}
.wkcr-card h1 {
    font-size: clamp(30px, 4.4vw, 48px);
}
.wkcr-timer-box {
    grid-template-columns: 112px 1fr;
    max-width: 640px;
}
.wkcr-ring {
    width: 104px;
    height: 104px;
    background:
        radial-gradient(circle at center, #081121 0 53%, transparent 54%),
        conic-gradient(var(--wkcr-gold) var(--progress), rgba(255,255,255,.12) 0),
        linear-gradient(135deg, rgba(217,164,65,.16), rgba(255,255,255,.06));
    box-shadow: 0 18px 40px rgba(0,0,0,.24), 0 0 0 1px rgba(217,164,65,.24), inset 0 0 0 8px rgba(7,16,31,.92);
}
.wkcr-ring span {
    width: 74px;
    height: 74px;
    font-size: 36px;
    line-height: 1;
    display: grid;
    place-items: center;
    text-align: center;
    padding-top: 1px;
    background: linear-gradient(180deg, rgba(217,164,65,.16), rgba(8,17,33,.95));
    border: 1px solid rgba(217,164,65,.2);
}
.wkcr-button .wkcr-button-ready::after {
    content: " →";
}
@media (max-width: 680px) {
    .wkcr-favicon-orb { width: 50px; height: 50px; border-radius: 17px; margin-bottom: 10px; }
    .wkcr-favicon-orb img { width: 30px; height: 30px; }
    .wkcr-timer-box {
        grid-template-columns: 88px 1fr;
    }
    .wkcr-ring { width: 82px; height: 82px; }
    .wkcr-ring span { width: 60px; height: 60px; font-size: 29px; }
}
@media (max-width: 380px) {
    .wkcr-timer-box { grid-template-columns: 1fr; }
    .wkcr-ring { margin: 0 auto; }
}

/* v2.1.0 countdown number vertical alignment fix */
.wkcr-ring,
.wkcr-ring span,
#wkcr-countdown {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.wkcr-ring {
    position: relative;
    padding: 0 !important;
    line-height: 1 !important;
}
.wkcr-ring span,
#wkcr-countdown {
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    transform: translateY(0) !important;
}
.wkcr-ring span {
    font-variant-numeric: tabular-nums;
}

/* v2.2.0 final countdown optical-centering fix */
.wkcr-ring {
    position: relative !important;
    display: block !important;
    padding: 0 !important;
    line-height: 0 !important;
}
.wkcr-ring > span#wkcr-countdown,
.wkcr-ring > span {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: .82 !important;
    transform: translate(-50%, -56%) !important;
    text-align: center !important;
    vertical-align: top !important;
    font-variant-numeric: tabular-nums lining-nums !important;
}
#wkcr-countdown::before,
#wkcr-countdown::after {
    content: none !important;
}
@supports (-webkit-touch-callout: none) {
    .wkcr-ring > span#wkcr-countdown,
    .wkcr-ring > span {
        transform: translate(-50%, -57%) !important;
    }
}
