@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";:root{--bg-primary-light: #f4f6f8;--bg-secondary-light: #ffffff;--bg-tertiary-light: #e9ecef;--text-primary-light: #212529;--text-secondary-light: #495057;--text-muted-light: #6c757d;--accent-primary-light: #007bff;--accent-secondary-light: #0056b3;--border-color-light: #dee2e6;--card-shadow-light: 0 2px 4px rgba(0,0,0,.05), 0 5px 15px rgba(0,0,0,.05);--success-light: #28a745;--error-light: #dc3545;--warning-light: #ffc107;--info-light: #17a2b8;--disabled-light: #64748b;--disabled-bg-light: #f1f3f5;--disabled-text-light: #adb5bd;--bg-primary-dark: #0d1117;--bg-secondary-dark: #161b22;--bg-tertiary-dark: #21262d;--text-primary-dark: #c9d1d9;--text-secondary-dark: #8b949e;--text-muted-dark: #586069;--accent-primary-dark: #58a6ff;--accent-secondary-dark: #1f6feb;--border-color-dark: #30363d;--card-shadow-dark: 0 2px 8px rgba(0,0,0,.2), 0 5px 20px rgba(0,0,0,.15);--success-dark: #3fb950;--error-dark: #f85149;--warning-dark: #d29922;--info-dark: #388bfd;--disabled-dark: #94a3b8;--disabled-bg-dark: #21262d;--disabled-text-dark: #484f58;--card-border-radius: 10px;--button-border-radius: 6px;--input-border-radius: 6px;--transition-fast: .15s ease-in-out;--transition-smooth: .25s ease-in-out}*{box-sizing:border-box;margin:0;padding:0}html{font-size:16px;min-height:100%;background-color:var(--bg-primary-light);-webkit-text-size-adjust:100%;text-size-adjust:100%}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;background-color:var(--bg-primary-light);color:var(--text-primary-light);line-height:1.6;padding:calc(20px + env(safe-area-inset-top)) calc(20px + env(safe-area-inset-right)) calc(20px + env(safe-area-inset-bottom)) calc(20px + env(safe-area-inset-left));transition:background-color var(--transition-smooth),color var(--transition-smooth);-webkit-font-smoothing:antialiased;min-height:100vh;min-height:100dvh}html[data-theme=dark]{background-color:var(--bg-primary-dark);color:var(--text-primary-dark)}html[data-theme=dark] body{background-color:inherit;color:inherit}html[data-theme=dark] header h1{color:var(--text-primary-dark)}html[data-theme=dark] header p.subtitle{color:var(--text-secondary-dark)}html[data-theme=dark] .card{background-color:var(--bg-secondary-dark);border-color:var(--border-color-dark);box-shadow:var(--card-shadow-dark)}html[data-theme=dark] .card h2,html[data-theme=dark] .card h3{color:var(--text-primary-dark)}html[data-theme=dark] label{color:var(--text-secondary-dark)}html[data-theme=dark] input[type=text],html[data-theme=dark] input[type=password],html[data-theme=dark] input[type=datetime-local],html[data-theme=dark] input[type=number],html[data-theme=dark] input[type=email],html[data-theme=dark] textarea,html[data-theme=dark] select{background-color:var(--bg-tertiary-dark);color:var(--text-primary-dark);border-color:var(--border-color-dark)}html[data-theme=dark] input::placeholder{color:var(--text-muted-dark)}html[data-theme=dark] input:focus,html[data-theme=dark] textarea:focus,html[data-theme=dark] select:focus{border-color:var(--accent-primary-dark);box-shadow:0 0 0 3px #58a6ff40;background-color:var(--bg-secondary-dark)}html[data-theme=dark] input[type=datetime-local]::-webkit-calendar-picker-indicator{filter:invert(1)}html[data-theme=dark] button{background-color:var(--accent-primary-dark);color:var(--bg-primary-dark)}html[data-theme=dark] button:hover{background-color:var(--accent-secondary-dark)}html[data-theme=dark] button:disabled{background-color:var(--disabled-bg-dark);color:var(--disabled-text-dark)}html[data-theme=dark] .button-secondary{background-color:transparent;color:var(--accent-primary-dark);border:1px solid var(--accent-primary-dark)}html[data-theme=dark] .button-secondary:hover{background-color:#58a6ff1a}html[data-theme=dark] .button-danger{background-color:var(--error-dark);color:var(--bg-primary-dark)}html[data-theme=dark] .button-danger:hover{background-color:#d9363e}html[data-theme=dark] .message.success{background-color:#3fb95026;color:var(--success-dark);border-color:#3fb9504d}html[data-theme=dark] .message.error{background-color:#f8514926;color:var(--error-dark);border-color:#f851494d}html[data-theme=dark] .message.info{background-color:#388bfd26;color:var(--info-dark);border-color:#388bfd4d}html[data-theme=dark] .message.warning{background-color:#d2992226;color:var(--warning-dark);border-color:#d299224d}html[data-theme=dark] table{border-color:var(--border-color-dark)}html[data-theme=dark] th,html[data-theme=dark] td{border-bottom-color:var(--border-color-dark)}html[data-theme=dark] th{background-color:var(--bg-tertiary-dark);color:var(--text-primary-dark)}html[data-theme=dark] .status-valid{color:var(--success-dark)}html[data-theme=dark] .status-disabled{color:var(--disabled-text-dark)}html[data-theme=dark] .status-expired{color:var(--error-dark)}.container{width:100%;max-width:900px;margin:auto;padding:20px}#route-admin .container{max-width:1120px}header{text-align:center;margin-bottom:30px;padding-top:20px}header h1{font-size:2.25rem;font-weight:700;color:var(--text-primary-light);margin-bottom:8px}header p.subtitle{font-size:1rem;color:var(--text-muted-light)}.card{background-color:var(--bg-secondary-light);border-radius:var(--card-border-radius);box-shadow:var(--card-shadow-light);padding:25px;margin-bottom:25px;border:1px solid var(--border-color-light);transition:background-color var(--transition-smooth),border-color var(--transition-smooth),box-shadow var(--transition-smooth)}.card h2{font-size:1.25rem;font-weight:600;margin-bottom:20px;color:var(--text-primary-light)}.card h3{font-size:1.05rem;font-weight:600;margin-bottom:14px;color:var(--text-primary-light)}.header-actions-container{position:fixed;top:20px;right:20px;display:flex;align-items:center;gap:4px;background:#ffffffc2;border:1px solid rgba(148,163,184,.34);border-radius:999px;padding:5px;box-shadow:0 14px 34px #0f172a21,inset 0 1px #ffffffb8;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);z-index:1000}html[data-theme=dark] .header-actions-container{background:#0d1117c2;border-color:#8b949e4d;box-shadow:0 16px 38px #00000057,inset 0 1px #ffffff0f}.action-btn{position:relative;background:transparent;border:none;border-radius:50%;width:38px;height:38px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--text-secondary-light);transition:background-color var(--transition-fast),color var(--transition-fast);padding:0}.action-btn:hover{background:#007bff1a;color:var(--accent-primary-light)}html[data-theme=dark] .action-btn{color:var(--text-secondary-dark)}html[data-theme=dark] .header-actions-container .action-btn,html[data-theme=dark] .header-actions-container .action-btn:hover{background:transparent}html[data-theme=dark] .action-btn:hover{color:var(--accent-primary-dark)}.action-btn svg{width:20px;height:20px}.theme-icon{width:18px;height:18px;display:none}html:not([data-theme=dark]):not([data-theme=light]) .theme-icon-auto,html[data-theme=light] .theme-icon-sun,html[data-theme=dark] .theme-icon-moon{display:block}label{display:block;font-weight:500;margin-bottom:6px;font-size:.875rem;color:var(--text-secondary-light)}input[type=text],input[type=password],input[type=datetime-local],input[type=number],input[type=email],textarea,select{width:100%;padding:10px 12px;margin-bottom:15px;border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);background-color:var(--bg-tertiary-light);color:var(--text-primary-light);font-size:16px;transition:border-color var(--transition-fast),background-color var(--transition-fast),box-shadow var(--transition-fast)}input:focus,textarea:focus,select:focus{outline:none;border-color:var(--accent-primary-light);box-shadow:0 0 0 2px #007aff33;background-color:var(--bg-secondary-light)}input[type=checkbox]{width:18px;height:18px;accent-color:var(--accent-primary-light);margin-bottom:0}html[data-theme=dark] input[type=checkbox]{accent-color:var(--accent-primary-dark)}input:disabled,select:disabled,textarea:disabled{opacity:.5;cursor:not-allowed}input.is-loading{background-image:linear-gradient(90deg,transparent 0%,rgba(0,123,255,.18) 45%,transparent 90%);background-size:220% 100%;animation:inputLoading 1.1s linear infinite}html[data-theme=dark] input.is-loading{background-image:linear-gradient(90deg,transparent 0%,rgba(88,166,255,.2) 45%,transparent 90%)}button{padding:10px 18px;background-color:var(--accent-primary-light);color:#fff;border:none;border-radius:var(--button-border-radius);cursor:pointer;font-weight:500;font-size:16px;transition:background-color var(--transition-fast),transform var(--transition-fast),box-shadow var(--transition-fast);display:inline-flex;align-items:center;justify-content:center;gap:6px}button:hover{background-color:var(--accent-secondary-light);box-shadow:0 1px 3px #007aff26;transform:translateY(-1px)}button:active{transform:translateY(0);box-shadow:none}button:disabled{background-color:var(--disabled-bg-light);color:var(--disabled-text-light);cursor:not-allowed;box-shadow:none;transform:none}button.is-loading:before{content:"";width:14px;height:14px;border:2px solid currentColor;border-right-color:transparent;border-radius:50%;animation:rotate4 .8s linear infinite}.button-secondary{background-color:var(--bg-secondary-light);color:var(--accent-primary-light);border:1px solid var(--border-color-light)}.button-secondary:hover{background-color:var(--bg-tertiary-light);color:var(--accent-secondary-light);border-color:var(--accent-primary-light)}.button-danger{background-color:var(--error-light)}.button-danger:hover{background-color:#c82333}.w-100{width:100%}.message{padding:10px 15px;margin-top:15px;margin-bottom:15px;border-radius:var(--input-border-radius);font-size:.875rem;border:1px solid transparent}.message.success{background-color:#e6f7ec;color:#0f5132;border-color:#badbcc}.message.error{background-color:#f8d7da;color:#721c24;border-color:#f5c6cb}.message.info{background-color:#cce5ff;color:#004085;border-color:#b8daff}.message.warning{background-color:#fff3cd;color:#856404;border-color:#ffeeba}.input-group{display:flex;margin-bottom:15px}.input-group input{flex-grow:1;border-top-right-radius:0;border-bottom-right-radius:0;margin-bottom:0;border-right:none}.input-group button{border-top-left-radius:0;border-bottom-left-radius:0;white-space:nowrap}.input-group input:focus+button{border-left-color:var(--accent-primary-light);z-index:1}.checkbox-row{margin-top:8px;display:flex;align-items:center;gap:8px;color:var(--text-secondary-light);font-size:.9rem}.choice-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:10px;margin-top:8px}.choice-grid-compact{grid-template-columns:repeat(auto-fit,minmax(180px,1fr))}.choice-card{position:relative;display:grid;grid-template-columns:34px minmax(0,1fr) 20px;align-items:center;gap:10px;min-height:76px;padding:12px;margin:0;border:1px solid var(--border-color-light);border-radius:8px;background:var(--bg-secondary-light);color:var(--text-secondary-light);cursor:pointer;transition:border-color var(--transition-fast),background-color var(--transition-fast),box-shadow var(--transition-fast),transform var(--transition-fast)}.choice-card:hover{border-color:#007bff73;background:#007bff0a;transform:translateY(-1px);box-shadow:0 8px 22px #0f172a14}.choice-card input{position:absolute;opacity:0;pointer-events:none}.choice-icon{width:34px;height:34px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;color:var(--accent-primary-light);background:#007bff1a}.choice-icon svg{width:18px;height:18px}.choice-copy{display:grid;gap:2px;min-width:0}.choice-copy strong{color:var(--text-primary-light);font-size:.92rem;font-weight:650;line-height:1.25}.choice-copy small{color:var(--text-muted-light);font-size:.78rem;line-height:1.25}.choice-check{width:20px;height:20px;border-radius:50%;border:1px solid var(--border-color-light);background:var(--bg-tertiary-light);box-shadow:inset 0 0 0 3px var(--bg-secondary-light)}.choice-card.is-checked{border-color:#28a74594;background:#28a74514;box-shadow:0 10px 24px #28a7451a}.choice-card.is-checked .choice-icon{color:#fff;background:var(--success-light)}.choice-card.is-checked .choice-check{border-color:var(--success-light);background:var(--success-light)}.choice-card.is-checked .choice-check:after{content:"";display:block;width:9px;height:5px;margin:5px 0 0 4px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg)}.choice-card.is-disabled{cursor:not-allowed;opacity:.62;transform:none;box-shadow:none}html[data-theme=dark] .choice-card{border-color:var(--border-color-dark);background:#161b22bd;color:var(--text-secondary-dark)}html[data-theme=dark] .choice-card:hover{border-color:#58a6ff80;background:#58a6ff14;box-shadow:0 10px 24px #0000003d}html[data-theme=dark] .choice-icon{color:var(--accent-primary-dark);background:#58a6ff21}html[data-theme=dark] .choice-copy strong{color:var(--text-primary-dark)}html[data-theme=dark] .choice-copy small{color:var(--text-muted-dark)}html[data-theme=dark] .choice-check{border-color:var(--border-color-dark);background:var(--bg-tertiary-dark);box-shadow:inset 0 0 0 3px var(--bg-secondary-dark)}html[data-theme=dark] .choice-card.is-checked{border-color:#3fb95094;background:#3fb9501a;box-shadow:0 10px 24px #00000038}html[data-theme=dark] .choice-card.is-checked .choice-icon,html[data-theme=dark] .choice-card.is-checked .choice-check{background:var(--success-dark);border-color:var(--success-dark);color:var(--bg-primary-dark)}.action-row,.subnav{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}.subnav{margin-bottom:16px}.admin-tab{display:none}.admin-tab.is-active{display:block}.subnav-btn{padding:8px 16px;border:1px solid var(--border-color-light);border-radius:var(--button-border-radius);background:var(--bg-secondary-light);color:var(--text-secondary-light);cursor:pointer;font-size:.875rem;transition:all var(--transition-fast)}.subnav-btn:hover{background:var(--bg-tertiary-light)}.subnav-btn.is-active{background:var(--bg-tertiary-light);border-color:var(--accent-primary-light);color:var(--accent-primary-light);font-weight:600}html[data-theme=dark] .subnav-btn{background:var(--bg-secondary-dark);color:var(--text-secondary-dark)}html[data-theme=dark] .subnav-btn.is-active{background:var(--bg-tertiary-dark);border-color:var(--accent-primary-dark);color:var(--accent-primary-dark)}.field{margin-top:14px;display:grid;gap:6px}.field-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.toggle-field{align-items:center;grid-template-columns:1fr auto}.checkbox-option{display:flex;align-items:center;gap:8px;margin-top:8px;color:var(--muted-text);font-weight:600}.checkbox-option input{width:auto}.field-inline-head{display:flex;align-items:center;justify-content:space-between;gap:10px}.field-inline-head label{margin-bottom:0}.proxy-title-checkbox{vertical-align:middle;margin-left:8px;cursor:pointer}.copy-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}.task-queue-toolbar{display:grid;grid-template-columns:minmax(0,1fr) auto auto;gap:10px;align-items:start}.task-queue-toolbar select{margin-bottom:0}.task-queue-list{display:grid;gap:8px}.task-queue-empty,.task-queue-item{border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);background:var(--bg-tertiary-light);padding:10px 12px}html[data-theme=dark] .task-queue-empty,html[data-theme=dark] .task-queue-item{border-color:var(--border-color-dark);background:var(--bg-tertiary-dark)}.task-queue-empty{color:var(--text-muted-light);font-size:.875rem}html[data-theme=dark] .task-queue-empty{color:var(--text-muted-dark)}.task-queue-item{display:grid;grid-template-columns:auto auto minmax(120px,1fr) auto auto;gap:10px;align-items:center}.task-queue-drag-handle{width:34px;height:34px;min-width:34px;padding:0;border-radius:6px;background:transparent;color:var(--text-muted-light);cursor:grab;box-shadow:none}.task-queue-drag-handle,.task-queue-drag-handle:hover,.task-queue-drag-handle:active{background-color:transparent}.task-queue-drag-handle:hover{background:#007bff14;color:var(--accent-primary-light);box-shadow:none;transform:none}.task-queue-drag-handle:hover{background-color:#007bff14}.task-queue-drag-handle:active{cursor:grabbing}.task-queue-drag-handle svg{width:16px;height:16px}.task-queue-item.is-drop-target{outline:2px dashed rgba(0,123,255,.35);outline-offset:2px}.task-queue-drag-handle.is-dragging{opacity:.5}html[data-theme=dark] .task-queue-drag-handle{color:var(--text-muted-dark)}html[data-theme=dark] .task-queue-drag-handle:hover{background-color:#58a6ff1f;color:var(--accent-primary-dark)}.task-queue-order{font-family:ui-monospace,SFMono-Regular,Consolas,monospace;color:var(--text-muted-light);font-size:.85rem}html[data-theme=dark] .task-queue-order{color:var(--text-muted-dark)}.task-queue-item strong{color:var(--text-primary-light);font-size:.95rem}html[data-theme=dark] .task-queue-item strong{color:var(--text-primary-dark)}.task-queue-priority{color:var(--text-muted-light);font-size:.82rem;white-space:nowrap}html[data-theme=dark] .task-queue-priority{color:var(--text-muted-dark)}.task-queue-actions{display:flex;gap:6px;flex-wrap:nowrap}.task-queue-actions button{padding:6px 10px;font-size:13px;white-space:nowrap}.pagination-bar{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;margin-top:12px}.pagination-summary,.pagination-page{color:var(--text-muted-light);font-size:.875rem}.pagination-size{width:auto;margin-bottom:0}.pagination-bar .button-secondary,.pagination-bar select{margin-bottom:0}.key-page-btn{padding:6px 12px;font-size:13px}.empty-result{padding:16px 0;color:var(--text-muted-light)}.key-login-tag,.key-picker-login-tag{display:inline-flex;align-items:center;justify-content:center;min-width:56px;padding:2px 8px;margin-right:8px;border-radius:999px;font-size:12px;font-weight:600;vertical-align:middle}.key-login-tag.is-on,.key-picker-login-tag.is-on{background:#28a74524;color:var(--success-light)}.key-login-tag.is-off,.key-picker-login-tag.is-off{background:#dc35451f;color:var(--error-light)}html[data-theme=dark] .key-login-tag.is-on,html[data-theme=dark] .key-picker-login-tag.is-on{background:#3fb95026;color:var(--success-dark)}html[data-theme=dark] .key-login-tag.is-off,html[data-theme=dark] .key-picker-login-tag.is-off{background:#f8514926;color:var(--error-dark)}html[data-theme=dark] .pagination-summary,html[data-theme=dark] .pagination-page,html[data-theme=dark] .empty-result{color:var(--text-muted-dark)}.content-account-bar{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:12px;padding:12px 14px;border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);background:var(--bg-tertiary-light)}html[data-theme=dark] .content-account-bar{border-color:var(--border-color-dark);background:var(--bg-tertiary-dark)}.content-account-bar span{color:var(--text-muted-light);font-size:.86rem}html[data-theme=dark] .content-account-bar span{color:var(--text-muted-dark)}.content-account-bar strong{color:var(--text-primary-light);text-align:right;overflow-wrap:anywhere}html[data-theme=dark] .content-account-bar strong{color:var(--text-primary-dark)}.content-list-header{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}.content-select-all{margin-top:0}.content-list-result{display:grid;gap:10px;margin-top:14px}.content-list-result.is-error .content-empty{border-color:#dc354559;background:#dc35450f;color:var(--error-light)}html[data-theme=dark] .content-list-result.is-error .content-empty{border-color:#f8514959;background:#f8514914;color:var(--error-dark)}.content-empty,.content-row{border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);background:var(--bg-tertiary-light);padding:12px}html[data-theme=dark] .content-empty,html[data-theme=dark] .content-row{border-color:var(--border-color-dark);background:var(--bg-tertiary-dark)}.content-empty{color:var(--text-muted-light);font-size:.9rem}html[data-theme=dark] .content-empty{color:var(--text-muted-dark)}.content-row{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:12px;align-items:center}.content-row.is-readonly{opacity:.72}.content-row.is-readonly .content-title{font-weight:500}.content-check{display:flex;align-items:center;justify-content:center}.content-main{min-width:0}.content-title{color:var(--text-primary-light);font-weight:600;line-height:1.4;overflow-wrap:anywhere}html[data-theme=dark] .content-title{color:var(--text-primary-dark)}.content-meta{display:flex;gap:6px;flex-wrap:wrap;margin-top:6px;color:var(--text-muted-light);font-size:.82rem}html[data-theme=dark] .content-meta{color:var(--text-muted-dark)}.content-meta span{color:var(--border-color-light)}html[data-theme=dark] .content-meta span{color:var(--border-color-dark)}.content-delete-one{white-space:nowrap;padding:7px 12px;font-size:13px}.result-box{min-height:60px;margin-top:14px;border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);background:var(--bg-tertiary-light);padding:14px;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:13px;line-height:1.5;white-space:pre-wrap;word-break:break-word;color:var(--text-secondary-light)}html[data-theme=dark] .result-box{background:var(--bg-tertiary-dark);border-color:var(--border-color-dark);color:var(--text-secondary-dark)}.result-box pre{margin:0;white-space:pre-wrap;word-break:break-word;font-family:inherit;font-size:inherit}.user-config-preview{min-height:76px;margin-top:8px;border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);background:var(--bg-secondary-light);padding:14px;color:var(--text-secondary-light);font-size:.9rem}html[data-theme=dark] .user-config-preview{background:var(--bg-secondary-dark);border-color:var(--border-color-dark);color:var(--text-secondary-dark)}.user-config-preview.is-empty{color:var(--text-muted-light);background:var(--bg-tertiary-light)}html[data-theme=dark] .user-config-preview.is-empty{color:var(--text-muted-dark);background:var(--bg-tertiary-dark)}.user-config-preview.is-error{border-color:#dc354559;background:#dc35450f}html[data-theme=dark] .user-config-preview.is-error{border-color:#f8514959;background:#f8514914}.config-preview-status{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:10px}.config-preview-status strong{color:var(--text-primary-light)}html[data-theme=dark] .config-preview-status strong{color:var(--text-primary-dark)}.config-preview-key-status{color:var(--text-muted-light);font-size:.82rem}html[data-theme=dark] .config-preview-key-status{color:var(--text-muted-dark)}.config-dot{width:9px;height:9px;border-radius:50%;background:var(--text-muted-light)}.config-dot.is-on{background:var(--success-light)}.config-dot.is-off,.config-dot.is-error{background:var(--error-light)}html[data-theme=dark] .config-dot.is-on{background:var(--success-dark)}html[data-theme=dark] .config-dot.is-off,html[data-theme=dark] .config-dot.is-error{background:var(--error-dark)}.config-preview-options{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:8px}.config-preview-options span{display:inline-flex;align-items:center;min-height:28px;padding:4px 10px;border:1px solid var(--border-color-light);border-radius:999px;color:var(--text-muted-light);background:var(--bg-tertiary-light);font-size:.84rem}.config-preview-options span.is-enabled{color:var(--success-light);border-color:#28a74559;background:#28a7451a}html[data-theme=dark] .config-preview-options span{color:var(--text-muted-dark);border-color:var(--border-color-dark);background:var(--bg-tertiary-dark)}html[data-theme=dark] .config-preview-options span.is-enabled{color:var(--success-dark);border-color:#3fb95059;background:#3fb9501f}.user-config-preview p{margin:0;color:var(--text-muted-light)}html[data-theme=dark] .user-config-preview p{color:var(--text-muted-dark)}.config-preview-loading{display:flex;align-items:center;gap:10px;min-height:46px}.inline-spinner{width:18px;height:18px;border:2px solid var(--accent-primary-light);border-right-color:transparent;border-radius:50%;animation:rotate4 .8s linear infinite}html[data-theme=dark] .inline-spinner{border-color:var(--accent-primary-dark);border-right-color:transparent}table{width:100%;border-collapse:separate;border-spacing:0;margin-top:15px;font-size:.875rem;border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);overflow:hidden}th,td{padding:10px 12px;text-align:left;border-bottom:1px solid var(--border-color-light)}th{background-color:var(--bg-tertiary-light);font-weight:600;color:var(--text-primary-light)}tr:last-child td{border-bottom:none}td.key-actions{display:flex;gap:10px;flex-wrap:nowrap;align-items:center;white-space:nowrap}td.key-actions button{font-size:12px;padding:4px 10px;margin:0;flex:0 0 auto}.key-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}.user-bottom-actions{margin-top:1rem}.badge{display:inline-block;padding:2px 8px;border-radius:12px;font-size:12px;font-weight:500}.badge-valid{background:#d1fae5;color:#065f46}.badge-expired{background:#fee2e2;color:#991b1b}.badge-disabled{background:#fef3c7;color:#92400e}.badge-exhausted{background:#fee2e2;color:#991b1b}html[data-theme=dark] .badge-valid{background:#064e3b;color:#6ee7b7}html[data-theme=dark] .badge-expired,html[data-theme=dark] .badge-exhausted{background:#7f1d1d;color:#fca5a5}html[data-theme=dark] .badge-disabled{background:#78350f;color:#fcd34d}.expiry-cell{display:inline-flex;align-items:center;gap:8px;white-space:nowrap}.expiry-badge{flex:0 0 auto}.d-none{display:none!important}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:1rem}.mb-2{margin-bottom:.5rem}#route-home,#route-admin{animation:routeFadeIn .3s ease forwards}@keyframes routeFadeIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.auth-success-transition{position:fixed;inset:0;z-index:3000;display:grid;place-items:center;padding:24px;background:radial-gradient(circle at 50% 42%,rgba(40,167,69,.22),transparent 34%),#f4f6f8b8;backdrop-filter:blur(18px) saturate(1.15);-webkit-backdrop-filter:blur(18px) saturate(1.15);opacity:0;transition:opacity .32s ease}.auth-success-transition.is-visible{opacity:1}.auth-success-transition.is-leaving{opacity:0}.auth-success-card{width:min(420px,calc(100vw - 48px));border:1px solid rgba(255,255,255,.64);border-radius:var(--card-border-radius);padding:24px;display:grid;grid-template-columns:auto minmax(0,1fr);gap:18px;align-items:center;background:#ffffffe0;box-shadow:0 28px 80px #0f172a2e,inset 0 1px #ffffffb8;transform:translateY(14px) scale(.97);transition:transform .48s cubic-bezier(.18,.89,.32,1.28)}.auth-success-transition.is-visible .auth-success-card{transform:translateY(0) scale(1)}.auth-success-ring{width:68px;height:68px;border-radius:50%;display:grid;place-items:center;color:var(--success-light);background:linear-gradient(145deg,#28a74524,#007bff1a);box-shadow:inset 0 0 0 1px #28a7452e,0 12px 30px #28a7452e}.auth-success-ring svg{width:48px;height:48px}.auth-success-circle{stroke:currentColor;stroke-width:3;stroke-dasharray:151;stroke-dashoffset:151;animation:authCircle .55s ease forwards .12s}.auth-success-check{stroke:currentColor;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:34;stroke-dashoffset:34;animation:authCheck .38s ease forwards .54s}.auth-success-eyebrow{margin:0 0 4px;color:var(--success-light);font-size:.78rem;font-weight:700}.auth-success-card h2{margin:0 0 6px;color:var(--text-primary-light);font-size:1.35rem;line-height:1.2}.auth-success-card p:last-child{margin:0;color:var(--text-secondary-light);font-size:.94rem}html[data-theme=dark] .auth-success-transition{background:radial-gradient(circle at 50% 42%,rgba(63,185,80,.22),transparent 34%),#0d1117b8}html[data-theme=dark] .auth-success-card{background:#161b22e6;border-color:#8b949e42;box-shadow:0 30px 90px #0000006b,inset 0 1px #ffffff0f}html[data-theme=dark] .auth-success-ring{color:var(--success-dark);background:linear-gradient(145deg,#3fb95024,#58a6ff1a);box-shadow:inset 0 0 0 1px #3fb9502e,0 12px 30px #3fb95024}html[data-theme=dark] .auth-success-eyebrow{color:var(--success-dark)}html[data-theme=dark] .auth-success-card h2{color:var(--text-primary-dark)}html[data-theme=dark] .auth-success-card p:last-child{color:var(--text-secondary-dark)}.content-enter{opacity:0;transform:translateY(18px) scale(.985)}.content-enter.content-enter-active{opacity:1;transform:translateY(0) scale(1);transition:opacity .46s ease,transform .46s cubic-bezier(.2,.8,.2,1)}.welcome-panel{--panel-accent-rgb: 40,167,69;--panel-alt-rgb: 0,123,255;--panel-status: var(--success-light);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:18px;padding:22px 24px;border:1px solid rgba(var(--panel-accent-rgb),.22);border-radius:16px;background:linear-gradient(120deg,rgba(var(--panel-alt-rgb),.12),rgba(var(--panel-accent-rgb),.13),rgba(var(--panel-alt-rgb),.1),rgba(var(--panel-accent-rgb),.13)),var(--bg-secondary-light);background-size:240% 240%,auto;box-shadow:0 22px 52px #0f172a1a,inset 0 1px #ffffffb8;animation:welcomeGradientFlow 8s ease-in-out infinite}.welcome-panel.is-bound{border-color:#28a74552;box-shadow:0 24px 58px #0f172a1f,0 0 0 1px #28a74514,inset 0 1px #ffffffc7}.welcome-panel.is-expired{--panel-accent-rgb: 217,119,6;--panel-alt-rgb: 245,158,11;--panel-status: #d97706;border-color:#d9770657;box-shadow:0 24px 58px #92400e1f,0 0 0 1px #d9770614,inset 0 1px #ffffffc7}.welcome-panel.is-disabled{--panel-accent-rgb: 100,116,139;--panel-alt-rgb: 148,163,184;--panel-status: var(--disabled-light);border-color:#64748b52;box-shadow:0 24px 58px #3341551c,0 0 0 1px #64748b14,inset 0 1px #ffffffc7}.welcome-panel:before{content:"";position:absolute;inset:0;background:linear-gradient(rgba(255,255,255,.34) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.28) 1px,transparent 1px);background-size:24px 24px;-webkit-mask-image:linear-gradient(90deg,rgba(0,0,0,.7),transparent 72%);mask-image:linear-gradient(90deg,rgba(0,0,0,.7),transparent 72%);pointer-events:none}.welcome-panel:after{content:"";position:absolute;top:-28%;bottom:-28%;left:-45%;width:38%;transform:skew(-18deg);background:linear-gradient(90deg,transparent,rgba(255,255,255,.62),transparent);animation:welcomeSheen 3.2s cubic-bezier(.4,0,.2,1) .2s infinite;pointer-events:none}.welcome-copy{position:relative;z-index:1;min-width:0;padding-right:124px}.welcome-kicker{display:inline-flex;align-items:center;margin-bottom:8px;color:var(--panel-status);font-size:.8rem;font-weight:700;text-transform:uppercase}.welcome-copy h2{margin:0;color:var(--text-primary-light);font-size:1.5rem;line-height:1.2}.welcome-copy p{margin:8px 0 0;color:var(--text-secondary-light);font-size:.95rem}.welcome-status{position:absolute;top:18px;right:20px;z-index:1;display:inline-flex;align-items:center;gap:8px;flex:0 0 auto;padding:9px 13px;border-radius:999px;background:#ffffffc7;border:1px solid rgba(var(--panel-accent-rgb),.28);color:var(--panel-status);font-size:.82rem;font-weight:700;box-shadow:0 10px 24px #0f172a14,inset 0 1px #ffffffd1;backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}.welcome-status svg{width:16px;height:16px;flex:0 0 auto}html[data-theme=dark] .welcome-panel{--panel-accent-rgb: 63,185,80;--panel-alt-rgb: 88,166,255;--panel-status: var(--success-dark);border-color:#58a6ff38;background:linear-gradient(120deg,rgba(var(--panel-alt-rgb),.14),rgba(var(--panel-accent-rgb),.11),rgba(var(--panel-alt-rgb),.1),rgba(var(--panel-accent-rgb),.12)),var(--bg-secondary-dark);background-size:240% 240%,auto;box-shadow:0 22px 58px #00000052,inset 0 1px #ffffff0f}html[data-theme=dark] .welcome-panel.is-bound{border-color:#3fb9504d;box-shadow:0 24px 64px #0000005c,0 0 0 1px #3fb95014,inset 0 1px #ffffff0f}html[data-theme=dark] .welcome-panel.is-expired{--panel-accent-rgb: 240,180,41;--panel-alt-rgb: 217,119,6;--panel-status: #f0b429;border-color:#f0b4294d;box-shadow:0 24px 64px #0000005c,0 0 0 1px #f0b42914,inset 0 1px #ffffff0f}html[data-theme=dark] .welcome-panel.is-disabled{--panel-accent-rgb: 148,163,184;--panel-alt-rgb: 71,85,105;--panel-status: var(--disabled-dark);border-color:#94a3b847;box-shadow:0 24px 64px #00000057,0 0 0 1px #94a3b812,inset 0 1px #ffffff0f}html[data-theme=dark] .welcome-panel:before{background:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px)}html[data-theme=dark] .welcome-panel:after{background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent)}html[data-theme=dark] .welcome-kicker,html[data-theme=dark] .welcome-status{color:var(--panel-status)}html[data-theme=dark] .welcome-copy h2{color:var(--text-primary-dark)}html[data-theme=dark] .welcome-copy p{color:var(--text-secondary-dark)}html[data-theme=dark] .welcome-status{background:#0d111794;border-color:rgba(var(--panel-accent-rgb),.24)}@keyframes authCircle{to{stroke-dashoffset:0}}@keyframes authCheck{to{stroke-dashoffset:0}}@keyframes welcomeSheen{0%{left:-45%;opacity:0}14%{opacity:1}52%{opacity:1}72%{left:125%;opacity:0}to{left:125%;opacity:0}}@keyframes welcomeGradientFlow{0%,to{background-position:0% 50%,0 0}50%{background-position:100% 50%,0 0}}.user-key-display{margin-top:10px;display:inline-flex;align-items:center;gap:6px;font-size:13px;color:var(--accent-primary-light);font-family:ui-monospace,SFMono-Regular,Consolas,monospace;background:#007bff14;padding:4px 12px;border-radius:20px;border:1px solid rgba(0,123,255,.2)}html[data-theme=dark] .user-key-display{color:var(--accent-primary-dark);background:#58a6ff1a;border-color:#58a6ff40}.user-key-display svg{width:14px;height:14px;flex-shrink:0}.welcome-panel .user-key-display{width:fit-content;max-width:100%;margin-top:14px;padding:9px 12px;gap:9px;border-radius:8px;border-color:rgba(var(--panel-accent-rgb),.24);background:#ffffff94;color:var(--text-primary-light);box-shadow:0 10px 26px #0f172a12,inset 0 1px #ffffff9e;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}.welcome-panel .user-key-display:before{content:"当前 Key";flex:0 0 auto;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--text-muted-light);font-size:.72rem;font-weight:700}.welcome-panel .user-key-display svg{width:18px;height:18px;padding:3px;border-radius:6px;color:var(--panel-status);background:rgba(var(--panel-accent-rgb),.1)}.welcome-panel .user-key-display span{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:0}html[data-theme=dark] .welcome-panel .user-key-display{border-color:rgba(var(--panel-accent-rgb),.28);background:#0d111780;color:var(--text-primary-dark);box-shadow:0 12px 30px #00000038,inset 0 1px #ffffff0f}html[data-theme=dark] .welcome-panel .user-key-display:before{color:var(--text-muted-dark)}html[data-theme=dark] .welcome-panel .user-key-display svg{color:var(--panel-status);background:rgba(var(--panel-accent-rgb),.12)}.qr-preview{margin:14px 0;text-align:center}.qr-preview img{max-width:280px;border-radius:var(--input-border-radius);border:1px solid var(--border-color-light);background:#fff;padding:10px}.key-info-item{display:flex;align-items:center;flex-wrap:wrap;gap:6px 8px;padding:8px 15px;margin-bottom:5px;background-color:var(--bg-tertiary-light);border-radius:var(--input-border-radius);border:1px solid var(--border-color-light)}html[data-theme=dark] .key-info-item{background-color:var(--bg-tertiary-dark);border-color:var(--border-color-dark)}.key-info-item:last-child{margin-bottom:0}.key-info-label{font-weight:500;color:var(--text-secondary-light);margin-right:2px;white-space:nowrap}.key-expiry-item{align-items:flex-start}.key-expiry-value{min-width:0;overflow-wrap:anywhere;line-height:1.35}html[data-theme=dark] .key-info-label{color:var(--text-secondary-dark)}.key-status{font-weight:600}.key-status.valid{color:var(--success-light)}.key-status.expired,.key-status.invalid{color:var(--error-light)}html[data-theme=dark] .key-status.valid{color:var(--success-dark)}html[data-theme=dark] .key-status.expired,html[data-theme=dark] .key-status.invalid{color:var(--error-dark)}.countdown-tag{display:inline-flex;align-items:center;max-width:100%;padding:3px 8px;border-radius:4px;font-size:.75rem;font-weight:500;background-color:#007bff1a;color:var(--accent-primary-light);border:1px solid rgba(0,123,255,.3);white-space:normal;overflow-wrap:anywhere;line-height:1.35}html[data-theme=dark] .countdown-tag{background-color:#58a6ff1a;color:var(--accent-primary-dark);border-color:#58a6ff4d}.icon-lib{display:block;flex-shrink:0}.qr-instruction-card{width:100%;border-radius:var(--card-border-radius);padding:15px 20px;background-color:var(--bg-secondary-light);box-shadow:var(--card-shadow-light);display:flex;align-items:center;gap:15px;margin-bottom:20px;border:1px solid var(--border-color-light)}html[data-theme=dark] .qr-instruction-card{background-color:var(--bg-secondary-dark);box-shadow:var(--card-shadow-dark);border-color:var(--border-color-dark)}.qr-instruction-icon-container{width:40px;height:40px;min-width:40px;display:flex;justify-content:center;align-items:center;background-color:#28a7451a;border-radius:50%}html[data-theme=dark] .qr-instruction-icon-container{background-color:#3fb9501a}.qr-instruction-icon{width:20px;height:20px;color:var(--success-light)}html[data-theme=dark] .qr-instruction-icon{color:var(--success-dark)}.qr-instruction-text-container{display:flex;flex-direction:column;justify-content:center;flex-grow:1}.qr-instruction-text{color:var(--text-primary-light);font-size:1rem;font-weight:600;margin:0}.qr-instruction-sub-text{font-size:.85rem;color:var(--text-muted-light);margin-top:3px}html[data-theme=dark] .qr-instruction-text{color:var(--text-primary-dark)}html[data-theme=dark] .qr-instruction-sub-text{color:var(--text-muted-dark)}.timeline-container{position:relative;opacity:0;transition:opacity .5s ease-in-out;margin-left:20px}.timeline-container.visible{opacity:1}.timeline-container:before{content:"";position:absolute;left:19px;top:10px;bottom:10px;width:2px;background-color:var(--border-color-light);border-radius:2px;transform-origin:top;animation:grow-line .5s cubic-bezier(.25,.1,.25,1) forwards;transform:scaleY(0);z-index:0}html[data-theme=dark] .timeline-container:before{background-color:var(--border-color-dark)}.timeline-item{position:relative;display:flex;align-items:flex-start;margin-bottom:20px;opacity:0;transform:translateY(20px);animation:fadeIn .5s cubic-bezier(.25,.1,.25,1) forwards}.timeline-item:last-child{margin-bottom:0}.timeline-icon{position:relative;width:40px;height:40px;min-width:40px;border-radius:50%;background-color:var(--bg-secondary-light);display:flex;align-items:center;justify-content:center;z-index:1;margin-right:15px}html[data-theme=dark] .timeline-icon{background-color:var(--bg-secondary-dark)}.timeline-icon svg{width:32px;height:32px;color:var(--success-light)}html[data-theme=dark] .timeline-icon svg{color:var(--success-dark)}.timeline-icon .checkmark__circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:var(--success-light);fill:none;animation:stroke .6s cubic-bezier(.65,0,.45,1) forwards}html[data-theme=dark] .timeline-icon .checkmark__circle{stroke:var(--success-dark)}.timeline-icon .checkmark__check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;stroke-width:3;stroke:var(--success-light);fill:none;animation:stroke .3s cubic-bezier(.65,0,.45,1) .8s forwards}html[data-theme=dark] .timeline-icon .checkmark__check{stroke:var(--success-dark)}.timeline-icon .warning-icon__circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:var(--accent-primary-light);fill:none;animation:stroke .6s cubic-bezier(.65,0,.45,1) forwards}html[data-theme=dark] .timeline-icon .warning-icon__circle{stroke:var(--accent-primary-dark)}.timeline-icon .warning-icon__line{stroke-dasharray:28;stroke-dashoffset:28;stroke-width:3;stroke:var(--accent-primary-light);fill:none;animation:stroke .3s cubic-bezier(.65,0,.45,1) .6s forwards}html[data-theme=dark] .timeline-icon .warning-icon__line{stroke:var(--accent-primary-dark)}.timeline-icon .warning-icon__dot{fill:var(--accent-primary-light);opacity:0;animation:fadeIn .2s ease-in .9s forwards}html[data-theme=dark] .timeline-icon .warning-icon__dot{fill:var(--accent-primary-dark)}.timeline-content{flex-grow:1;padding:8px 15px;background-color:var(--bg-tertiary-light);border-radius:var(--input-border-radius);border:1px solid var(--border-color-light)}html[data-theme=dark] .timeline-content{background-color:var(--bg-tertiary-dark);border-color:var(--border-color-dark)}.timeline-content p{margin:0;font-size:.9rem;color:var(--text-secondary-light)}html[data-theme=dark] .timeline-content p{color:var(--text-secondary-dark)}.timeline-content img{max-width:100%;border-radius:var(--input-border-radius);margin-top:10px;border:1px solid var(--border-color-light);display:block;transition:max-height .5s ease-in-out,opacity .5s ease-in-out;max-height:500px;overflow:hidden}html[data-theme=dark] .timeline-content img{border-color:var(--border-color-dark)}.qr-preview-wrapper{position:relative;width:min(100%,400px);margin-top:12px;border-radius:var(--input-border-radius);overflow:hidden;border:1px solid var(--border-color-light);background:#ffffffbf;box-shadow:0 18px 40px #0f172a14}html[data-theme=dark] .qr-preview-wrapper{border-color:var(--border-color-dark);background:#0d1117bf}.qr-preview-image{display:block;width:100%;height:auto;object-fit:contain}.qr-preview-overlay{position:absolute;inset:auto 0 0;display:flex;justify-content:flex-end;padding:14px;background:linear-gradient(180deg,#0f172a00,#0f172abd)}.fullscreen-button{background:#ffffffeb;color:#111827;border:none;border-radius:999px;padding:8px 14px;font-size:.82rem;font-weight:600;cursor:pointer;box-shadow:0 10px 24px #0f172a2e;transition:transform var(--transition-fast),background-color var(--transition-fast)}.fullscreen-button:hover{background:#fff;transform:translateY(-1px)}.timeline-icon .loader-container{width:32px;height:32px;transform-origin:center;animation:rotate4 2s linear infinite}.timeline-icon .loader-path{fill:none;stroke:var(--accent-primary-light);stroke-width:4;stroke-dasharray:2,200;stroke-dashoffset:0;stroke-linecap:round;animation:dash4 1.5s ease-in-out infinite}html[data-theme=dark] .timeline-icon .loader-path{stroke:var(--accent-primary-dark)}@keyframes stroke{to{stroke-dashoffset:0}}@keyframes fadeIn{to{opacity:1;transform:translateY(0)}}@keyframes grow-line{to{transform:scaleY(1)}}@keyframes rotate4{to{transform:rotate(360deg)}}@keyframes inputLoading{0%{background-position:120% 0}to{background-position:-120% 0}}@keyframes dash4{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,200;stroke-dashoffset:-35px}to{stroke-dashoffset:-125px}}.fullscreen-modal{position:fixed;top:0;left:0;width:100%;height:100%;min-height:100dvh;background-color:#000000d9;display:flex;align-items:center;justify-content:center;z-index:2000;padding:20px;cursor:zoom-out;-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px)}.fullscreen-modal img{max-width:90%;max-height:90%;object-fit:contain;border-radius:var(--card-border-radius);box-shadow:0 0 30px #fff3}.modal-close-btn{position:absolute;top:20px;right:20px;width:40px;height:40px;padding:0;font-size:1.5rem;background:#ffffff1a;border:1px solid rgba(255,255,255,.3);color:#fff;border-radius:50%;line-height:1;cursor:pointer}.toast-container{position:fixed;top:calc(12px + env(safe-area-inset-top));left:50%;transform:translate(-50%);z-index:9999;display:grid;gap:10px;width:min(720px,calc(100vw - 32px))}.toast{padding:12px 16px;border-radius:8px;color:#fff;box-shadow:var(--card-shadow-light);transition:opacity .25s ease,transform .25s ease}.toast-info{background:#2563eb}.toast-success{background:#059669}.toast-error{background:#dc2626}.toast.is-leaving{opacity:0;transform:translateY(-8px)}.expiry-preset-row{display:flex;align-items:center;gap:10px;margin-top:14px}.expiry-preset-row label{margin-bottom:0;white-space:nowrap}.expiry-preset-row select{flex-grow:1;margin-bottom:0}.expiry-preset-row input{flex-grow:1.5;margin-bottom:0}.pagination-controls{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:15px;padding:15px 0;border-top:1px solid var(--border-color-light);margin-top:20px}html[data-theme=dark] .pagination-controls{border-top-color:var(--border-color-dark)}.pagination-controls button{padding:8px 15px;font-size:.9rem;min-width:80px}.pagination-controls .page-info{font-size:.95rem;color:var(--text-secondary-light);white-space:nowrap}.pagination-go-to{display:flex;align-items:center;gap:5px}.pagination-go-to input{width:60px;padding:6px 8px;margin-bottom:0;text-align:center;font-size:.9rem}.pagination-go-to button{padding:6px 10px;font-size:.9rem;min-width:auto}@media(max-width:768px){body{padding:calc(10px + env(safe-area-inset-top)) calc(10px + env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) calc(10px + env(safe-area-inset-left))}.container{padding:10px}header h1{font-size:1.8rem}.card{padding:18px}.auth-success-card{grid-template-columns:1fr;justify-items:center;text-align:center;padding:22px}.welcome-panel{align-items:flex-start;flex-direction:column;padding:18px}.welcome-copy{padding-right:0}.welcome-status{position:relative;top:auto;right:auto}.welcome-copy h2{font-size:1.18rem}.field-row{grid-template-columns:1fr}.header-actions-container{top:calc(10px + env(safe-area-inset-top));right:calc(10px + env(safe-area-inset-right));padding:4px}.action-btn{width:34px;height:34px}.action-btn svg{width:18px;height:18px}.input-group{flex-direction:column}.input-group input,.input-group button{border-radius:var(--input-border-radius);border-right:1px solid var(--border-color-light);margin-bottom:8px}.input-group button{margin-left:0;width:100%}.expiry-preset-row{flex-direction:column;align-items:stretch;gap:8px}.key-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}.keys-table{min-width:760px;white-space:nowrap}.keys-table th,.keys-table td{padding:10px;white-space:nowrap}.apikey-full{display:inline}.apikey-short{display:none}.col-apikey,.apikey-cell{position:sticky;left:0;z-index:8;background:var(--bg-secondary-light);width:132px;min-width:132px;max-width:132px}.col-apikey{z-index:9;background:var(--bg-tertiary-light)}html[data-theme=dark] .col-apikey,html[data-theme=dark] .apikey-cell{background:var(--bg-secondary-dark)}html[data-theme=dark] .col-apikey{background:var(--bg-tertiary-dark)}.key-table-wrap.is-scrolled .apikey-full{display:none}.key-table-wrap.is-scrolled .apikey-short{display:inline}.key-table-wrap.is-scrolled .col-apikey,.key-table-wrap.is-scrolled .apikey-cell{box-shadow:10px 0 18px #00000014}.key-table-wrap.is-scrolled .col-apikey{background:var(--bg-tertiary-light)}html[data-theme=dark] .key-table-wrap.is-scrolled .col-apikey,html[data-theme=dark] .key-table-wrap.is-scrolled .apikey-cell{box-shadow:10px 0 18px #0000004d}html[data-theme=dark] .key-table-wrap.is-scrolled .col-apikey{background:var(--bg-tertiary-dark)}.col-nickname,.key-nickname-cell{min-width:88px}.apikey-cell{position:sticky}.apikey-content{gap:5px}.apikey-cell .key-login-tag{min-width:46px;padding:2px 6px;margin-right:0;font-size:11px}.key-actions{min-width:112px}}@media(max-width:480px){header h1{font-size:1.6rem}.card{padding:14px}.auth-success-ring{width:60px;height:60px}.auth-success-ring svg{width:42px;height:42px}.auth-success-card h2{font-size:1.18rem}.welcome-panel{padding:16px}.subnav{gap:6px}.subnav-btn{font-size:.8rem;padding:6px 12px}}@media(prefers-reduced-motion:reduce){.auth-success-transition,.auth-success-card,.content-enter.content-enter-active{transition:none}.auth-success-circle,.auth-success-check,.welcome-panel,.welcome-panel:after{animation:none}.auth-success-circle,.auth-success-check{stroke-dashoffset:0}}.split-input-group{display:flex;margin-bottom:15px}.split-input-group input{flex-grow:1;border-top-right-radius:0;border-bottom-right-radius:0;margin-bottom:0;border-right:none}.split-input-group .split-main-btn{border-radius:0;white-space:nowrap;margin:0}.split-input-group .split-dropdown-btn{border-top-left-radius:0;border-bottom-left-radius:0;width:40px;min-width:40px;font-size:12px;padding:0;margin:0;background:var(--accent-secondary-light)}html[data-theme=dark] .split-input-group .split-dropdown-btn{background:var(--accent-secondary-dark);color:var(--bg-primary-dark)}.key-picker-dropdown{background:var(--bg-secondary-light);border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);box-shadow:var(--card-shadow-light);margin-top:-10px;margin-bottom:15px;max-height:240px;overflow-y:auto}html[data-theme=dark] .key-picker-dropdown{background:var(--bg-secondary-dark);border-color:var(--border-color-dark);box-shadow:var(--card-shadow-dark)}.key-picker-item{padding:10px 14px;cursor:pointer;border-bottom:1px solid var(--border-color-light);transition:background-color var(--transition-fast);display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:10px;align-items:center;font-size:.875rem}html[data-theme=dark] .key-picker-item{border-bottom-color:var(--border-color-dark)}.key-picker-item:hover{background:var(--bg-tertiary-light)}html[data-theme=dark] .key-picker-item:hover{background:var(--bg-tertiary-dark)}.key-picker-item:last-child{border-bottom:none}.key-picker-key{font-family:monospace;color:var(--accent-primary-light)}html[data-theme=dark] .key-picker-key{color:var(--accent-primary-dark)}.key-picker-note{color:var(--text-muted-light);font-size:.8rem}.key-picker-note{text-align:right}.cron-presets{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}.key-template-textarea{font-family:monospace;background:var(--bg-tertiary-light);border:1px solid var(--border-color-light);padding:10px;border-radius:var(--input-border-radius);resize:none;width:100%}html[data-theme=dark] .key-template-textarea{background:var(--bg-tertiary-dark);border-color:var(--border-color-dark);color:var(--text-primary-dark)}.cron-preset-btn{padding:6px 14px;font-size:.85rem;border-radius:20px;background:#007bff14;border:1px solid rgba(0,123,255,.25);color:var(--accent-primary-light);cursor:pointer;transition:all var(--transition-fast)}.cron-preset-btn:hover{background:#007bff2e;border-color:var(--accent-primary-light)}.cron-preset-btn.active{background:var(--accent-primary-light);color:#fff;border-color:var(--accent-primary-light)}html[data-theme=dark] .cron-preset-btn{background:#58a6ff14;border-color:#58a6ff40;color:var(--accent-primary-dark)}html[data-theme=dark] .cron-preset-btn:hover{background:#58a6ff2e}html[data-theme=dark] .cron-preset-btn.active{background:var(--accent-primary-dark);color:var(--bg-primary-dark)}.modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:2000;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);padding:20px}.modal-card{background:var(--bg-secondary-light);border:1px solid var(--border-color-light);border-radius:var(--card-border-radius);box-shadow:var(--card-shadow-light);padding:25px;width:90%;max-width:540px;max-height:90vh;overflow-y:auto}html[data-theme=dark] .modal-card{background:var(--bg-secondary-dark);border-color:var(--border-color-dark);box-shadow:var(--card-shadow-dark)}.modal-card h3{font-size:1.2rem;font-weight:600;color:var(--text-primary-light);margin-bottom:4px}html[data-theme=dark] .modal-card h3{color:var(--text-primary-dark)}.modal-help-text{margin:8px 0 0;color:var(--text-secondary-light);font-size:.9rem;line-height:1.5}html[data-theme=dark] .modal-help-text{color:var(--text-secondary-dark)}.keys-table{width:100%;border-collapse:separate;border-spacing:0;font-size:.875rem;border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);overflow:visible}.keys-table th,.keys-table td{padding:10px 12px;text-align:left;border-bottom:1px solid var(--border-color-light)}.keys-table th{background-color:var(--bg-tertiary-light);font-weight:600;color:var(--text-primary-light)}.keys-table tr:last-child td{border-bottom:none}html[data-theme=dark] .keys-table{border-color:var(--border-color-dark)}html[data-theme=dark] .keys-table th,html[data-theme=dark] .keys-table td{border-bottom-color:var(--border-color-dark)}html[data-theme=dark] .keys-table th{background-color:var(--bg-tertiary-dark);color:var(--text-primary-dark)}.apikey-full{display:inline}.apikey-short{display:none}.col-apikey,.apikey-cell{width:190px;min-width:190px;max-width:190px}.col-nickname,.key-nickname-cell{width:120px;min-width:120px;max-width:160px}.key-nickname-cell span{display:block;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--text-primary-light)}html[data-theme=dark] .key-nickname-cell span{color:var(--text-primary-dark)}.apikey-content{display:flex;align-items:center;gap:8px;width:100%;min-width:0;overflow:hidden}.copyable-apikey{font-family:monospace;color:var(--accent-primary-light);cursor:pointer;text-decoration:underline;transition:color var(--transition-fast);display:inline-block;min-width:0;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.copyable-apikey span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.copyable-apikey:hover{opacity:.8}html[data-theme=dark] .copyable-apikey{color:var(--accent-primary-dark)}@media(max-width:768px){.keys-table .col-apikey,.keys-table .apikey-cell{width:auto;min-width:320px;max-width:none}.key-table-wrap:not(.is-scrolled) .apikey-content{overflow:visible}.keys-table .apikey-cell .copyable-apikey{max-width:none;overflow:visible;text-overflow:clip}.key-table-wrap.is-scrolled .col-apikey,.key-table-wrap.is-scrolled .apikey-cell{width:112px;min-width:112px;max-width:112px}.key-table-wrap.is-scrolled .apikey-cell .key-login-tag{min-width:42px;padding:2px 5px;font-size:10.5px}.key-table-wrap.is-scrolled .apikey-cell .copyable-apikey{max-width:42px;overflow:hidden;text-overflow:ellipsis}}.copied-toast{position:fixed;bottom:20px;left:50%;transform:translate(-50%);background:var(--success-light);color:#fff;padding:8px 20px;border-radius:20px;font-size:.875rem;z-index:9999;box-shadow:0 4px 12px #00000026;animation:fadeIn .3s ease forwards}html[data-theme=dark] .copied-toast{background:var(--success-dark)}.relative-wrap{position:relative;display:flex;align-items:stretch}.relative-wrap input{flex:1;padding-right:158px;margin-bottom:0}.relative-wrap .verify-btn,.relative-wrap .picker-btn{position:absolute;top:0;right:0;height:100%;padding:0 14px;font-size:.85rem;white-space:nowrap;z-index:2}.relative-wrap .verify-btn{right:80px;border-radius:0;border-left:1px solid var(--border-color-light);border-right:1px solid var(--border-color-light)}.relative-wrap .picker-btn{border-top-left-radius:0;border-bottom-left-radius:0}html[data-theme=dark] .relative-wrap .verify-btn{border-left-color:var(--border-color-dark);border-right-color:var(--border-color-dark)}.relative-wrap input:focus~.verify-btn,.relative-wrap input:focus~.picker-btn{border-left-color:var(--accent-primary-light)}.relative-wrap .key-picker-dropdown{position:absolute;top:100%;left:0;right:0;z-index:20;max-height:220px;overflow-y:auto;margin-top:2px;border-radius:var(--input-border-radius)}.config-hint{font-size:.85rem;color:var(--text-muted-light);margin-top:8px}html[data-theme=dark] .config-hint{color:var(--text-muted-dark)}.key-template-textarea{font-family:monospace!important;background:var(--bg-tertiary-light)!important;border:1px solid var(--border-color-light)!important;padding:10px!important;border-radius:var(--input-border-radius)!important;resize:none!important}html[data-theme=dark] .key-template-textarea{background:var(--bg-tertiary-dark)!important;border-color:var(--border-color-dark)!important}.login-status-polling{font-size:.9em;color:var(--text-secondary-light);text-align:center;margin-top:10px}html[data-theme=dark] .login-status-polling{color:var(--text-secondary-dark)}.run-now-log{background:var(--bg-tertiary-light);border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);padding:12px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:.82rem;line-height:1.6;max-height:360px;overflow-y:auto;white-space:pre-wrap;word-break:break-all;color:var(--text-primary-light);margin-bottom:12px}html[data-theme=dark] .run-now-log{background:var(--bg-primary-dark);border-color:var(--border-color-dark);color:var(--text-primary-dark)}.run-now-log .log-line-error{color:var(--error-light)}html[data-theme=dark] .run-now-log .log-line-error{color:var(--error-dark)}.run-now-log .log-line-success{color:var(--success-light)}html[data-theme=dark] .run-now-log .log-line-success{color:var(--success-dark)}.task-result-card{font-family:inherit;white-space:normal;word-break:normal}.task-run-live .task-result-grid,.task-run-summary .task-result-grid{margin-bottom:10px}.task-result-header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.task-result-title{font-weight:700;color:var(--text-primary-light)}html[data-theme=dark] .task-result-title{color:var(--text-primary-dark)}.task-result-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.task-result-grid div,.task-result-error{border:1px solid var(--border-color-light);background:var(--bg-secondary-light);border-radius:var(--input-border-radius);padding:10px 12px}html[data-theme=dark] .task-result-grid div,html[data-theme=dark] .task-result-error{border-color:var(--border-color-dark);background:var(--bg-secondary-dark)}.task-result-grid span,.task-result-error span{display:block;color:var(--text-muted-light);font-size:.78rem;margin-bottom:4px}html[data-theme=dark] .task-result-grid span,html[data-theme=dark] .task-result-error span{color:var(--text-muted-dark)}.task-result-grid strong{color:var(--text-primary-light);font-size:.95rem}html[data-theme=dark] .task-result-grid strong{color:var(--text-primary-dark)}.task-result-error{margin-top:10px;border-color:#dc354559}.task-result-error p{margin:0;color:var(--error-light)}html[data-theme=dark] .task-result-error p{color:var(--error-dark)}.task-run-log{display:grid;gap:4px;max-height:320px;overflow:auto;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:.82rem;color:var(--text-primary-light);white-space:pre-wrap}html[data-theme=dark] .task-run-log{color:var(--text-primary-dark)}.task-run-log span{display:block}.task-run-log .log-line-error{color:var(--error-light)}html[data-theme=dark] .task-run-log .log-line-error{color:var(--error-dark)}.task-run-log .log-line-success{color:var(--success-light)}html[data-theme=dark] .task-run-log .log-line-success{color:var(--success-dark)}.modal-card-wide{width:min(920px,calc(100vw - 32px));max-height:min(82vh,760px);overflow:auto}.stats-grid,.stats-edit-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:10px}.stats-item,.stats-edit-item{border:1px solid var(--border-color-light);background:var(--bg-secondary-light);border-radius:var(--input-border-radius);padding:10px 12px}html[data-theme=dark] .stats-item,html[data-theme=dark] .stats-edit-item{border-color:var(--border-color-dark);background:var(--bg-secondary-dark)}.stats-item span,.stats-edit-item span{display:block;color:var(--text-muted-light);font-size:.78rem;margin-bottom:4px}html[data-theme=dark] .stats-item span,html[data-theme=dark] .stats-edit-item span{color:var(--text-muted-dark)}.stats-item strong{color:var(--text-primary-light);font-size:1rem}html[data-theme=dark] .stats-item strong{color:var(--text-primary-dark)}.stats-edit-item input{margin-bottom:0}.logs-list{display:grid;gap:10px}.log-card{border:1px solid var(--border-color-light);border-radius:var(--input-border-radius);background:var(--bg-secondary-light);overflow:hidden;cursor:pointer}html[data-theme=dark] .log-card{border-color:var(--border-color-dark);background:var(--bg-secondary-dark)}.log-summary{display:grid;grid-template-columns:minmax(110px,160px) minmax(0,1fr) auto;gap:12px;align-items:center;padding:12px}.log-action{font-weight:700;color:var(--accent-primary-light)}html[data-theme=dark] .log-action{color:var(--accent-primary-dark)}.log-preview{color:var(--text-secondary-light);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}html[data-theme=dark] .log-preview{color:var(--text-secondary-dark)}.log-time{color:var(--text-muted-light);white-space:nowrap;font-size:.86rem}html[data-theme=dark] .log-time{color:var(--text-muted-dark)}.log-details{max-height:0;overflow:hidden;transition:max-height .2s ease;border-top:1px solid transparent}.log-card.expanded .log-details{max-height:520px;border-top-color:var(--border-color-light)}html[data-theme=dark] .log-card.expanded .log-details{border-top-color:var(--border-color-dark)}.log-content{margin:0;padding:12px;max-height:480px;overflow:auto;white-space:pre-wrap;word-break:break-word;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:.82rem;color:var(--text-primary-light)}html[data-theme=dark] .log-content{color:var(--text-primary-dark)}@media(max-width:700px){.log-summary{grid-template-columns:1fr;gap:4px}.log-preview{white-space:normal}}.back-to-top-btn{position:fixed;right:20px;bottom:20px;width:42px;height:42px;padding:0;border-radius:50%;z-index:1200;box-shadow:0 10px 24px #0000001f}.back-to-top-btn,.back-to-top-btn:hover,.back-to-top-btn:active{background-color:var(--accent-primary-light)}.back-to-top-btn:hover{background-color:var(--accent-secondary-light)}html[data-theme=dark] .back-to-top-btn,html[data-theme=dark] .back-to-top-btn:hover,html[data-theme=dark] .back-to-top-btn:active{background-color:var(--accent-primary-dark);color:var(--bg-primary-dark)}html[data-theme=dark] .back-to-top-btn:hover{background-color:var(--accent-secondary-dark)}.back-to-top-btn svg{width:18px;height:18px}@media(max-width:480px){.task-queue-toolbar,.task-queue-item{grid-template-columns:1fr}.task-queue-item{gap:8px}.task-queue-actions{display:grid;grid-template-columns:repeat(3,minmax(0,1fr))}.task-queue-actions button{width:100%}.pagination-bar{align-items:flex-start}.task-result-grid{grid-template-columns:1fr}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}@supports selector(body:has(#route-home)){body:has(#route-home:not(.d-none)){padding:0;background:radial-gradient(circle at 79% 12%,rgba(92,151,255,.18),transparent 22%),radial-gradient(circle at 62% 34%,rgba(250,107,171,.13),transparent 18%),linear-gradient(111deg,#fbfcff,#f9f7ff 38%,#f3f7ff 74%,#f8fbff)}html[data-theme=dark] body:has(#route-home:not(.d-none)){background:radial-gradient(circle at 79% 12%,rgba(88,166,255,.14),transparent 22%),radial-gradient(circle at 62% 34%,rgba(167,139,250,.12),transparent 18%),linear-gradient(111deg,#0d1117,#111827,#0f172a)}body:has(#route-home:not(.d-none)) .header-actions-container{top:calc(18px + env(safe-area-inset-top));right:calc(18px + env(safe-area-inset-right));gap:0;padding:0;border:0;border-radius:50%;background:transparent;box-shadow:none;backdrop-filter:none;-webkit-backdrop-filter:none}body:has(#route-home:not(.d-none)) .header-actions-container .action-btn{width:40px;height:40px;border:1px solid rgba(180,190,225,.35);background:#ffffffb8;color:#5f687a;box-shadow:0 12px 28px #4e62961f;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}body:has(#route-home:not(.d-none)) .header-actions-container .action-btn:hover{background:#ffffffeb;color:#7655f5;transform:translateY(-1px)}}#route-home.user-entry-page{min-height:100vh;min-height:100dvh;padding:calc(34px + env(safe-area-inset-top)) calc(22px + env(safe-area-inset-right)) calc(44px + env(safe-area-inset-bottom)) calc(22px + env(safe-area-inset-left))}#route-home.user-entry-page .container{width:100%;max-width:655px;margin:0 auto;padding:0}#route-home .user-login-hero{position:relative;width:100%;max-width:655px;min-height:276px;margin:0 auto 14px;padding:13px 10px 0;display:grid;grid-template-columns:minmax(0,1fr) 266px;align-items:center;gap:8px;text-align:left}.user-login-hero-copy{position:relative;z-index:2;padding-top:2px}#route-home .user-login-hero h1{margin:0;color:#151b2d;font-size:40px;font-weight:800;line-height:1.33;letter-spacing:0}.user-login-hero h1 span{color:#6c77ff;background:linear-gradient(100deg,#8062ff,#6a83ff 52%,#44a0ff);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}#route-home .user-login-hero .subtitle{margin:22px 0 0;color:#5f687a;font-size:18px;font-weight:500;line-height:1.65}.user-login-benefits{display:flex;align-items:center;gap:28px;margin-top:27px;color:#7e8798}.user-login-benefit{display:inline-flex;align-items:center;gap:9px;min-width:0;font-size:16px;font-weight:650;white-space:nowrap}.user-login-benefit svg{width:20px;height:20px;color:#8d84ff;filter:drop-shadow(0 4px 8px rgba(117,105,255,.18))}.user-login-hero-art{position:relative;height:250px;transform:translate(2px,2px)}.hero-trash{position:absolute;right:32px;bottom:15px;width:139px;height:157px;filter:drop-shadow(0 28px 38px rgba(78,87,190,.22))}.hero-trash-lip{position:absolute;top:16px;left:-11px;width:161px;height:44px;border-radius:18px 18px 25px 25px;background:linear-gradient(180deg,#94a3ff,#7e84f3);box-shadow:inset 0 6px 10px #ffffff4d,inset 0 -5px 10px #4c46be29}.hero-trash-body{position:absolute;left:0;right:0;bottom:0;height:124px;border-radius:20px 20px 28px 28px;background:linear-gradient(180deg,#8e94ff,#7476e9);box-shadow:inset 0 8px 18px #ffffff2e}.hero-trash-body span{position:absolute;top:44px;width:14px;height:71px;border-radius:999px;background:linear-gradient(180deg,#676ee2,#595fd1);box-shadow:inset 0 4px 7px #292d872e}.hero-trash-body span:nth-child(1){left:28px}.hero-trash-body span:nth-child(2){left:63px}.hero-trash-body span:nth-child(3){right:28px}.hero-card{position:absolute;background:#ffffffd6;border:1px solid rgba(255,255,255,.78);box-shadow:0 16px 35px #565daf29;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}.hero-card-weibo{top:-22px;left:23px;width:88px;height:86px;border-radius:14px;transform:rotate(8deg);display:grid;place-items:center;overflow:hidden}.hero-card-weibo img{width:100%;height:100%;border-radius:inherit;object-fit:cover;display:block}.hero-card-chat{top:-18px;left:-70px;width:46px;height:38px;border-radius:13px;transform:rotate(-18deg)}.hero-card-chat:after{content:"";position:absolute;right:8px;bottom:-7px;border-width:8px 2px 0 10px;border-style:solid;border-color:rgba(255,255,255,.76) transparent transparent transparent}.hero-card-chat span,.hero-bubble span{position:absolute;width:7px;height:7px;border-radius:50%;background:#848dff75}.hero-card-chat span:nth-child(1){left:14px;top:15px}.hero-card-chat span:nth-child(2){left:27px;top:13px}.hero-bubble{position:absolute;border-radius:50%;background:linear-gradient(145deg,#9cc9ff,#4f8df2);box-shadow:0 14px 28px #528df240,inset 0 7px 10px #ffffff47}.hero-bubble:after{content:"";position:absolute;right:8px;bottom:-2px;width:16px;height:13px;border-radius:2px 0 12px 2px;background:#5795f4;transform:rotate(-32deg)}.hero-bubble-large{top:5px;right:4px;width:51px;height:51px}.hero-bubble-large span:nth-child(1){left:14px;top:24px}.hero-bubble-large span:nth-child(2){left:25px;top:21px}.hero-bubble-large span:nth-child(3){left:36px;top:25px}.hero-bubble-small{right:1px;bottom:40px;width:33px;height:33px;opacity:.45;transform:rotate(19deg)}.hero-bubble-small span:nth-child(1){left:10px;top:15px}.hero-bubble-small span:nth-child(2){left:20px;top:13px}.hero-float{position:absolute;filter:drop-shadow(0 11px 18px rgba(90,92,190,.15))}.hero-heart{width:24px;height:24px;transform:rotate(45deg);border-radius:7px 7px 3px;background:linear-gradient(135deg,#ffb9d0,#f178a9)}.hero-heart:before,.hero-heart:after{content:"";position:absolute;width:24px;height:24px;border-radius:50%;background:inherit}.hero-heart:before{left:-10px;top:0}.hero-heart:after{left:0;top:-10px}.hero-heart-left{left:-21px;top:158px}.hero-heart-right{right:-18px;top:119px;width:20px;height:20px;opacity:.78}.hero-heart-right:before,.hero-heart-right:after{width:20px;height:20px}.hero-sparkle{width:16px;height:16px;color:#c9caff}.hero-sparkle:before,.hero-sparkle:after{content:"";position:absolute;inset:7px 0;height:2px;border-radius:999px;background:currentColor}.hero-sparkle:after{transform:rotate(90deg)}.hero-sparkle-left{left:-34px;top:112px}.hero-sparkle-right{right:27px;bottom:21px;opacity:.55}#route-home .card.glass,#route-home .key-entry-card.card,#route-home .feature-config-card.card,#route-home .qr-login-card.card,#route-home #logAccessModule.card{border:0;border-radius:19px;background:#ffffffe6;box-shadow:0 18px 45px #46547e17,inset 0 1px #ffffffe6;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}#route-home .key-entry-card.card{width:100%;margin:0 auto 25px;padding:25px 24px 23px}.key-entry-card h2{margin:0 0 6px;color:#182033;font-size:24px;font-weight:800;line-height:1.3}.key-entry-subtitle{margin:0 0 20px;color:#70788a;font-size:17px;font-weight:500}.key-input-shell{position:relative;display:flex;align-items:center;height:55px;margin-bottom:14px;padding:0 18px;border:1px solid rgba(144,151,210,.25);border-radius:28px;background:#f8faff;box-shadow:inset 0 1px #ffffffe6,0 10px 22px #6277bf0f;transition:border-color var(--transition-fast),box-shadow var(--transition-fast),background-color var(--transition-fast)}.key-input-shell:focus-within{border-color:#6f6eff9e;background:#fff;box-shadow:0 0 0 4px #7468ff1a,0 12px 26px #6277bf17}.key-input-shell svg{width:22px;height:22px;margin-right:10px;color:#8588f9;flex:0 0 auto}.key-input-shell input[type=text]{height:100%;min-width:0;padding:0;margin:0;border:0;border-radius:0;background:transparent;color:#192033;font-size:16px;font-weight:600;box-shadow:none}.key-input-shell input[type=text]::placeholder{color:#a0a7ba;font-weight:500}.key-input-shell input[type=text]:focus{border:0;background:transparent;box-shadow:none}.weibo-login-button,#route-home #startLoginBtn,#route-home #saveUserConfigBtn,#route-home #openUserLogsBtn{min-height:50px;border:0;border-radius:999px;background:linear-gradient(100deg,#7655f5,#7165f6 41%,#5196f4);color:#fff;font-weight:800;white-space:nowrap;box-shadow:0 13px 24px #536fe945}.weibo-login-button{min-height:60px;padding:0 28px;font-size:20px;font-weight:750}.weibo-login-button span{white-space:nowrap}.weibo-login-button:hover,#route-home #startLoginBtn:hover,#route-home #saveUserConfigBtn:hover,#route-home #openUserLogsBtn:hover{background:linear-gradient(100deg,#6e4bed,#6860ef 41%,#4389eb);box-shadow:0 16px 30px #536fe94f;transform:translateY(-1px)}.weibo-login-button:disabled,#route-home #startLoginBtn:disabled,#route-home #saveUserConfigBtn:disabled,#route-home #openUserLogsBtn:disabled{border:1px solid rgba(148,163,184,.16);background:#f1f4f9e6;color:#98a2b3;box-shadow:none;transform:none}.key-entry-card .message{justify-content:center;margin:14px 0 0;border-radius:14px}.key-entry-privacy{display:flex;align-items:center;gap:8px;margin:16px 0 0;color:#7a8294;font-size:14px;font-weight:500;line-height:1.5}.key-entry-privacy svg{width:18px;height:18px;color:#8d84ff;flex:0 0 auto}#route-home .welcome-panel{margin:0 0 25px;border-radius:16px}#route-home .user-key-info-card{position:relative;overflow:hidden;display:block;width:100%;margin:0 auto 25px;padding:25px 24px;min-height:0;border:1px solid rgba(164,184,228,.22);border-radius:13px;background:radial-gradient(circle at 77% 29%,rgba(136,111,255,.18),transparent 16%),radial-gradient(circle at 94% 21%,rgba(100,190,255,.18),transparent 18%),linear-gradient(105deg,#faf6fff5,#f6f1fff2 36%,#e8f7ffeb);box-shadow:0 16px 34px #48537814,inset 0 1px #ffffffc7}.user-key-info-header{position:relative;z-index:2;display:flex;align-items:flex-start;justify-content:flex-start;gap:16px;margin-bottom:12px}.user-key-info-title{display:flex;align-items:center;gap:10px;min-width:0}.user-key-info-icon{width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;border-radius:10px;background:linear-gradient(145deg,#8a5cff,#4d7dff);color:#fff;box-shadow:0 12px 24px #5d68ff38}.user-key-info-icon svg{width:23px;height:23px}.user-key-info-title h3{margin:0;color:#161d2d;font-size:22px;font-weight:850;line-height:1.2}.user-key-status-badge.key-status{display:inline-flex;width:fit-content;min-height:26px;align-items:center;gap:6px;padding:0 14px;border-radius:999px;background:#27d37d21;color:#18a768;font-size:14px;font-weight:800;white-space:nowrap}.user-key-status-badge.key-status:before{content:"";width:6px;height:6px;border-radius:50%;background:currentColor;box-shadow:0 0 0 3px #27d37d1f}.user-key-status-badge.key-status.expired,.user-key-status-badge.key-status.invalid{background:#f851491a;color:#d9403a}.user-key-status-badge.key-status.expired:before,.user-key-status-badge.key-status.invalid:before{box-shadow:0 0 0 3px #f851491f}#route-home .user-key-info-card .key-info-item{position:relative;z-index:2;display:grid;grid-template-columns:86px minmax(0,1fr);align-items:center;gap:16px;width:100%;min-height:27px;margin:0;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none;color:#202838;font-size:14px;line-height:1.45}#route-home .user-key-info-card .key-info-label{margin:0;color:#4b5365;font-size:14px;font-weight:650}#route-home .user-key-info-card .key-info-item>span:not(.key-info-label):not(.countdown-tag),#route-home .user-key-info-card .key-info-item>strong:not(.key-info-label):not(.countdown-tag){min-width:0;color:#182033;font-size:14px;font-weight:650;word-break:break-word}#route-home .user-key-info-card .countdown-tag{display:none}.user-key-info-art{position:absolute;top:48px;right:36px;width:236px;height:132px;pointer-events:none}.user-key-shield{position:absolute;left:56px;top:11px;width:72px;height:82px;filter:drop-shadow(0 18px 24px rgba(82,101,255,.24))}.user-key-shield svg{width:100%;height:100%}.user-key-platform{position:absolute;left:22px;right:8px;bottom:9px;height:31px;border-radius:50%;background:linear-gradient(180deg,#ffffffdb,#dde4ff8c);box-shadow:0 12px 22px #7b88d221}.user-key-mini-key{position:absolute;right:24px;top:44px;width:34px;height:49px}.user-key-mini-key:before{content:"";position:absolute;top:0;left:4px;width:20px;height:20px;border:7px solid #91bcff;border-radius:50%;box-shadow:inset 0 2px 4px #5484dc2e}.user-key-mini-key:after{content:"";position:absolute;left:15px;top:24px;width:8px;height:23px;border-radius:999px;background:#82aafa}.user-key-mini-key span{position:absolute;left:20px;width:12px;height:5px;border-radius:999px;background:#82aafa}.user-key-mini-key span:first-child{top:35px}.user-key-mini-key span:last-child{top:43px}.user-key-dot{position:absolute;border-radius:50%;background:#9398ff29}.user-key-dot.dot-one{width:14px;height:14px;right:52px;top:4px}.user-key-dot.dot-two{width:8px;height:8px;left:32px;top:64px}#route-home .feature-config-card{padding:24px}#route-home .feature-config-card h2,#route-home .qr-login-card h2{margin:0 0 18px;color:#151b2d;font-size:22px;font-weight:850;line-height:1.25}#route-home .feature-config-card .field{margin-top:0}#route-home .feature-config-card label:not(.choice-card){margin-bottom:12px;color:#5f687a;font-size:14px;font-weight:650}#route-home .feature-config-card .choice-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:0}#route-home .feature-config-card .choice-card{--choice-accent: #8b6fff;--choice-soft: rgba(139, 111, 255, .15);position:relative;display:grid;grid-template-columns:1fr;grid-template-rows:48px auto auto;justify-items:center;align-items:center;gap:6px;min-height:96px;padding:10px 8px 9px;overflow:hidden;border:1px solid rgba(222,226,238,.9);border-radius:8px;background:#ffffffd6;box-shadow:0 8px 22px #46547e0d;color:#151b2d;cursor:pointer;transition:border-color var(--transition-fast),box-shadow var(--transition-fast),transform var(--transition-fast),background-color var(--transition-fast)}#route-home .feature-config-card .choice-card:nth-child(2){--choice-accent: #4aa3ff;--choice-soft: rgba(74, 163, 255, .15)}#route-home .feature-config-card .choice-card:nth-child(3){--choice-accent: #ff9f2f;--choice-soft: rgba(255, 159, 47, .15)}#route-home .feature-config-card .choice-card:nth-child(4){--choice-accent: #34c98d;--choice-soft: rgba(52, 201, 141, .15)}#route-home .feature-config-card .choice-card:nth-child(5){--choice-accent: #14cba8;--choice-soft: rgba(20, 203, 168, .14)}#route-home .feature-config-card .choice-card:nth-child(6){--choice-accent: #f05292;--choice-soft: rgba(240, 82, 146, .15)}#route-home .feature-config-card .choice-card:nth-child(7){--choice-accent: #8b6fff;--choice-soft: rgba(139, 111, 255, .15)}#route-home .feature-config-card .choice-card:hover{border-color:#8b6fff5c;box-shadow:0 14px 30px #46547e17;transform:translateY(-1px)}#route-home .feature-config-card .choice-icon{width:39px;height:39px;margin:0;border-radius:50%;color:var(--choice-accent);background:var(--choice-soft)}#route-home .feature-config-card .choice-icon svg{width:19px;height:19px}#route-home .feature-config-card .choice-copy{display:contents}#route-home .feature-config-card .choice-copy strong{max-width:100%;color:#20263a;font-size:13px;font-weight:850;line-height:1.24;text-align:center}#route-home .feature-config-card .choice-copy small{max-width:100%;color:#8b93a5;font-size:11px;font-weight:650;line-height:1.25;text-align:center}#route-home .feature-config-card .choice-check{position:absolute;top:-1px;right:-1px;display:none;width:25px;height:25px;border:0;border-radius:0 8px 0 14px;background:linear-gradient(135deg,#8b6fff,#6f72ff);box-shadow:none}#route-home .feature-config-card .choice-check:after{content:"";position:absolute;left:8px;top:6px;width:8px;height:5px;border-left:2px solid #ffffff;border-bottom:2px solid #ffffff;transform:rotate(-45deg)}#route-home .feature-config-card .choice-card.is-checked{border-color:#8b7cff;background:#fffffff5;box-shadow:0 12px 28px #7965ff1f}#route-home .feature-config-card .choice-card.is-checked .choice-check{display:block}#route-home .feature-config-card .choice-card.is-disabled{opacity:.58;cursor:not-allowed;transform:none}#route-home .config-hint{margin:12px 0 0;color:#7a8294;font-size:13px;line-height:1.5}#route-home #saveUserConfigBtn{margin-top:16px;font-size:16px}#route-home .qr-login-card{padding:24px}#route-home .qr-instruction-card{display:flex;align-items:center;gap:14px;margin-bottom:16px;padding:15px 16px;border:1px solid rgba(139,92,246,.15);border-radius:16px;background:linear-gradient(100deg,#8b5cf617,#4f94f414);box-shadow:none}#route-home .qr-instruction-icon-container{width:44px;height:44px;border-radius:15px;background:linear-gradient(145deg,#8b5cf626,#4f94f41f);color:#7c3aed;flex:0 0 auto}#route-home .qr-instruction-icon{color:currentColor}#route-home .qr-instruction-text{color:#151b2d;font-size:15px;font-weight:850}#route-home .qr-instruction-sub-text{color:#70798f;font-size:13px;font-weight:600}#route-home .timeline-container{margin:16px 0 0;padding:18px 18px 16px;overflow:hidden;border:1px solid rgba(210,218,239,.58);border-radius:16px;background:#ffffffed;box-shadow:0 18px 42px #46547e1a,inset 0 1px #ffffffdb}#route-home .timeline-item{display:grid;grid-template-columns:32px minmax(0,1fr);gap:12px;align-items:flex-start;margin-bottom:12px}#route-home .timeline-icon{width:32px;height:32px;min-width:32px;margin-right:0;background:#fff;border:1px solid rgba(123,92,255,.18);box-shadow:0 8px 18px #7b5cff1f}#route-home .timeline-content{padding:10px 12px;border:1px solid rgba(210,218,239,.58);border-radius:12px;background:#fff}#route-home .timeline-content p{color:#5f687a;font-size:13px;font-weight:650}#route-home .qr-preview-wrapper{position:relative;margin-top:12px;padding:14px;border:1px solid rgba(203,211,235,.55);border-radius:16px;background:radial-gradient(circle at 79% 78%,rgba(139,92,246,.16),transparent 23%),linear-gradient(111deg,#fffffffa,#fffffff0 62%,#f8f6fff5);box-shadow:0 20px 46px #56609421,inset 0 1px #fffffff2}#route-home .qr-preview-image{display:block;width:min(260px,100%);max-height:340px;margin:0 auto;border:0;border-radius:10px;object-fit:contain;background:#fff}#route-home .qr-preview-overlay{display:flex;justify-content:center;margin-top:10px}#route-home .fullscreen-button{min-height:30px;padding:0 14px;border:1px solid rgba(124,92,255,.18);border-radius:999px;background:#7c5cff17;color:#7a5cff;font-size:12px;font-weight:750;box-shadow:none}#route-home .fullscreen-button:hover{background:#7c5cff24;color:#6847ef;box-shadow:none}#route-home #logAccessModule{margin-top:0;padding:24px}.log-access-shell{position:relative;display:flex;flex-direction:column;gap:16px}.log-access-header{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}.log-access-title-group{display:flex;align-items:center;flex:1 1 auto;min-width:0;gap:13px}.log-access-icon{width:44px;height:44px;flex:0 0 44px;display:inline-flex;align-items:center;justify-content:center;border-radius:15px;color:#7c3aed;background:linear-gradient(145deg,#8b5cf626,#4f94f41f);box-shadow:inset 0 1px #ffffffe6}.log-access-icon svg{width:24px;height:24px}.log-access-title-copy{flex:1 1 auto;min-width:0}#logAccessModule .log-access-title-copy h2{margin:0;color:#151b2d;font-size:22px;font-weight:850;line-height:1.25}.log-access-description{margin:-2px 0 0;color:#5f687a;font-size:14px;line-height:1.55}#route-home #openUserLogsBtn{min-height:50px;padding:0 18px;font-size:16px}#route-home #openUserLogsBtn svg{width:20px;height:20px}html[data-theme=dark] #route-home.user-entry-page,html[data-theme=dark] #route-home .user-login-hero h1,html[data-theme=dark] .key-entry-card h2,html[data-theme=dark] .user-key-info-title h3,html[data-theme=dark] #route-home .feature-config-card h2,html[data-theme=dark] #route-home .qr-login-card h2,html[data-theme=dark] #logAccessModule .log-access-title-copy h2,html[data-theme=dark] #route-home .qr-instruction-text{color:var(--text-primary-dark)}html[data-theme=dark] #route-home .user-login-hero .subtitle,html[data-theme=dark] .user-login-benefits,html[data-theme=dark] .key-entry-subtitle,html[data-theme=dark] .key-entry-privacy,html[data-theme=dark] #route-home .config-hint,html[data-theme=dark] .log-access-description,html[data-theme=dark] #route-home .qr-instruction-sub-text{color:var(--text-secondary-dark)}html[data-theme=dark] #route-home .card.glass,html[data-theme=dark] #route-home .key-entry-card.card,html[data-theme=dark] #route-home .feature-config-card.card,html[data-theme=dark] #route-home .qr-login-card.card,html[data-theme=dark] #route-home #logAccessModule.card,html[data-theme=dark] #route-home .timeline-container,html[data-theme=dark] #route-home .timeline-content{border-color:#8b949e3d;background:#161b22eb;box-shadow:0 22px 52px #00000047,inset 0 1px #ffffff0f}html[data-theme=dark] #route-home .weibo-login-button,html[data-theme=dark] #route-home #startLoginBtn,html[data-theme=dark] #route-home #saveUserConfigBtn,html[data-theme=dark] #route-home #openUserLogsBtn{color:#fff}html[data-theme=dark] .key-input-shell{border-color:#8b949e38;background:#21262db8}html[data-theme=dark] .key-input-shell:focus-within{border-color:#58a6ff8c;background:#21262de0}html[data-theme=dark] .key-input-shell input[type=text]{color:var(--text-primary-dark)}html[data-theme=dark] #route-home .user-key-info-card{background:#161b22eb}html[data-theme=dark] #route-home .user-key-info-card .key-info-label,html[data-theme=dark] #route-home .feature-config-card label:not(.choice-card){color:var(--text-secondary-dark)}html[data-theme=dark] #route-home .user-key-info-card .key-info-item>span:not(.key-info-label):not(.countdown-tag),html[data-theme=dark] #route-home .user-key-info-card .key-info-item>strong:not(.key-info-label):not(.countdown-tag){color:var(--text-primary-dark)}html[data-theme=dark] #route-home .feature-config-card .choice-card{border-color:#8b949e3d;background:#0d11178a;box-shadow:none}html[data-theme=dark] #route-home .feature-config-card .choice-copy strong{color:var(--text-primary-dark)}html[data-theme=dark] #route-home .feature-config-card .choice-copy small,html[data-theme=dark] #route-home .timeline-content p{color:var(--text-secondary-dark)}html[data-theme=dark] #route-home .feature-config-card .choice-card.is-checked{border-color:#a78bfab3;background:#a78bfa1a}html[data-theme=dark] #route-home .qr-instruction-card,html[data-theme=dark] #route-home .qr-preview-wrapper{border-color:#a78bfa3d;background:#0d11178a}html[data-theme=dark] #route-home .log-access-icon,html[data-theme=dark] #route-home .qr-instruction-icon-container{background:#a78bfa29;color:#c4b5fd;box-shadow:inset 0 1px #ffffff0f}@media(max-width:768px){#route-home.user-entry-page{padding:calc(22px + env(safe-area-inset-top)) calc(16px + env(safe-area-inset-right)) calc(34px + env(safe-area-inset-bottom)) calc(16px + env(safe-area-inset-left))}#route-home .user-login-hero{min-height:252px;padding:20px 0 0;grid-template-columns:minmax(0,1fr) 202px}#route-home .user-login-hero h1{font-size:34px;line-height:1.32}#route-home .user-login-hero .subtitle{margin-top:18px;font-size:16px}.user-login-benefits{gap:18px;margin-top:21px}.user-login-benefit{gap:7px;font-size:14px}.user-login-benefit svg{width:18px;height:18px}.user-login-hero-art{height:226px;transform:scale(.84);transform-origin:right center}#route-home .feature-config-card .choice-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.user-key-info-art{right:8px;transform:scale(.78);transform-origin:right center}}@media(max-width:600px){#route-home .user-login-hero{min-height:314px;grid-template-columns:1fr;align-items:start;overflow:hidden}.user-login-hero-copy{max-width:360px}#route-home .user-login-hero h1{font-size:31px}#route-home .user-login-hero .subtitle{font-size:15px}.user-login-benefits{max-width:315px;flex-wrap:wrap;row-gap:10px}.user-login-hero-art{position:absolute;right:-28px;bottom:-4px;width:246px;height:220px;opacity:.9;transform:scale(.75);transform-origin:right bottom}.hero-heart-left,.hero-sparkle-left,.hero-card-chat{opacity:.35}.user-key-info-art{display:none}}@media(max-width:480px){@supports selector(body:has(#route-home)){body:has(#route-home:not(.d-none)) .header-actions-container{top:calc(10px + env(safe-area-inset-top));right:calc(10px + env(safe-area-inset-right))}}#route-home .user-login-hero{min-height:300px;padding-top:18px}#route-home .user-login-hero h1{font-size:29px}.user-login-benefits{gap:14px}#route-home .key-entry-card.card,#route-home .feature-config-card.card,#route-home .qr-login-card.card,#route-home #logAccessModule.card{padding:23px 20px 21px;border-radius:18px}.key-input-shell{height:54px;padding:0 16px}.weibo-login-button{min-height:58px;font-size:18px}.key-entry-privacy{align-items:flex-start;font-size:13px}#route-home .feature-config-card .choice-grid{gap:10px}#route-home .feature-config-card .choice-card{min-height:100px;padding:10px 6px 9px}#route-home .feature-config-card .choice-copy strong{font-size:12px}#route-home .feature-config-card .choice-copy small{font-size:10.5px}.user-key-info-title{flex-wrap:wrap}#route-home .user-key-info-card .key-info-item{grid-template-columns:76px minmax(0,1fr)}}#route-home .key-input-shell input[type=text],html[data-theme=dark] #route-home .key-input-shell input[type=text],#route-home .key-input-shell input[type=text]:focus,html[data-theme=dark] #route-home .key-input-shell input[type=text]:focus{margin:0;padding:0;border:0;border-radius:0;background:transparent;background-color:transparent;box-shadow:none}html[data-theme=dark] #route-home .key-input-shell{background:#11182770;border-color:#c4cee847;box-shadow:inset 0 1px #ffffff0d,0 12px 24px #0000002e}html[data-theme=dark] #route-home .key-input-shell svg{color:#9b8cff}#route-home .user-key-info-card .key-current-item{margin-bottom:4px}#route-home .masked-key{display:inline-flex;width:fit-content;max-width:100%;align-items:center;padding:5px 10px;border:1px solid rgba(139,111,255,.18);border-radius:999px;background:#8b6fff14;color:#5b5fe8;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:13px;font-weight:800;letter-spacing:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}html[data-theme=dark] #route-home .masked-key{border-color:#a78bfa42;background:#a78bfa1f;color:#c4b5fd}.user-key-status-badge.key-status.disabled{background:#64748b1f;color:#64748b}.user-key-status-badge.key-status.disabled:before{box-shadow:0 0 0 3px #64748b24}html[data-theme=dark] .user-key-status-badge.key-status.disabled{background:#94a3b824;color:#cbd5e1}#route-home .feature-config-card .choice-check:after{left:9px;top:5px;width:6px;height:10px;margin:0;border:solid #ffffff;border-width:0 2px 2px 0;transform:rotate(45deg)}#route-home .weibo-login-button:disabled,#route-home #startLoginBtn:disabled,#route-home #saveUserConfigBtn:disabled,#route-home #openUserLogsBtn:disabled,#userLogsModal button:disabled,#userLogsModal .button-secondary:disabled{border:0;background:linear-gradient(100deg,#7655f58a,#7165f685 44%,#5196f480);color:#ffffffd1;box-shadow:0 10px 24px #536fe924;cursor:not-allowed;opacity:.72}#route-home .feature-config-card .choice-card.is-disabled{border-color:#8b6fff29;background:#ffffff9e;opacity:.72}html[data-theme=dark] #route-home .feature-config-card .choice-card.is-disabled{background:#a78bfa12}.message.info{border-color:#7c5cff38;background:linear-gradient(100deg,#7c5cff1a,#4f94f417),#ffffffc7;color:#4c46c9;font-weight:700}.message.success{border-color:#22c55e38;background:#22c55e1a;color:#168250;font-weight:700}.message.warning{border-color:#f59e0b3d;background:#f59e0b1a;color:#a16207;font-weight:700}.message.error{border-color:#ef444438;background:#ef44441a;color:#b91c1c;font-weight:700}html[data-theme=dark] .message.info{border-color:#a78bfa47;background:#a78bfa1f;color:#c4b5fd}html[data-theme=dark] .message.success{background:#22c55e21;color:#86efac}html[data-theme=dark] .message.warning{background:#f59e0b21;color:#fcd34d}html[data-theme=dark] .message.error{background:#ef444421;color:#fca5a5}.toast-container{top:calc(18px + env(safe-area-inset-top));width:min(560px,calc(100vw - 32px))}.toast{position:relative;overflow:hidden;min-height:48px;display:flex;align-items:center;padding:13px 18px 13px 42px;border:1px solid rgba(203,211,235,.58);border-radius:999px;background:#ffffffe6;color:#151b2d;font-size:14px;font-weight:800;box-shadow:0 18px 45px #46547e1f,inset 0 1px #ffffffe6;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}.toast:before{content:"";position:absolute;left:17px;top:50%;width:10px;height:10px;border-radius:50%;background:currentColor;box-shadow:0 0 0 5px #7c5cff1f;transform:translateY(-50%)}.toast-info{color:#5b5fe8}.toast-success{color:#16a765}.toast-error{color:#dc2626}html[data-theme=dark] .toast{border-color:#8b949e3d;background:#161b22eb;color:var(--text-primary-dark);box-shadow:0 22px 52px #00000047,inset 0 1px #ffffff0f}html[data-theme=dark] .toast-info{color:#c4b5fd}html[data-theme=dark] .toast-success{color:#86efac}html[data-theme=dark] .toast-error{color:#fca5a5}#userLogsModal.modal-overlay{background:radial-gradient(circle at 50% 16%,rgba(124,92,255,.18),transparent 34%),#0f172a61;backdrop-filter:blur(18px) saturate(1.12);-webkit-backdrop-filter:blur(18px) saturate(1.12)}#userLogsModal .modal-card{width:min(880px,calc(100vw - 32px));max-height:min(92vh,920px);overflow:auto;border:1px solid rgba(255,255,255,.62);border-radius:19px;background:#ffffffeb;box-shadow:0 28px 80px #0f172a2e,inset 0 1px #ffffffe6;backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}#userLogsModal .modal-card h3{margin:0 0 16px;color:#151b2d;font-size:24px;font-weight:850}#userLogsModal .stats-grid{grid-template-columns:repeat(auto-fit,minmax(132px,1fr))}#userLogsModal .stats-item{border-color:#dee2eee6;border-radius:14px;background:#ffffffc2;box-shadow:0 8px 22px #46547e0d}#userLogsModal .logs-list{max-height:min(36vh,360px);overflow:auto;padding-right:2px}#userLogsModal .log-card{border-color:#dee2eee6;border-radius:14px;background:#ffffffd1;box-shadow:0 8px 22px #46547e0d}#userLogsModal .log-card:hover{border-color:#8b6fff42;box-shadow:0 14px 30px #46547e17}#userLogsModal .log-action{color:#7655f5}#userLogsModal .log-content{background:#f8faffd1;border-radius:0 0 14px 14px}.user-logs-pagination{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:14px;padding-top:14px;border-top:1px solid rgba(222,226,238,.9)}.user-logs-pagination button{min-height:38px;padding:0 16px;border-radius:999px;font-size:14px;font-weight:800}.user-logs-page-info{color:#6b7280;font-size:13px;font-weight:750;white-space:nowrap}#userLogsModal .action-row{justify-content:flex-end}#userLogsModal #closeUserLogsBtn{min-height:42px;padding:0 18px;border:1px solid rgba(139,111,255,.18);border-radius:999px;background:#8b6fff17;color:#6d5df5;font-weight:800}#userLogsModal #closeUserLogsBtn:hover{border-color:#8b6fff4d;background:#8b6fff24;box-shadow:none}html[data-theme=dark] #userLogsModal .modal-card{border-color:#8b949e3d;background:#161b22f0;box-shadow:0 28px 80px #0000005c,inset 0 1px #ffffff0f}html[data-theme=dark] #userLogsModal .modal-card h3,html[data-theme=dark] #userLogsModal .stats-item strong{color:var(--text-primary-dark)}html[data-theme=dark] #userLogsModal .stats-item,html[data-theme=dark] #userLogsModal .log-card{border-color:#8b949e3d;background:#0d11178a}html[data-theme=dark] #userLogsModal .log-content{background:#0d1117b8}html[data-theme=dark] .user-logs-pagination{border-top-color:#8b949e3d}html[data-theme=dark] .user-logs-page-info{color:var(--text-secondary-dark)}html[data-theme=dark] #userLogsModal #closeUserLogsBtn{border-color:#a78bfa47;background:#a78bfa1f;color:#c4b5fd}@media(max-width:560px){.toast-container{top:calc(10px + env(safe-area-inset-top));width:min(360px,calc(100vw - 24px))}#userLogsModal .modal-card{width:min(358px,calc(100vw - 24px));padding:20px;border-radius:18px}#userLogsModal .log-summary{grid-template-columns:1fr}.user-logs-pagination{display:grid;grid-template-columns:1fr 1fr}.user-logs-page-info{grid-column:1 / -1;grid-row:1;text-align:center}}#route-home #qrLoginCard.card{overflow:hidden;border:1px solid rgba(164,184,228,.22);border-radius:18px;background:#ffffffeb;box-shadow:0 18px 45px #46547e17,inset 0 1px #ffffffeb;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}#route-home #qrLoginCard>h2{margin-bottom:18px;color:#151b2d;font-size:22px;font-weight:850;line-height:1.25}#route-home #qrLoginCard #startLoginBtn{min-height:50px;border-radius:999px;background:linear-gradient(98deg,#7b5cff,#6d67f5,#4e94f4);box-shadow:0 14px 28px #5c67f53d}#route-home #qrLoginCard #startLoginBtn:hover{background:linear-gradient(98deg,#704fff,#625cf0,#4388ec)}#route-home #qrLoginCard.has-qr-preview .qr-instruction-card,#route-home #qrLoginCard.has-qr-preview #startLoginBtn{display:none}#route-home #qrLoginCard #loginStatusPolling{display:none!important}#route-home .qr-preview-stage{margin:2px 0 18px}#route-home .qr-preview-wrapper{width:100%;max-width:none;box-sizing:border-box;position:relative;display:grid;grid-template-columns:168px minmax(0,1fr) 186px;align-items:center;gap:22px;min-height:188px;padding:22px 26px;overflow:hidden;border:1px solid rgba(203,211,235,.55);border-radius:16px;background:radial-gradient(circle at 79% 78%,rgba(139,92,246,.16),transparent 23%),linear-gradient(111deg,#fffffffa,#fffffff0 62%,#f8f6fff5);box-shadow:0 20px 46px #56609421,inset 0 1px #fffffff2}#route-home .qr-preview-wrapper:after{content:none}#route-home .qr-preview-mobile-header,#route-home .qr-preview-mobile-intro{display:none}#route-home .qr-preview-code-column{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:10px}#route-home .qr-preview-code-frame{position:relative;width:146px;height:146px;padding:18px;overflow:visible;border-radius:0;background:#fff;box-shadow:0 12px 28px #674cdc21}#route-home .qr-preview-code-frame:before,#route-home .qr-preview-code-frame:after{content:"";position:absolute;inset:0;z-index:2;border-radius:inherit;pointer-events:none}#route-home .qr-preview-code-frame:before{background:linear-gradient(#b899ff,#b899ff) left top / 28px 3px no-repeat,linear-gradient(#b899ff,#b899ff) left top / 3px 28px no-repeat,linear-gradient(#b899ff,#b899ff) right bottom / 28px 3px no-repeat,linear-gradient(#b899ff,#b899ff) right bottom / 3px 28px no-repeat}#route-home .qr-preview-code-frame:after{background:linear-gradient(#b899ff,#b899ff) right top / 28px 3px no-repeat,linear-gradient(#b899ff,#b899ff) right top / 3px 28px no-repeat,linear-gradient(#b899ff,#b899ff) left bottom / 28px 3px no-repeat,linear-gradient(#b899ff,#b899ff) left bottom / 3px 28px no-repeat}#route-home .qr-preview-image{position:relative;z-index:1;display:block;width:100%;height:100%;max-width:none;max-height:none;margin:0;border:0;border-radius:0;object-fit:contain;background:#fff}#route-home .fullscreen-button{min-height:28px;padding:0 12px;border:1px solid rgba(124,92,255,.18);border-radius:999px;background:#7c5cff17;color:#7a5cff;font-size:12px;font-weight:750;box-shadow:none}#route-home .fullscreen-button:hover{background:#7c5cff24;color:#6847ef;transform:translateY(-1px);box-shadow:none}#route-home .qr-preview-copy{position:relative;z-index:1;min-width:0}#route-home .qr-preview-steps{display:grid;gap:12px}#route-home .qr-preview-step{display:grid;grid-template-columns:24px minmax(0,1fr);gap:10px;align-items:flex-start}#route-home .qr-preview-step-index{display:inline-grid;place-items:center;width:20px;height:20px;margin-top:1px;border-radius:50%;background:linear-gradient(135deg,#7c3aed,#a78bfa);color:#fff;font-size:12px;font-weight:900;line-height:1;box-shadow:0 8px 18px #7c3aed38}#route-home .qr-preview-step-text{min-width:0}#route-home .qr-preview-step-text strong,#route-home .qr-preview-step-text span{display:block}#route-home .qr-preview-step-text strong{color:#151b2d;font-size:14px;font-weight:900;line-height:1.3}#route-home .qr-preview-step-text span{margin-top:2px;color:#70798f;font-size:12px;font-weight:650;line-height:1.35}#route-home .qr-preview-phone{position:relative;z-index:1;width:clamp(154px,17vw,186px);aspect-ratio:1;height:auto;justify-self:end;transform:translate(2px)}#route-home .qr-preview-phone-illustration{position:relative;z-index:1;display:block;width:100%;height:100%;object-fit:contain;pointer-events:none;-webkit-user-select:none;user-select:none}#route-home .timeline-container{--timeline-active: #7b5cff;--timeline-active-soft: rgba(123, 92, 255, .14);--timeline-success: #22c55e;--timeline-success-soft: rgba(34, 197, 94, .13);--timeline-error: #ef4444;--timeline-error-soft: rgba(239, 68, 68, .13);--timeline-warning: #f59e0b;--timeline-warning-soft: rgba(245, 158, 11, .16);--timeline-idle: #dce2ef;--timeline-text: #141a2c;--timeline-muted: #8a93a8;position:relative;margin:16px 0 0;padding:19px 22px 17px;overflow:hidden;border:1px solid rgba(210,218,239,.58);border-radius:16px;background:#ffffffed;box-shadow:0 18px 42px #46547e1a,inset 0 1px #ffffffdb;opacity:0;transition:opacity .28s ease}#route-home .timeline-container:before{content:none}#route-home .timeline-container.visible{opacity:1}#route-home .timeline-header{display:flex;align-items:center;justify-content:space-between;gap:16px;min-width:0}#route-home .timeline-title{color:var(--timeline-text);font-size:18px;font-weight:900;line-height:1.25;white-space:nowrap}#route-home .timeline-title-mobile{display:none}#route-home .timeline-summary{min-width:0;color:#6e7890;font-size:13px;font-weight:650;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#route-home .timeline-track{position:relative;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;margin-top:22px;padding:0 4px 8px}#route-home .timeline-track:before,#route-home .timeline-track:after{content:"";position:absolute;left:calc(12.5% + 4px);right:calc(12.5% + 4px);top:12px;height:5px;border-radius:999px}#route-home .timeline-track:before{background:#edf0f8}#route-home .timeline-track:after{right:auto;width:var(--timeline-track-progress, 0%);background:linear-gradient(90deg,#775cff,#9c86ff);box-shadow:0 6px 14px #7b5cff33;transition:width .32s ease}#route-home .timeline-item{position:relative;z-index:1;display:grid;grid-template-rows:30px auto auto;grid-template-columns:1fr;justify-items:center;gap:6px;min-width:0;margin:0;opacity:1;transform:none;animation:none}#route-home .timeline-icon{position:relative;z-index:2;display:grid;place-items:center;box-sizing:border-box;width:28px;height:28px;min-width:28px;margin:0;border:4px solid #ffffff;border-radius:50%;background:var(--timeline-idle);color:transparent;font-size:0;font-weight:900;box-shadow:0 3px 10px #6f78911f;overflow:hidden}#route-home .timeline-icon:after{content:"";position:absolute;left:50%;top:50%;width:7px;height:7px;border-radius:50%;background:#fff;transform:translate(-50%,-50%)}#route-home .timeline-icon:before{content:none}#route-home .timeline-content{min-width:0;padding:0 6px;border:0;border-radius:0;background:transparent;text-align:center}#route-home .timeline-step-title,#route-home .timeline-step-detail{margin:0;overflow:hidden;text-overflow:ellipsis}#route-home .timeline-step-title{color:#7d879c;font-size:13px;font-weight:750;line-height:1.35;white-space:nowrap}#route-home .timeline-step-detail{margin-top:2px;color:var(--timeline-muted);font-size:12px;font-weight:650;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}#route-home .timeline-step-state{min-height:20px;color:var(--timeline-muted);font-size:12px;font-weight:800;line-height:20px}#route-home .timeline-item.is-active .timeline-icon{background:#fff;box-shadow:0 0 0 6px #7b5cff1f,0 8px 18px #7b5cff3d}#route-home .timeline-item.is-active .timeline-icon:before{content:"";position:absolute;inset:0;margin:auto;box-sizing:border-box;width:16px;height:16px;border:3px solid rgba(123,92,255,.22);border-top-color:var(--timeline-active);border-radius:50%;animation:timelineIconSpin .75s linear infinite}#route-home .timeline-item.is-active .timeline-icon:after{content:none}#route-home .timeline-item.is-active .timeline-step-title,#route-home .timeline-item.is-active .timeline-step-state{color:var(--timeline-active)}#route-home .timeline-item.is-success .timeline-icon{background:var(--timeline-success);box-shadow:0 0 0 5px var(--timeline-success-soft),0 8px 18px #22c55e2e}#route-home .timeline-item.is-success .timeline-icon:after{content:"";position:absolute;left:50%;top:50%;width:9px;height:5px;border:2px solid #ffffff;border-top:0;border-right:0;border-radius:0;background:transparent;transform:translate(-50%,-60%) rotate(-45deg)}#route-home .timeline-item.is-success .timeline-step-title,#route-home .timeline-item.is-success .timeline-step-state{color:var(--timeline-success)}#route-home .timeline-item.is-error .timeline-icon{background:var(--timeline-error);box-shadow:0 0 0 6px var(--timeline-error-soft),0 8px 18px #ef444433}#route-home .timeline-item.is-error .timeline-icon:after,#route-home .timeline-item.is-warning .timeline-icon:after{content:"!";position:absolute;left:50%;top:50%;display:grid;place-items:center;width:auto;height:auto;border-radius:0;background:transparent;color:#fff;font-size:14px;font-weight:950;line-height:1;transform:translate(-50%,-52%)}#route-home .timeline-item.is-error .timeline-step-title,#route-home .timeline-item.is-error .timeline-step-state{color:var(--timeline-error)}#route-home .timeline-item.is-warning .timeline-icon{background:var(--timeline-warning);box-shadow:0 0 0 6px var(--timeline-warning-soft),0 8px 18px #f59e0b2e}#route-home .timeline-item.is-warning .timeline-step-title,#route-home .timeline-item.is-warning .timeline-step-state{color:#d97706}#route-home .timeline-footer{display:grid;grid-template-columns:auto minmax(0,1fr);gap:7px 16px;align-items:center;margin-top:12px}#route-home .timeline-progress-line{grid-column:1 / -1;height:5px;overflow:hidden;border-radius:999px;background:#edf0f8}#route-home .timeline-progress-fill{display:block;width:var(--timeline-progress, 0);height:100%;border-radius:inherit;background:linear-gradient(90deg,#775cff,#9c86ff);box-shadow:0 5px 12px #7b5cff33;transition:width .32s ease}#route-home .timeline-progress-text,#route-home .timeline-footer-status{min-width:0;color:#687287;font-size:12px;font-weight:750;line-height:1.35}#route-home .timeline-footer-status{text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#route-home .timeline-container[data-progress-state=error] .timeline-progress-fill,#route-home .timeline-container[data-progress-state=error] .timeline-track:after{background:linear-gradient(90deg,#ef4444,#fb7185)}#route-home .timeline-container[data-progress-state=warning] .timeline-progress-fill,#route-home .timeline-container[data-progress-state=warning] .timeline-track:after{background:linear-gradient(90deg,#f59e0b,#fbbf24)}#route-home .timeline-container[data-progress-state=success] .timeline-progress-fill,#route-home .timeline-container[data-progress-state=success] .timeline-track:after{background:linear-gradient(90deg,#22c55e,#86efac)}html[data-theme=dark] #route-home #qrLoginCard.card,html[data-theme=dark] #route-home .qr-preview-wrapper,html[data-theme=dark] #route-home .timeline-container{border-color:#8b949e3d;background:#161b22eb;box-shadow:0 22px 52px #00000047,inset 0 1px #ffffff0f}html[data-theme=dark] #route-home #qrLoginCard>h2,html[data-theme=dark] #route-home .qr-preview-step-text strong,html[data-theme=dark] #route-home .qr-preview-mobile-header h3,html[data-theme=dark] #route-home .timeline-title{color:var(--text-primary-dark)}html[data-theme=dark] #route-home .qr-preview-step-text span,html[data-theme=dark] #route-home .qr-preview-mobile-intro,html[data-theme=dark] #route-home .timeline-summary,html[data-theme=dark] #route-home .timeline-step-detail,html[data-theme=dark] #route-home .timeline-progress-text,html[data-theme=dark] #route-home .timeline-footer-status{color:var(--text-secondary-dark)}html[data-theme=dark] #route-home .qr-preview-code-frame,html[data-theme=dark] #route-home .qr-preview-image{background-color:#fff}html[data-theme=dark] #route-home .timeline-track:before,html[data-theme=dark] #route-home .timeline-progress-line{background:#8b949e38}html[data-theme=dark] #route-home .timeline-icon{border-color:#161b22f5}html[data-theme=dark] #route-home .timeline-item.is-active .timeline-icon{background:#0d1117eb}@keyframes timelineIconSpin{to{transform:rotate(360deg)}}@media(max-width:768px){#route-home #qrLoginCard.card{padding:19px 18px 18px;border-radius:18px}#route-home #qrLoginCard>h2{margin-bottom:15px;font-size:18px}#route-home .qr-preview-stage{margin:0 0 16px}#route-home .qr-preview-wrapper{display:flex;flex-direction:column;align-items:stretch;gap:12px;width:100%;max-width:none;min-height:0;margin:0 auto;padding:18px 18px 20px;border-radius:16px;background:#fffffff5}#route-home .qr-preview-wrapper:after,#route-home .qr-preview-phone{display:none}#route-home .qr-preview-mobile-header{order:1;display:flex;align-items:center;justify-content:flex-start}#route-home .qr-preview-mobile-header h3{margin:0;color:#151b2d;font-size:16px;font-weight:900;line-height:1.2}#route-home .qr-preview-mobile-intro{order:2;display:block;margin:-2px 0 0;color:#8a93a8;font-size:12px;font-weight:650;line-height:1.45;text-align:center;white-space:pre-line}#route-home .qr-preview-copy{order:4}#route-home .qr-preview-steps{gap:10px;width:min(176px,72vw);max-width:none;margin:2px auto 0}#route-home .qr-preview-step{grid-template-columns:22px minmax(0,1fr);gap:8px}#route-home .qr-preview-step-index{width:19px;height:19px;font-size:11px}#route-home .qr-preview-step-text strong{font-size:12px}#route-home .qr-preview-step-text span{font-size:11px}#route-home .qr-preview-code-column{order:3;gap:8px}#route-home .qr-preview-code-frame{width:min(176px,72vw);height:min(176px,72vw);padding:18px;border-radius:0}#route-home .fullscreen-button{display:none}#route-home .timeline-container{margin-top:13px;padding:18px 17px 17px;border-radius:18px}#route-home .timeline-header{margin-bottom:20px}#route-home .timeline-title{position:relative;padding-left:10px;font-size:16px}#route-home .timeline-title-desktop{display:none}#route-home .timeline-title-mobile{display:inline}#route-home .timeline-title:before{content:"";position:absolute;left:0;top:3px;bottom:3px;width:3px;border-radius:999px;background:var(--timeline-active)}#route-home .timeline-summary{max-width:44%;font-size:12px}#route-home .timeline-track{display:grid;grid-template-columns:1fr;gap:18px;margin:0;padding:0}#route-home .timeline-track:before,#route-home .timeline-track:after{left:14px;right:auto;top:15px;width:3px;height:calc(100% - 30px);border-radius:999px}#route-home .timeline-track:after{width:3px;height:var(--timeline-progress, 0%);max-height:calc(100% - 30px)}#route-home .timeline-item{display:grid;grid-template-columns:30px minmax(0,1fr) auto;grid-template-rows:auto;justify-items:stretch;align-items:center;gap:14px;min-height:50px}#route-home .timeline-icon{width:30px;height:30px;min-width:30px;border:4px solid #ffffff;color:transparent;font-size:0;box-shadow:0 8px 18px #6f78911f}#route-home .timeline-content{padding:0;text-align:left}#route-home .timeline-step-title{color:#151b2d;font-size:14px;font-weight:900;white-space:normal}#route-home .timeline-step-detail{margin-top:3px;font-size:12px;line-height:1.3}#route-home .timeline-step-state{justify-self:end;padding-left:8px;color:#8a93a8;font-size:12px;white-space:nowrap}#route-home .timeline-item.is-active .timeline-icon,#route-home .timeline-item.is-success .timeline-icon{background:#fff}#route-home .timeline-item.is-success .timeline-icon{background:var(--timeline-success)}#route-home .timeline-item.is-success .timeline-step-state{color:var(--timeline-success)}#route-home .timeline-item.is-error .timeline-icon{background:linear-gradient(135deg,#ef4444,#fb7185)}#route-home .timeline-item.is-warning .timeline-icon{background:linear-gradient(135deg,#f59e0b,#fbbf24)}#route-home .timeline-footer{display:none}html[data-theme=dark] #route-home .timeline-step-title{color:var(--text-primary-dark)}}@media(max-width:420px){#route-home .timeline-container{padding:17px 15px 16px}#route-home .timeline-summary{max-width:40%}#route-home .timeline-item{grid-template-columns:28px minmax(0,1fr) auto;gap:12px}#route-home .timeline-icon{width:28px;height:28px;min-width:28px}}#route-home #qrLoginCard{container-type:inline-size}#route-home #timelineContainer .timeline-content,html[data-theme=dark] #route-home #timelineContainer .timeline-content{border:0!important;background:transparent!important;box-shadow:none!important}#route-home .fullscreen-button{display:inline-flex;align-items:center;justify-content:center;gap:6px;white-space:nowrap}#route-home .fullscreen-button-icon{width:14px;height:14px;flex:0 0 14px}#route-home .qr-preview-step-text strong,#route-home .qr-preview-step-text span{overflow-wrap:normal;word-break:keep-all}@container (min-width: 561px){#route-home .qr-preview-wrapper{display:grid;grid-template-columns:168px minmax(128px,1fr) 186px;align-items:center;gap:22px;min-height:188px;padding:22px 26px}#route-home .qr-preview-mobile-header,#route-home .qr-preview-mobile-intro{display:none}#route-home .qr-preview-code-column,#route-home .qr-preview-copy,#route-home .qr-preview-phone{order:initial}#route-home .qr-preview-copy{width:auto;margin:0}#route-home .qr-preview-phone{display:block}}@container (max-width: 560px){#route-home .qr-preview-wrapper{grid-template-columns:minmax(150px,190px) minmax(0,1fr);align-items:center;gap:22px;min-height:0;padding:22px}#route-home .qr-preview-phone{display:none}#route-home .qr-preview-copy{min-width:0}#route-home .qr-preview-steps{gap:14px}#route-home .qr-preview-step{grid-template-columns:24px minmax(0,1fr);gap:10px}#route-home .qr-preview-step-text strong{font-size:14px;white-space:normal}#route-home .qr-preview-step-text span{font-size:12px;white-space:normal}}@container (max-width: 480px){#route-home .qr-preview-wrapper{display:flex;flex-direction:column;align-items:stretch;gap:13px;padding:18px}#route-home .qr-preview-mobile-header{display:flex;order:1}#route-home .qr-preview-mobile-intro{display:block;order:2;margin:-2px 0 0;text-align:center;white-space:pre-line}#route-home .qr-preview-code-column{order:3}#route-home .qr-preview-code-frame{width:min(188px,72vw);height:min(188px,72vw)}#route-home .qr-preview-copy{order:4;width:min(230px,100%);margin:0 auto}#route-home .qr-preview-step{align-items:flex-start}#route-home .fullscreen-button{display:inline-flex;min-height:30px}}@media(max-width:768px){#route-home .fullscreen-button{display:inline-flex}}
