/* 专注计时器 v2.14.77 —— 归位于 /focus 页面模块，计时后浮出右下角轻量浮条。
   设计语言：Apple HIG 风格的克制与精致 —— 充足留白、柔和分层阴影、精致圆角、
   分类选中即点亮整张卡片的主题色，运行时圆环按分类色发光呼吸。 */

/* ============ 页面模块卡片 ============ */
.wl-focus-timer {
    --cat-color: var(--wl-accent, #ff8200);
    position: relative;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    align-items: center;
    background: var(--wl-bg-card, #fff);
    border: 1px solid var(--wl-border, rgba(16, 24, 40, .08));
    border-radius: 28px;
    padding: 30px 34px;
    margin-bottom: 22px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 12px 32px rgba(16, 24, 40, .06);
    transition: box-shadow .45s ease, border-color .45s ease, transform .45s ease;
}
.wl-focus-timer.has-category {
    border-color: color-mix(in srgb, var(--cat-color) 32%, var(--wl-border, rgba(16, 24, 40, .08)));
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 14px 40px color-mix(in srgb, var(--cat-color) 16%, transparent);
}
.wl-focus-timer.is-running {
    border-color: color-mix(in srgb, var(--cat-color) 55%, var(--wl-border, rgba(16, 24, 40, .08)));
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 18px 52px color-mix(in srgb, var(--cat-color) 26%, transparent);
}

/* 圆环视觉 */
.wl-focus-timer-visual { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.wl-focus-timer-ring-wrap { position: relative; width: 220px; height: 220px; }
.wl-focus-timer-ring { width: 220px; height: 220px; transform: rotate(-90deg); overflow: visible; }
.wl-focus-timer-ring-track { fill: none; stroke: rgba(16, 24, 40, .06); stroke-width: 12; }
.wl-focus-timer-ring-prog {
    fill: none;
    stroke: var(--cat-color);
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset .4s linear, stroke .3s ease;
    /* 始终保留一点点光边（轻微辉光），运行时再由 breathe 呼吸增强 */
    filter: drop-shadow(0 0 2px color-mix(in srgb, var(--cat-color) 42%, transparent));
}
.wl-focus-timer.is-running .wl-focus-timer-ring-prog { animation: wl-focus-breathe 3.4s ease-in-out infinite; }
@keyframes wl-focus-breathe {
    0%, 100% { filter: drop-shadow(0 0 4px color-mix(in srgb, var(--cat-color) 48%, transparent)); }
    50%      { filter: drop-shadow(0 0 14px color-mix(in srgb, var(--cat-color) 78%, transparent)); }
}
/* 走针头部高光：跟随进度末端的玻璃珠小圆点（径向白高光 + 主题色辉光 + inset 高光） */
.wl-focus-timer-ring-head {
    position: absolute;
    width: 15px; height: 15px;
    margin: -7.5px 0 0 -7.5px;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 28%, #ffffff 0%, color-mix(in srgb, var(--cat-color) 70%, #fff) 48%, var(--cat-color) 100%);
    box-shadow:
        0 0 7px 2px color-mix(in srgb, var(--cat-color) 62%, transparent),
        0 1px 2px rgba(0, 0, 0, .25),
        inset 0 1px 1px rgba(255, 255, 255, .9);
    pointer-events: none;
    opacity: 0;
    transform: scale(.55);
    transition: opacity .35s ease, transform .4s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 3;
}
.wl-focus-timer.is-running .wl-focus-timer-ring-head,
.wl-focus-timer.is-paused .wl-focus-timer-ring-head { opacity: 1; transform: scale(1); }
.wl-focus-timer.is-running .wl-focus-timer-ring-head,
.wl-focus-timer.is-paused .wl-focus-timer-ring-head { opacity: 1; }
.wl-focus-timer-center {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    pointer-events: none;
}
.wl-focus-timer-time {
    font-size: 38px; font-weight: 700; font-variant-numeric: tabular-nums;
    letter-spacing: .01em; color: var(--wl-text, #1d1d1f);
}
.wl-focus-timer-sub { font-size: 13px; color: var(--wl-text-secondary, #6b6f76); }

/* 分类色片 */
.wl-focus-timer-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.wl-focus-timer-cat {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px 9px 11px;
    border: 1.5px solid var(--wl-border, rgba(16, 24, 40, .1));
    border-radius: 999px;
    background: transparent;
    color: var(--wl-text-secondary, #5b6068);
    font-size: 13.5px; font-weight: 600;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.wl-focus-timer-cat-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; opacity: .9; }
.wl-focus-timer-cat:hover { border-color: color-mix(in srgb, var(--cat-color, #888) 45%, var(--wl-border, rgba(16, 24, 40, .1))); }
.wl-focus-timer-cat.is-selected {
    color: #fff;
    background: var(--cat-color);
    border-color: var(--cat-color);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--cat-color) 38%, transparent);
}
.wl-focus-timer-cat.is-selected .wl-focus-timer-cat-dot { background: #fff !important; opacity: 1; box-shadow: 0 0 0 2px rgba(255, 255, 255, .35); }
.wl-focus-timer-cats.is-locked .wl-focus-timer-cat { opacity: .45; pointer-events: none; cursor: default; }

/* 关联成长下拉 */
.wl-focus-timer-link { position: relative; margin-bottom: 14px; }
.wl-focus-timer-link-trigger {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--wl-border, rgba(16, 24, 40, .1));
    border-radius: 14px;
    background: var(--wl-bg-card, #fff);
    color: var(--wl-text, #1d1d1f);
    font-size: 13.5px; font-weight: 600;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wl-focus-timer-link-trigger:hover { border-color: color-mix(in srgb, var(--cat-color) 45%, var(--wl-border, rgba(16, 24, 40, .1))); }
.wl-focus-timer-link-trigger.open,
.wl-focus-timer-link-trigger:focus-visible { outline: none; border-color: var(--cat-color); box-shadow: 0 0 0 4px color-mix(in srgb, var(--cat-color) 16%, transparent); }
.wl-focus-timer-link-caret { color: var(--wl-text-secondary, #8a9099); transition: transform .2s ease; }
.wl-focus-timer-link-trigger.open .wl-focus-timer-link-caret { transform: rotate(180deg); }
.wl-focus-timer-link-panel {
    position: absolute; z-index: 20; left: 0; right: 0; top: calc(100% + 6px);
    background: var(--wl-bg-card, #fff);
    border: 1px solid var(--wl-border, rgba(16, 24, 40, .1));
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(16, 24, 40, .16);
    max-height: 264px; overflow: auto; padding: 6px;
}
.wl-focus-timer-link-panel[hidden] { display: none; }
.wl-focus-timer-link-list { display: flex; flex-direction: column; gap: 2px; }
.wl-focus-timer-link-item {
    display: flex; align-items: center; gap: 9px;
    padding: 9px 11px; border: 0; background: transparent; border-radius: 10px;
    text-align: left; font-size: 13px; color: var(--wl-text, #1d1d1f);
    cursor: pointer; transition: background .15s ease, color .15s ease;
}
.wl-focus-timer-link-item:hover { background: rgba(16, 24, 40, .05); }
.wl-focus-timer-link-item .it-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.wl-focus-timer-link-item.it-indent { padding-left: 20px; color: var(--wl-text-secondary, #6b6f76); font-size: 12px; }
.wl-focus-timer-link-item.is-active {
    background: color-mix(in srgb, var(--cat-color) 12%, transparent);
    color: color-mix(in srgb, var(--cat-color) 72%, #000); font-weight: 600;
}

/* 备注 */
.wl-focus-timer-note { margin-bottom: 16px; }
.wl-focus-timer-note-input {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--wl-border, rgba(16, 24, 40, .1));
    border-radius: 14px;
    background: var(--wl-bg-card, #fff);
    font-size: 13.5px; color: var(--wl-text, #1d1d1f);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wl-focus-timer-note-input:focus { outline: none; border-color: var(--cat-color); box-shadow: 0 0 0 4px color-mix(in srgb, var(--cat-color) 16%, transparent); }
.wl-focus-timer-note-input::placeholder { color: var(--wl-text-muted, #9aa0a8); }
.wl-focus-timer-note-input:disabled { background: rgba(16, 24, 40, .03); color: var(--wl-text-secondary, #8a9099); }

/* 操作按钮 */
.wl-focus-timer-actions { display: flex; gap: 12px; }
.wl-focus-timer-actions button {
    flex: 1; height: 50px; border: 0; border-radius: 16px;
    font-size: 15px; font-weight: 700; cursor: pointer;
    transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.wl-focus-timer-start {
    color: #fff;
    background: linear-gradient(180deg, color-mix(in srgb, var(--cat-color) 92%, #fff 8%), var(--cat-color));
    box-shadow: 0 10px 24px color-mix(in srgb, var(--cat-color) 34%, transparent);
}
.wl-focus-timer-start:hover { box-shadow: 0 14px 30px color-mix(in srgb, var(--cat-color) 46%, transparent); }
.wl-focus-timer-pause,
.wl-focus-timer-resume { color: var(--wl-text, #1d1d1f); background: rgba(16, 24, 40, .06); }
.wl-focus-timer-pause:hover,
.wl-focus-timer-resume:hover { background: rgba(16, 24, 40, .1); }
.wl-focus-timer-stop {
    color: color-mix(in srgb, var(--cat-color) 78%, #000);
    background: color-mix(in srgb, var(--cat-color) 12%, transparent);
}
.wl-focus-timer-stop:hover { background: color-mix(in srgb, var(--cat-color) 20%, transparent); }
.wl-focus-timer-actions button:active { transform: scale(.985); }
.wl-focus-timer-actions button[hidden] { display: none; }

/* 提示 + 轻提示 */
.wl-focus-timer-hint { margin: 14px 0 0; font-size: 12.5px; color: var(--wl-text-secondary, #8a9099); line-height: 1.5; }
.wl-focus-timer.is-running .wl-focus-timer-hint,
.wl-focus-timer.is-paused .wl-focus-timer-hint { display: none; }
.wl-focus-timer-toast {
    position: absolute; left: 50%; bottom: 18px; transform: translate(-50%, 10px);
    padding: 10px 16px; border-radius: 14px;
    background: rgba(29, 29, 31, .92); color: #fff;
    font-size: 13px; font-weight: 500; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 5; box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
.wl-focus-timer-toast.show { opacity: 1; transform: translate(-50%, 0); }
.wl-focus-timer-toast.is-error { background: rgba(204, 104, 0, .95); }

/* ============ 右下角浮动计时条 ============ */
.wl-focus-float {
    --cat-color: #ff8200;
    position: fixed; right: 20px; bottom: 20px; z-index: 9999;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(16, 24, 40, .18), 0 2px 8px rgba(16, 24, 40, .1);
    animation: wl-focus-float-in .5s cubic-bezier(.22, .61, .36, 1) both;
}
.wl-focus-float[hidden] { display: none; }
@keyframes wl-focus-float-in {
    from { opacity: 0; transform: translateY(16px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wl-focus-float-main {
    display: flex; align-items: center; gap: 12px;
    border: 0; background: transparent; padding: 0; cursor: pointer;
}

/* 翻页数字时钟（分体翻页 / 实物感 / 主题色） */
.wl-focus-clock {
    display: flex; align-items: center; gap: 4px;
    padding: 6px 9px;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 16px;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--cat-color) 22%, transparent), inset 0 1px 2px rgba(255, 255, 255, .5);
}
.wl-focus-clock-group { display: flex; gap: 3px; perspective: 220px; }
.wl-focus-digit {
    position: relative;
    width: 22px; height: 34px;
    border-radius: 6px;
    font-size: 17px; font-weight: 800; color: #fff;
    background: var(--cat-color);
    box-shadow: 0 3px 7px rgba(0, 0, 0, .22), inset 0 -4px 0 color-mix(in srgb, var(--cat-color) 55%, #000 20%);
    perspective: 220px;
    transform-style: preserve-3d;
}
.wl-focus-digit > span {
    position: absolute; left: 0; right: 0; height: 50%;
    overflow: hidden; display: flex; justify-content: center;
    backface-visibility: hidden; line-height: 34px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .28);
}
.flip-top, .flip-leaf-top {
    top: 0; align-items: flex-start;
    border-radius: 6px 6px 0 0;
    background: color-mix(in srgb, var(--cat-color) 86%, #fff 14%);
}
.flip-bottom, .flip-leaf-bottom {
    bottom: 0; align-items: flex-end;
    border-radius: 0 0 6px 6px;
    background: color-mix(in srgb, var(--cat-color) 72%, #000 16%);
}
/* 铰链分隔线 */
.wl-focus-digit::after {
    content: ""; position: absolute; left: 0; right: 0; top: 50%;
    height: 1px; transform: translateY(-.5px); z-index: 3; opacity: .55;
    background: color-mix(in srgb, var(--cat-color) 50%, #000 40%);
}
/* 翻页叶片：默认隐藏，仅在翻动时显示 */
.flip-leaf { opacity: 0; z-index: 4; }
.wl-focus-digit.is-flipping .flip-leaf { opacity: 1; }
.flip-leaf-top { transform-origin: bottom center; }
.flip-leaf-bottom { transform-origin: top center; }
.wl-focus-digit.is-flipping .flip-leaf-top { animation: wl-focus-flip-top .32s cubic-bezier(.36, 0, .66, -.05) forwards; }
.wl-focus-digit.is-flipping .flip-leaf-bottom { animation: wl-focus-flip-bottom .34s cubic-bezier(.34, 1.15, .64, 1) .14s forwards; }
@keyframes wl-focus-flip-top { 0% { transform: rotateX(0deg); } 100% { transform: rotateX(-90deg); } }
@keyframes wl-focus-flip-bottom { 0% { transform: rotateX(90deg); } 100% { transform: rotateX(0deg); } }

.wl-focus-clock-sep {
    font-size: 15px; font-weight: 800; line-height: 34px;
    color: var(--cat-color);
    margin: 0 1px;
    animation: wl-focus-clock-pulse 1.2s ease-in-out infinite;
}
@keyframes wl-focus-clock-pulse { 0%, 100% { opacity: .35; } 50% { opacity: .7; } }

/* 暂停：数字面转灰 */
.wl-focus-float.is-paused .wl-focus-digit {
    background: rgba(16, 24, 40, .14);
    box-shadow: 0 3px 7px rgba(0, 0, 0, .12), inset 0 -4px 0 rgba(16, 24, 40, .16);
}
.wl-focus-float.is-paused .flip-top,
.wl-focus-float.is-paused .flip-leaf-top { background: rgba(16, 24, 40, .1); }
.wl-focus-float.is-paused .flip-bottom,
.wl-focus-float.is-paused .flip-leaf-bottom { background: rgba(16, 24, 40, .18); }
.wl-focus-float.is-paused .wl-focus-digit::after { background: rgba(16, 24, 40, .25); }
.wl-focus-float.is-paused .wl-focus-clock-sep { color: var(--wl-text-secondary, #8a9099); }

.wl-focus-float-meta { display: flex; flex-direction: column; gap: 2px; }
.wl-focus-float-cat { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--wl-text, #1d1d1f); }
.wl-focus-float-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.wl-focus-float-status { font-size: 11px; color: var(--wl-text-secondary, #8a9099); }
.wl-focus-float.is-paused .wl-focus-float-status { color: #c0392b; }
.wl-focus-float-actions { display: flex; gap: 8px; }
.wl-focus-float-actions button {
    height: 36px; padding: 0 12px; border: 0; border-radius: 12px; cursor: pointer;
    font-size: 12.5px; font-weight: 700;
    transition: transform .12s ease, background .2s ease, color .2s ease;
}
.wl-focus-float-pause { background: color-mix(in srgb, var(--cat-color) 14%, transparent); color: color-mix(in srgb, var(--cat-color) 78%, #000); }
.wl-focus-float-pause.is-paused { background: rgba(16, 24, 40, .08); color: var(--wl-text, #1d1d1f); }
.wl-focus-float-stop { background: rgba(16, 24, 40, .06); color: var(--wl-text, #1d1d1f); }
.wl-focus-float-actions button:active { transform: scale(.94); }

/* ============ 全屏专注显示（点翻页钟进入 / 点空白缩小，FLIP 平滑过渡） ============ */
.wl-focus-fullscreen {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
}
.wl-focus-fullscreen[hidden] { display: none; }
.wl-focus-fs-backdrop {
    position: absolute; inset: 0;
    background: color-mix(in srgb, var(--wl-bg, #fafafa) 90%, #000 10%);
    backdrop-filter: saturate(160%) blur(26px);
    -webkit-backdrop-filter: saturate(160%) blur(26px);
    opacity: 0;
    transition: opacity .4s ease;
}
.wl-focus-fullscreen.is-open .wl-focus-fs-backdrop { opacity: 1; }
.wl-focus-fs-stage {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    will-change: transform, opacity;
}
.wl-focus-fs-clock {
    --fs-digit-h: 128px;
    display: flex; align-items: center; gap: 16px;
    padding: 22px 30px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 32px;
    box-shadow: 0 22px 60px color-mix(in srgb, var(--cat-color) 28%, transparent), inset 0 1px 2px rgba(255, 255, 255, .5);
    transform-origin: center center;
    will-change: transform, opacity;
}
.wl-focus-fs-clock .wl-focus-clock-group { gap: 10px; perspective: 600px; }
.wl-focus-fs-clock .wl-focus-digit {
    width: 84px; height: var(--fs-digit-h);
    font-size: 70px; border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .26), inset 0 -11px 0 color-mix(in srgb, var(--cat-color) 55%, #000 20%);
    perspective: 600px;
}
.wl-focus-fs-clock .wl-focus-digit > span { line-height: var(--fs-digit-h); }
.wl-focus-fs-clock .wl-focus-clock-sep { font-size: 62px; line-height: var(--fs-digit-h); }
/* 暂停：全屏数字面转灰 */
.wl-focus-fs-stage.is-paused .wl-focus-digit {
    background: rgba(16, 24, 40, .14);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), inset 0 -9px 0 rgba(16, 24, 40, .16);
}
.wl-focus-fs-stage.is-paused .flip-top,
.wl-focus-fs-stage.is-paused .flip-leaf-top { background: rgba(16, 24, 40, .1); }
.wl-focus-fs-stage.is-paused .flip-bottom,
.wl-focus-fs-stage.is-paused .flip-leaf-bottom { background: rgba(16, 24, 40, .18); }
.wl-focus-fs-stage.is-paused .wl-focus-digit::after { background: rgba(16, 24, 40, .25); }
.wl-focus-fs-stage.is-paused .wl-focus-clock-sep { color: var(--wl-text-secondary, #8a9099); }
/* 下方信息区：分类名/状态 + 按钮，统一放在翻页钟下方并随 is-open 淡入/淡出 */
.wl-focus-fs-below {
    position: absolute; left: 50%; top: 100%;
    transform: translateX(-50%); margin-top: 26px;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    opacity: 0; transition: opacity .3s ease;
    pointer-events: none;
}
.wl-focus-fullscreen.is-open .wl-focus-fs-below { opacity: 1; pointer-events: auto; }
/* 全屏 8 秒无操作后自动隐藏下方 UI；任意交互（点击/触摸/移动/按键）即重新显示 */
.wl-focus-fullscreen.fs-ui-hidden .wl-focus-fs-below { opacity: 0; pointer-events: none; }
.wl-focus-fullscreen.fs-ui-hidden .wl-focus-fs-backdrop { cursor: default; }
.wl-focus-fs-meta { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.wl-focus-fs-cat { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 800; color: var(--wl-text, #1d1d1f); }
.wl-focus-fs-dot { width: 12px; height: 12px; border-radius: 50%; flex: 0 0 auto; background: var(--cat-color); }
.wl-focus-fs-status { font-size: 13px; color: var(--wl-text-secondary, #8a9099); }
.wl-focus-fs-stage.is-paused .wl-focus-fs-status { color: #c0392b; }
.wl-focus-fs-actions { display: flex; gap: 10px; }
.wl-focus-fs-actions button {
    height: 44px; padding: 0 18px; border: 0; border-radius: 14px; cursor: pointer;
    font-size: 14px; font-weight: 700; white-space: nowrap; flex: 0 0 auto;
    transition: transform .12s ease, background .2s ease, color .2s ease;
    -webkit-tap-highlight-color: transparent;
}
.wl-focus-fs-pause { background: color-mix(in srgb, var(--cat-color) 16%, transparent); color: color-mix(in srgb, var(--cat-color) 78%, #000); }
.wl-focus-fs-pause.is-paused { background: rgba(16, 24, 40, .08); color: var(--wl-text, #1d1d1f); }
.wl-focus-fs-stop { background: rgba(16, 24, 40, .06); color: var(--wl-text, #1d1d1f); }
.wl-focus-fs-actions button:active { transform: scale(.94); }
/* 方案3：全屏期间整块钟缓慢像素位移，防 OLED 烧屏（全局，只要全屏即启用）。
   open/close 的 FLIP 会临时暂停该动画以保证精确落点。 */
.wl-focus-fullscreen.is-open .wl-focus-fs-stage {
    animation: wl-fs-drift 28s ease-in-out infinite;
}
@keyframes wl-fs-drift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(5px, -4px); }
    50% { transform: translate(-4px, 5px); }
    75% { transform: translate(4px, 3px); }
}
/* 常亮按钮 */
.wl-focus-fs-stay { background: rgba(16, 24, 40, .06); color: var(--wl-text, #1d1d1f); }
.wl-focus-fs-stay.is-on { background: var(--cat-color); color: #fff; }
/* 方案1：点击常亮后进入近黑沉浸背景（OLED 友好 + 发光翻页钟更突出） */
.wl-focus-fullscreen.is-awake .wl-focus-fs-backdrop {
    background: color-mix(in srgb, #050507 88%, var(--cat-color) 12%);
}
.wl-focus-fullscreen.is-awake .wl-focus-fs-clock {
    background: rgba(20, 20, 24, .5);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 24px 80px color-mix(in srgb, var(--cat-color) 55%, transparent), inset 0 1px 2px rgba(255, 255, 255, .1);
}
.wl-focus-fullscreen.is-awake .wl-focus-fs-cat { color: rgba(255, 255, 255, .95); }
.wl-focus-fullscreen.is-awake .wl-focus-fs-status { color: rgba(255, 255, 255, .6); }
.wl-focus-fullscreen.is-awake .wl-focus-fs-stage.is-paused .wl-focus-fs-status { color: #ff7a7a; }
.wl-focus-fullscreen.is-awake .wl-focus-fs-actions button { color: #fff; background: rgba(255, 255, 255, .14); }
.wl-focus-fullscreen.is-awake .wl-focus-fs-pause { background: color-mix(in srgb, var(--cat-color) 32%, transparent); color: #fff; }
.wl-focus-fullscreen.is-awake .wl-focus-fs-stay { background: rgba(255, 255, 255, .14); color: #fff; }
.wl-focus-fullscreen.is-awake .wl-focus-fs-stay.is-on { background: var(--cat-color); color: #fff; }

/* 手机端：把大钟改小以自然适配，不再用 transform:scale(.8)（避免与 FLIP 冲突） */
@media (max-width: 480px) {
    .wl-focus-fs-clock {
        --fs-digit-h: 64px;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 22px;
    }
    .wl-focus-fs-clock .wl-focus-clock-group { gap: 6px; perspective: 460px; }
    .wl-focus-fs-clock .wl-focus-digit {
        width: 42px; height: var(--fs-digit-h);
        font-size: 34px; border-radius: 12px;
    }
    .wl-focus-fs-clock .wl-focus-digit > span { line-height: var(--fs-digit-h); }
    .wl-focus-fs-clock .wl-focus-clock-sep { font-size: 30px; line-height: var(--fs-digit-h); }
    /* 竖屏：下方按钮不换行、收紧间距，保证窄屏单行容纳三个按钮 */
    .wl-focus-fs-below { gap: 14px; margin-top: 20px; max-width: 94vw; }
    .wl-focus-fs-actions { gap: 8px; }
    .wl-focus-fs-actions button { height: 42px; padding: 0 15px; font-size: 13.5px; }
}

/* 横屏 / 矮高度：恢复为 2.14.117 横屏时的尺寸（即当时的桌面等效值），
   不再缩小时钟。保证「时钟 + 下方信息 + 三个按钮」整体落在可视区内。 */
@media (orientation: landscape) and (max-height: 520px) {
    .wl-focus-fs-clock {
        --fs-digit-h: 108px;
        gap: 14px;
        padding: 18px 24px;
        border-radius: 28px;
    }
    .wl-focus-fs-clock .wl-focus-clock-group { gap: 8px; perspective: 560px; }
    .wl-focus-fs-clock .wl-focus-digit {
        width: 72px; height: var(--fs-digit-h);
        font-size: 60px; border-radius: 14px;
    }
    .wl-focus-fs-clock .wl-focus-digit > span { line-height: var(--fs-digit-h); }
    .wl-focus-fs-clock .wl-focus-clock-sep { font-size: 54px; line-height: var(--fs-digit-h); }
    .wl-focus-fs-below { flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; width: max-content; max-width: 92vw; }
    .wl-focus-fs-meta { flex-direction: row; align-items: center; gap: 10px; }
    .wl-focus-fs-actions { gap: 12px; }
    .wl-focus-fs-actions button { height: 44px; padding: 0 18px; font-size: 14px; }
    .wl-focus-fs-cat { font-size: 18px; }
    .wl-focus-fs-status { font-size: 13px; }
}

/* ============ 响应式 ============ */
/* 平板端（601–1024px）：计时器浮条底部居中，宽度保持与桌面一致（内容宽度）不外扩不外缩 */
@media (min-width: 601px) and (max-width: 1024px) {
    .wl-focus-float {
        left: 50%; right: auto; bottom: 20px;
        width: max-content;
        max-width: calc(100vw - 36px);
        transform: translateX(-50%);
        animation: wl-focus-float-in-t .5s cubic-bezier(.22, .61, .36, 1) both;
    }
    @keyframes wl-focus-float-in-t {
        from { opacity: 0; transform: translate(-50%, 16px) scale(.96); }
        to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
    }
}

@media (max-width: 600px) {
    .wl-focus-timer {
        grid-template-columns: 1fr; gap: 20px;
        padding: 22px 18px; border-radius: 22px;
    }
    .wl-focus-timer-visual { order: -1; }
    .wl-focus-timer-ring-wrap { width: 184px; height: 184px; }
    .wl-focus-timer-ring { width: 184px; height: 184px; }
    .wl-focus-timer-ring-head { width: 12px; height: 12px; margin: -6px 0 0 -6px; }
    .wl-focus-timer-time { font-size: 32px; }
    .wl-focus-timer-cats { gap: 8px; }
    .wl-focus-timer-cat { padding: 8px 12px 8px 10px; font-size: 12.5px; }
    .wl-focus-timer-actions button { height: 46px; font-size: 14px; }
    /* 手机端：计时器居中显示（底部中置、翻页时钟放大） */
    .wl-focus-float {
        left: 50%; right: auto; bottom: 18px;
        width: 88%; max-width: calc(100vw - 24px);
        box-sizing: border-box;
        flex-direction: column; align-items: stretch; justify-content: center;
        gap: 12px; padding: 14px;
        transform: translateX(-50%);
        animation: wl-focus-float-in-m .5s cubic-bezier(.22, .61, .36, 1) both;
    }
    @keyframes wl-focus-float-in-m {
        from { opacity: 0; transform: translate(-50%, 16px) scale(.96); }
        to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
    }
    .wl-focus-float-main { width: 100%; }
    /* 移动端翻页组件铺满白框：时钟药丸宽度 100%，数字沿框内均匀分布 */
    .wl-focus-clock {
        width: 100%;
        justify-content: space-evenly;
        padding: 12px 10px;
        gap: 0;
    }
    .wl-focus-clock-group { gap: 7px; }
    .wl-focus-digit { width: 30px; height: 48px; font-size: 23px; border-radius: 9px; }
    .wl-focus-digit > span { line-height: 48px; }
    .wl-focus-clock-sep { line-height: 48px; font-size: 20px; margin: 0; }
    .wl-focus-float-meta { display: none; }
    .wl-focus-float-actions { width: 100%; justify-content: center; gap: 12px; }
    .wl-focus-float-actions button { height: 40px; padding: 0 18px; font-size: 14px; flex: 1 1 0; max-width: 150px; }
}

/* 降低动态效果偏好 */
@media (prefers-reduced-motion: reduce) {
    .wl-focus-float { animation: none; }
    .wl-focus-timer.is-running .wl-focus-timer-ring-prog { animation: none; }
}

/* ============ 计时器皮肤主题切换控件（圆环下方） ============ */
.wl-focus-timer-themes {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 10px; max-width: 230px;
}
.wl-focus-timer-theme {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    padding: 0; border: 0; background: transparent; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.wl-focus-theme-swatch {
    width: 30px; height: 30px; border-radius: 10px; flex: 0 0 auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
    transition: transform .18s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s ease;
}
.wl-focus-theme-name { font-size: 11px; font-weight: 600; color: var(--wl-text-secondary, #8a9099); transition: color .2s ease; }
.wl-focus-timer-theme:hover .wl-focus-theme-swatch { transform: translateY(-2px); }
.wl-focus-timer-theme.is-active .wl-focus-theme-swatch { outline: 2.5px solid var(--cat-color, var(--wl-accent)); outline-offset: 2px; }
.wl-focus-timer-theme.is-active .wl-focus-theme-name { color: var(--cat-color, var(--wl-accent)); font-weight: 700; }

/* 控件里的小预览材质 */
.sw-default { background: linear-gradient(135deg, #ffffff, #eef0f3); border: 1px solid rgba(16, 24, 40, .12); }
/* 默认主题选中时用主题色填充，不再纯白；30% 浓度确保肉眼可见 */
.wl-focus-timer-theme.is-active .sw-default {
    background: color-mix(in srgb, var(--cat-color, var(--wl-accent)) 30%, #ffffff);
    border-color: var(--cat-color, var(--wl-accent));
}
.sw-metal   { background: linear-gradient(135deg, #fdfefe, #b9c2cc 55%, #e7ecf1); border: 1px solid rgba(255, 255, 255, .7); box-shadow: inset 0 1px 0 #fff, inset 0 -2px 3px rgba(0, 0, 0, .15); }
.sw-neon    { background: radial-gradient(circle at 50% 45%, #1b2233, #0a0c12); border: 1px solid rgba(255, 255, 255, .15); box-shadow: 0 0 8px rgba(120, 160, 255, .55), inset 0 0 6px rgba(120, 160, 255, .35); }
.sw-steel   { background: repeating-linear-gradient(125deg, rgba(255, 255, 255, .08) 0 1px, rgba(255, 255, 255, 0) 1px 3px), linear-gradient(135deg, #4a515a, #262b31 60%, #343a42); border: 1px solid rgba(255, 255, 255, .18); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18); }

/* ============ 计时器皮肤主题材质 ============
   选择器挂在 <html data-focus-theme> 上，覆盖主模块 / 浮条 / 全屏三处。
   分类强调色仍由 JS 写入的 --cat-color 驱动，皮肤只负责「材质」本身，
   关键强调元素用 color-mix 基于 --cat-color 生成，不写死颜色。默认主题保持原样。 */

/* —— 金属拉丝 metal —— */
html[data-focus-theme="metal"] .wl-focus-timer {
    background: linear-gradient(160deg, #eef1f4 0%, #d2d9e0 45%, #f1f4f7 100%);
    border-color: rgba(255, 255, 255, .75);
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 14px 40px rgba(16, 24, 40, .14), inset 0 1px 0 rgba(255, 255, 255, .9);
}
html[data-focus-theme="metal"] .wl-focus-timer.has-category,
html[data-focus-theme="metal"] .wl-focus-timer.is-running {
    border-color: rgba(255, 255, 255, .75);
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 16px 46px rgba(16, 24, 40, .18), inset 0 1px 0 rgba(255, 255, 255, .9);
}
html[data-focus-theme="metal"] .wl-focus-timer-ring-track { stroke: rgba(120, 132, 146, .38); }
html[data-focus-theme="metal"] .wl-focus-timer-ring-prog { filter: drop-shadow(0 0 4px color-mix(in srgb, var(--cat-color) 55%, transparent)); }
/* 金属翻页数字：拉丝银底 + 阴刻深字 */
html[data-focus-theme="metal"] .wl-focus-digit {
    background: linear-gradient(160deg, #f7f9fb 0%, #c2cad3 52%, #e9eef2 100%);
    color: #1d2530;
    box-shadow: inset 0 1px 0 #fff, inset 0 -6px 9px rgba(0, 0, 0, .18), 0 8px 18px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .55);
}
html[data-focus-theme="metal"] .wl-focus-digit > span { text-shadow: 0 1px 1px rgba(255, 255, 255, .6); }
html[data-focus-theme="metal"] .flip-top,
html[data-focus-theme="metal"] .flip-leaf-top { background: linear-gradient(180deg, #fdfefe, #c8d0d8); }
html[data-focus-theme="metal"] .flip-bottom,
html[data-focus-theme="metal"] .flip-leaf-bottom { background: linear-gradient(180deg, #c8d0d8, #aab4bf); }
html[data-focus-theme="metal"] .wl-focus-digit::after { background: rgba(90, 100, 112, .6); opacity: .7; }
html[data-focus-theme="metal"] .wl-focus-clock-sep { text-shadow: 0 0 8px color-mix(in srgb, var(--cat-color) 60%, transparent); }
/* 金属按钮 / 浮条 / 全屏 */
html[data-focus-theme="metal"] .wl-focus-timer-start {
    background: linear-gradient(180deg, #fbfcfd, #c9d1d9);
    color: #1d2530;
    box-shadow: inset 0 1px 0 #fff, inset 0 -3px 6px rgba(0, 0, 0, .15), 0 8px 18px rgba(0, 0, 0, .18);
}
html[data-focus-theme="metal"] .wl-focus-timer-pause,
html[data-focus-theme="metal"] .wl-focus-timer-resume { color: #1d2530; background: rgba(255, 255, 255, .5); }
html[data-focus-theme="metal"] .wl-focus-timer-stop { color: color-mix(in srgb, var(--cat-color) 78%, #000); background: color-mix(in srgb, var(--cat-color) 12%, transparent); }
html[data-focus-theme="metal"] .wl-focus-float {
    background: linear-gradient(160deg, rgba(238, 241, 244, .82), rgba(200, 209, 217, .78));
    border-color: rgba(255, 255, 255, .7);
    box-shadow: 0 12px 34px rgba(16, 24, 40, .22), inset 0 1px 0 rgba(255, 255, 255, .7);
}
html[data-focus-theme="metal"] .wl-focus-clock,
html[data-focus-theme="metal"] .wl-focus-fs-clock {
    background: linear-gradient(160deg, rgba(255, 255, 255, .6), rgba(205, 214, 222, .6));
    border-color: rgba(255, 255, 255, .7);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .22), inset 0 1px 2px rgba(255, 255, 255, .7);
}


/* —— 钢铁 steel（拟物：枪色金属 + 铆钉 + 工业朋克） —— */
html[data-focus-theme="steel"] .wl-focus-timer {
    --wl-text: #d7dde4;
    --wl-text-secondary: #8e99a6;
    background:
        radial-gradient(circle at 15px 15px, #c9d2da 0 2.5px, #5b636c 2.5px 4px, #2c3138 4px 5px, transparent 5.5px),
        radial-gradient(circle at calc(100% - 15px) 15px, #c9d2da 0 2.5px, #5b636c 2.5px 4px, #2c3138 4px 5px, transparent 5.5px),
        radial-gradient(circle at 15px calc(100% - 15px), #c9d2da 0 2.5px, #5b636c 2.5px 4px, #2c3138 4px 5px, transparent 5.5px),
        radial-gradient(circle at calc(100% - 15px) calc(100% - 15px), #c9d2da 0 2.5px, #5b636c 2.5px 4px, #2c3138 4px 5px, transparent 5.5px),
        repeating-linear-gradient(125deg, rgba(255, 255, 255, .05) 0 1px, rgba(255, 255, 255, 0) 1px 3px),
        linear-gradient(160deg, #3a4048 0%, #262b31 55%, #343a42 100%);
    border-color: #1d2127;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .3), 0 18px 46px rgba(0, 0, 0, .5), inset 0 2px 0 rgba(255, 255, 255, .12), inset 0 -4px 10px rgba(0, 0, 0, .5), inset 0 0 0 2px rgba(120, 130, 140, .35);
}
html[data-focus-theme="steel"] .wl-focus-timer.has-category,
html[data-focus-theme="steel"] .wl-focus-timer.is-running {
    border-color: #1d2127;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .3), 0 20px 52px rgba(0, 0, 0, .55), inset 0 2px 0 rgba(255, 255, 255, .14), inset 0 -4px 10px rgba(0, 0, 0, .5), inset 0 0 0 2px color-mix(in srgb, var(--cat-color) 60%, #1d2127);
}
html[data-focus-theme="steel"] .wl-focus-timer-ring-track { stroke: rgba(150, 160, 170, .25); }
html[data-focus-theme="steel"] .wl-focus-timer-ring-prog { filter: drop-shadow(0 0 5px color-mix(in srgb, var(--cat-color) 70%, transparent)); }
/* 钢铁翻页数字：冲压枪色金属板 + 凹刻深字 */
html[data-focus-theme="steel"] .wl-focus-digit {
    background:
        repeating-linear-gradient(125deg, rgba(255, 255, 255, .05) 0 1px, rgba(255, 255, 255, 0) 1px 3px),
        linear-gradient(165deg, #4a515a 0%, #2c323a 55%, #3c434c 100%);
    color: #11151a;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .14), inset 0 -7px 11px rgba(0, 0, 0, .55), 0 9px 20px rgba(0, 0, 0, .5), 0 0 0 1px rgba(140, 150, 160, .35);
}
html[data-focus-theme="steel"] .wl-focus-digit > span { text-shadow: 0 1px 0 rgba(180, 190, 200, .22), 0 -1px 1px rgba(0, 0, 0, .6); }
html[data-focus-theme="steel"] .flip-top,
html[data-focus-theme="steel"] .flip-leaf-top {
    background:
        repeating-linear-gradient(125deg, rgba(255, 255, 255, .05) 0 1px, rgba(255, 255, 255, 0) 1px 3px),
        linear-gradient(180deg, #565e68, #353c45);
}
html[data-focus-theme="steel"] .flip-bottom,
html[data-focus-theme="steel"] .flip-leaf-bottom {
    background:
        repeating-linear-gradient(125deg, rgba(255, 255, 255, .05) 0 1px, rgba(255, 255, 255, 0) 1px 3px),
        linear-gradient(180deg, #353c45, #22272e);
}
html[data-focus-theme="steel"] .wl-focus-digit::after { background: rgba(10, 12, 15, .85); box-shadow: 0 1px 0 rgba(255, 255, 255, .1); }
html[data-focus-theme="steel"] .wl-focus-clock-sep { color: #cfd6de; text-shadow: 0 0 8px color-mix(in srgb, var(--cat-color) 60%, transparent); }
/* 钢铁翻页器框：枪色金属 + 四角铆钉 */
html[data-focus-theme="steel"] .wl-focus-clock,
html[data-focus-theme="steel"] .wl-focus-fs-clock {
    background:
        radial-gradient(circle at 12px 50%, #c9d2da 0 2px, #5b636c 2px 3.2px, #2c3138 3.2px 4px, transparent 4.5px),
        radial-gradient(circle at calc(100% - 12px) 50%, #c9d2da 0 2px, #5b636c 2px 3.2px, #2c3138 3.2px 4px, transparent 4.5px),
        repeating-linear-gradient(125deg, rgba(255, 255, 255, .05) 0 1px, rgba(255, 255, 255, 0) 1px 3px),
        linear-gradient(160deg, rgba(58, 64, 72, .9), rgba(38, 43, 49, .92));
    border-color: #1d2127;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .5), inset 0 2px 0 rgba(255, 255, 255, .12), inset 0 0 0 2px rgba(120, 130, 140, .4);
}
/* 钢铁按钮 / 浮条 / 全屏 */
html[data-focus-theme="steel"] .wl-focus-timer-start {
    background:
        repeating-linear-gradient(125deg, rgba(255, 255, 255, .05) 0 1px, rgba(255, 255, 255, 0) 1px 3px),
        linear-gradient(180deg, #4a515a, #2c323a);
    color: #eef2f6;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .14), inset 0 -3px 6px rgba(0, 0, 0, .5), 0 8px 18px rgba(0, 0, 0, .4);
}
html[data-focus-theme="steel"] .wl-focus-timer-pause,
html[data-focus-theme="steel"] .wl-focus-timer-resume { color: #eef2f6; background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(150, 160, 170, .35); }
html[data-focus-theme="steel"] .wl-focus-timer-stop { color: color-mix(in srgb, var(--cat-color) 82%, #000); background: color-mix(in srgb, var(--cat-color) 18%, transparent); }
html[data-focus-theme="steel"] .wl-focus-float {
    background:
        repeating-linear-gradient(125deg, rgba(255, 255, 255, .05) 0 1px, rgba(255, 255, 255, 0) 1px 3px),
        linear-gradient(160deg, rgba(58, 64, 72, .92), rgba(38, 43, 49, .9));
    border-color: #1d2127;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .5), inset 0 2px 0 rgba(255, 255, 255, .12), inset 0 0 0 1.5px rgba(120, 130, 140, .4);
}
html[data-focus-theme="steel"] .wl-focus-fs-backdrop { background: radial-gradient(120% 90% at 50% 0%, rgba(70, 80, 95, .18), transparent 60%), #0a0c0f !important; }

/* —— 赛博霓虹 neon —— */
html[data-focus-theme="neon"] .wl-focus-timer {
    --wl-text: #eaf2ff;
    --wl-text-secondary: #9fb2cc;
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(80, 120, 255, .10), transparent 60%),
        linear-gradient(165deg, #0b0e15 0%, #131826 100%);
    border-color: rgba(120, 160, 255, .28);
    box-shadow: 0 0 0 1px rgba(120, 160, 255, .12), 0 18px 50px rgba(0, 0, 0, .55), inset 0 0 30px rgba(60, 90, 200, .08);
}
html[data-focus-theme="neon"] .wl-focus-timer.has-category,
html[data-focus-theme="neon"] .wl-focus-timer.is-running {
    border-color: rgba(120, 160, 255, .4);
    box-shadow: 0 0 0 1px rgba(120, 160, 255, .2), 0 18px 54px rgba(0, 0, 0, .6), inset 0 0 36px rgba(60, 90, 200, .12);
}
html[data-focus-theme="neon"] .wl-focus-timer-ring-track { stroke: rgba(120, 150, 210, .2); }
html[data-focus-theme="neon"] .wl-focus-timer-ring-prog { filter: drop-shadow(0 0 8px color-mix(in srgb, var(--cat-color) 85%, transparent)) !important; }
html[data-focus-theme="neon"] .wl-focus-timer-time { color: #eaf2ff; }
/* 霓虹翻页数字：暗玻璃底 + 分类色描边辉光 + 发光数字 */
html[data-focus-theme="neon"] .wl-focus-digit {
    background: linear-gradient(165deg, rgba(22, 28, 42, .95), rgba(10, 13, 22, .95));
    color: var(--cat-color);
    box-shadow: 0 0 16px color-mix(in srgb, var(--cat-color) 55%, transparent), inset 0 0 0 1px color-mix(in srgb, var(--cat-color) 55%, transparent), 0 8px 18px rgba(0, 0, 0, .5);
    text-shadow: 0 0 10px color-mix(in srgb, var(--cat-color) 85%, transparent);
}
html[data-focus-theme="neon"] .wl-focus-digit > span { text-shadow: 0 0 10px color-mix(in srgb, var(--cat-color) 85%, transparent); }
html[data-focus-theme="neon"] .flip-top,
html[data-focus-theme="neon"] .flip-leaf-top { background: linear-gradient(180deg, rgba(30, 38, 56, .95), rgba(16, 20, 32, .95)); }
html[data-focus-theme="neon"] .flip-bottom,
html[data-focus-theme="neon"] .flip-leaf-bottom { background: linear-gradient(180deg, rgba(16, 20, 32, .95), rgba(8, 10, 18, .95)); }
html[data-focus-theme="neon"] .wl-focus-digit::after { background: color-mix(in srgb, var(--cat-color) 70%, #000); opacity: .8; }
html[data-focus-theme="neon"] .wl-focus-clock-sep { color: var(--cat-color); text-shadow: 0 0 12px color-mix(in srgb, var(--cat-color) 90%, transparent); }
/* 霓虹按钮 / 控件 */
html[data-focus-theme="neon"] .wl-focus-timer-start {
    background: linear-gradient(180deg, color-mix(in srgb, var(--cat-color) 92%, #fff 8%), var(--cat-color));
    color: #fff;
    box-shadow: 0 0 18px color-mix(in srgb, var(--cat-color) 55%, transparent);
}
html[data-focus-theme="neon"] .wl-focus-timer-pause,
html[data-focus-theme="neon"] .wl-focus-timer-resume { color: #eaf2ff; background: rgba(120, 160, 255, .12); box-shadow: inset 0 0 0 1px rgba(120, 160, 255, .3); }
html[data-focus-theme="neon"] .wl-focus-timer-stop { color: var(--cat-color); background: color-mix(in srgb, var(--cat-color) 14%, transparent); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--cat-color) 45%, transparent); }
html[data-focus-theme="neon"] .wl-focus-timer-cat { color: #cdd9f0; border-color: rgba(120, 160, 255, .28); }
html[data-focus-theme="neon"] .wl-focus-timer-cat.is-selected { color: #fff; }
html[data-focus-theme="neon"] .wl-focus-timer-link-trigger,
html[data-focus-theme="neon"] .wl-focus-timer-note-input {
    color: #eaf2ff; background: rgba(255, 255, 255, .04); border-color: rgba(120, 160, 255, .28);
}
html[data-focus-theme="neon"] .wl-focus-timer-note-input::placeholder { color: rgba(159, 178, 204, .7); }
html[data-focus-theme="neon"] .wl-focus-timer-link-caret { color: #9fb2cc; }
/* 霓虹浮条 / 全屏 */
html[data-focus-theme="neon"] .wl-focus-float {
    background: linear-gradient(160deg, rgba(14, 18, 28, .82), rgba(10, 13, 20, .78));
    border-color: rgba(120, 160, 255, .32);
    box-shadow: 0 12px 38px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(120, 160, 255, .18);
}
html[data-focus-theme="neon"] .wl-focus-clock,
html[data-focus-theme="neon"] .wl-focus-fs-clock {
    background: linear-gradient(160deg, rgba(20, 26, 40, .7), rgba(10, 13, 22, .7));
    border-color: rgba(120, 160, 255, .3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(120, 160, 255, .2);
}
html[data-focus-theme="neon"] .wl-focus-fs-backdrop { background: radial-gradient(120% 90% at 50% 0%, rgba(40, 60, 140, .18), transparent 60%), #05060a !important; }
html[data-focus-theme="neon"] .wl-focus-fs-cat { color: #eaf2ff; }
html[data-focus-theme="neon"] .wl-focus-fs-pause { color: #eaf2ff; background: rgba(120, 160, 255, .16); }
html[data-focus-theme="neon"] .wl-focus-fs-stop { color: #eaf2ff; background: rgba(255, 255, 255, .08); }
html[data-focus-theme="neon"] .wl-focus-fs-stay { color: #eaf2ff; background: rgba(120, 160, 255, .16); }
html[data-focus-theme="neon"] .wl-focus-fs-stay.is-on { background: var(--cat-color); color: #fff; }
html[data-focus-theme="neon"] .wl-focus-float-pause { color: #eaf2ff; background: rgba(120, 160, 255, .16); }
html[data-focus-theme="neon"] .wl-focus-float-stop { color: #eaf2ff; background: rgba(255, 255, 255, .08); }
