:root {
  color-scheme: dark;
  --bg: #07111e;
  --panel: #0d1b2c;
  --panel-soft: #101f31;
  --line: rgba(154, 185, 207, .14);
  --text: #f5f8fb;
  --muted: #8fa5b5;
  --mint: #70e1c1;
  --mint-strong: #45cfad;
  --warning: #ffb067;
  --danger: #ff7878;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--bg); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(68, 207, 173, .11), transparent 27rem),
    radial-gradient(circle at 95% 88%, rgba(74, 131, 210, .09), transparent 32rem),
    var(--bg);
  font-family: Inter, Pretendard, "Noto Sans KR", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding-bottom: 42px; }
.topbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; color: #082018; background: var(--mint); font-size: 20px; font-weight: 900; box-shadow: 0 8px 25px rgba(112, 225, 193, .18); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 14px; letter-spacing: .13em; }
.brand small { margin-top: 3px; color: #6e8799; font-size: 9px; font-weight: 800; letter-spacing: .28em; }
.top-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-width: 0; }
.current-time { color: var(--muted); font-size: 12px; white-space: nowrap; }
.source-badge { display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: #b7c8d3; background: rgba(255,255,255,.025); font-size: 11px; white-space: nowrap; }
.source-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px currentColor; }
.source-badge.sample i { background: var(--warning); }
.source-badge.error i { background: var(--danger); }
.icon-button, .primary-button { height: 38px; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.icon-button { width: 38px; color: #bdd0dd; background: rgba(255,255,255,.035); font-size: 19px; }
.primary-button { padding: 0 16px; border-color: rgba(112,225,193,.32); color: #09221b; background: var(--mint); font-size: 12px; font-weight: 850; }
.icon-button:hover, .primary-button:hover { transform: translateY(-1px); }
.icon-button:hover { border-color: rgba(112,225,193,.38); background: rgba(112,225,193,.08); }
.primary-button:hover { background: #86e8cd; }
.icon-button:focus-visible, .primary-button:focus-visible { outline: 3px solid rgba(112,225,193,.25); outline-offset: 2px; }

.hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; padding: 70px 4px 42px; }
.eyebrow { margin: 0 0 13px; color: var(--mint); font-size: 10px; font-weight: 900; letter-spacing: .19em; }
.hero h1 { margin: 0; font-size: clamp(36px, 5vw, 58px); line-height: 1.08; letter-spacing: -.055em; }
.hero h1 span { color: #d9e5ec; }
.hero-copy { margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.source-panel { width: 290px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(13, 27, 44, .66); box-shadow: var(--shadow); }
.source-panel span, .source-panel strong, .source-panel small { display: block; }
.source-panel span { color: var(--muted); font-size: 10px; }
.source-panel strong { margin-top: 7px; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.source-panel small { margin-top: 5px; color: #728a9c; font-size: 10px; line-height: 1.5; }

.summary { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: rgba(13, 27, 44, .76); box-shadow: var(--shadow); }
.summary article { min-width: 0; padding: 20px 22px; border-right: 1px solid var(--line); }
.summary article:last-child { border-right: 0; }
.summary span, .summary strong, .summary small { display: block; }
.summary span { color: var(--muted); font-size: 10px; }
.summary strong { margin-top: 8px; overflow: hidden; font-size: 21px; letter-spacing: -.03em; text-overflow: ellipsis; white-space: nowrap; }
.summary strong b { font-size: 28px; }
.summary strong i { font-style: normal; }
.summary small { margin-top: 4px; overflow: hidden; color: #708799; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }

.quota-section { margin-top: 48px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.section-heading .eyebrow { margin-bottom: 7px; }
.section-heading h2 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 11px; }
.section-heading > p strong { color: #cad7df; }
.provider-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.provider-card { --provider: var(--mint); min-width: 0; padding: 22px; border: 1px solid var(--line); border-radius: 19px; background: linear-gradient(145deg, rgba(16, 32, 50, .96), rgba(11, 24, 39, .96)); box-shadow: 0 16px 44px rgba(0,0,0,.18); }
.provider-card.warning { --provider: var(--warning); }
.provider-card.danger { --provider: var(--danger); }
.provider-head { display: flex; align-items: center; gap: 12px; }
.provider-logo { display: grid; place-items: center; flex: 0 0 auto; width: 43px; height: 43px; border-radius: 13px; color: #07131e; background: var(--provider); font-size: 11px; font-weight: 950; letter-spacing: -.02em; }
.provider-title { min-width: 0; flex: 1; }
.provider-title strong, .provider-title small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.provider-title strong { font-size: 15px; }
.provider-title small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.remaining {
  position: relative; display: grid; place-content: center; flex: 0 0 auto; width: 74px; height: 74px;
  border-radius: 50%; text-align: center; isolation: isolate;
  background: conic-gradient(var(--provider) calc(var(--remaining) * 1%), rgba(255,255,255,.075) 0);
  box-shadow: 0 0 24px color-mix(in srgb, var(--provider), transparent 86%);
}
.remaining::before { content: ""; position: absolute; inset: 7px; z-index: -1; border-radius: inherit; background: #0e2133; box-shadow: inset 0 0 0 1px rgba(255,255,255,.035); }
.remaining strong { font-size: 23px; line-height: 1; letter-spacing: -.05em; }
.remaining strong small { margin-left: 2px; color: var(--muted); font-size: 12px; }
.remaining > small { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; }
.usage-row { display: flex; justify-content: space-between; margin-top: 24px; color: var(--muted); font-size: 10px; }
.usage-row strong { color: #dae5eb; font-size: 11px; }
.meter { height: 8px; overflow: hidden; margin-top: 9px; border-radius: 999px; background: rgba(255,255,255,.07); }
.meter span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--provider), color-mix(in srgb, var(--provider), white 18%)); transition: width .45s ease; }
.provider-card.warning .meter span, .provider-card.danger .meter span { box-shadow: 0 0 12px color-mix(in srgb, var(--provider), transparent 45%); }
.provider-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
.provider-meta div { min-width: 0; }
.provider-meta dt { color: #71899a; font-size: 9px; }
.provider-meta dd { margin: 6px 0 0; overflow: hidden; color: #d9e5eb; font-size: 11px; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.provider-meta dd small { display: block; margin-top: 4px; color: #71899a; font-size: 9px; font-weight: 500; }
.empty-state { padding: 50px 24px; border: 1px dashed rgba(143,165,181,.26); border-radius: 18px; text-align: center; background: rgba(13,27,44,.42); }
.empty-state strong, .empty-state span { display: block; }
.empty-state span { margin-top: 8px; color: var(--muted); font-size: 12px; }

.data-guide { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; margin-top: 28px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 16px; background: rgba(7,17,30,.62); }
.guide-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: var(--mint); background: rgba(112,225,193,.08); font-size: 12px; font-weight: 900; }
.data-guide strong { font-size: 11px; }
.data-guide p { margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.data-guide code { color: var(--mint); }
.data-guide > span { color: #6f8798; font-size: 9px; white-space: nowrap; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 10; max-width: min(380px, calc(100vw - 44px)); padding: 13px 16px; border: 1px solid rgba(112,225,193,.24); border-radius: 12px; color: #dce8ed; background: #112338; box-shadow: var(--shadow); font-size: 11px; }
body.is-dragging::after { content: "usage.json 놓기"; position: fixed; inset: 16px; z-index: 20; display: grid; place-items: center; border: 2px dashed var(--mint); border-radius: 20px; color: var(--mint); background: rgba(7,17,30,.9); font-size: 24px; font-weight: 900; }

@media (max-width: 900px) {
  .shell { width: min(100% - 30px, 720px); }
  .current-time { display: none; }
  .hero { align-items: flex-start; flex-direction: column; padding-top: 52px; }
  .source-panel { width: 100%; }
  .summary { grid-template-columns: 1fr 1fr; }
  .summary article:nth-child(2) { border-right: 0; }
  .summary article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .provider-grid { grid-template-columns: 1fr; }
  .data-guide { grid-template-columns: auto 1fr; }
  .data-guide > span { display: none; }
}
@media (max-width: 580px) {
  .shell { width: calc(100% - 24px); }
  .topbar { align-items: flex-start; padding: 16px 0; }
  .brand-copy { display: none; }
  .source-badge { display: none; }
  .primary-button { padding: 0 11px; font-size: 10px; }
  .hero { padding: 42px 2px 30px; }
  .hero h1 { font-size: 35px; }
  .hero-copy { font-size: 12px; line-height: 1.65; }
  .summary article { padding: 17px 15px; }
  .summary strong { font-size: 16px; }
  .summary strong b { font-size: 23px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .provider-card { padding: 18px 16px; }
  .provider-logo { width: 38px; height: 38px; }
  .remaining strong { font-size: 25px; }
  .provider-meta { gap: 10px; }
}

@media (max-width: 420px) {
  .provider-card { padding: 17px; }
  .provider-head { align-items: flex-start; }
  .provider-logo { width: 38px; height: 38px; border-radius: 11px; }
  .remaining { width: 64px; height: 64px; }
  .remaining strong { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* ---------- 웹 설정 허브: CLI 연결 · 언어 · 위젯 실행 옵션 ---------- */
.settings-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(2, 9, 17, .68); backdrop-filter: blur(5px); }
.settings-panel {
  position: fixed; inset: 0 0 0 auto; z-index: 71; width: min(560px, 100%); overflow-y: auto;
  padding: 26px; border-left: 1px solid rgba(154,185,207,.18); color: var(--text);
  background: #091522; box-shadow: -28px 0 80px rgba(0,0,0,.38); transform: translateX(0); transition: transform .24s ease;
}
.settings-panel[aria-hidden="true"] { visibility: hidden; transform: translateX(100%); }
.settings-open { overflow: hidden; }
.settings-head, .settings-block-title, .language-block, .form-actions, .widget-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.settings-head { margin-bottom: 18px; }
.settings-head .eyebrow { margin-bottom: 5px; }
.settings-head h2 { margin: 0; font-size: 24px; letter-spacing: -.04em; }
.settings-block { margin-top: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: rgba(16,31,49,.78); }
.settings-block strong, .settings-block small { display: block; }
.settings-block > div > strong, .settings-block-title strong { font-size: 13px; }
.settings-block small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.language-block select { min-width: 126px; }
.settings-panel select, .settings-panel input[type="text"], .settings-panel input[type="password"] {
  width: 100%; height: 39px; padding: 0 11px; border: 1px solid rgba(154,185,207,.2); border-radius: 10px;
  outline: 0; color: #eaf1f5; background: #0a1826; transition: border-color .16s ease, box-shadow .16s ease;
}
.settings-panel select:focus, .settings-panel input:focus { border-color: rgba(112,225,193,.58); box-shadow: 0 0 0 3px rgba(112,225,193,.09); }
.settings-panel option { color: #eaf1f5; background: #0a1826; }
.count-badge { display: grid; place-items: center; min-width: 28px; height: 24px; padding: 0 7px; border-radius: 99px; color: var(--mint); background: rgba(112,225,193,.1); font-size: 10px; font-weight: 800; }
.connection-list { display: grid; gap: 7px; margin-top: 14px; }
.connection-empty { margin: 0; padding: 15px; border: 1px dashed rgba(143,165,181,.2); border-radius: 11px; color: var(--muted); text-align: center; font-size: 10px; }
.connection-item { display: grid; grid-template-columns: 34px minmax(0,1fr) auto auto; align-items: center; gap: 8px; padding: 9px; border: 1px solid var(--line); border-radius: 11px; background: rgba(7,17,30,.62); }
.connection-item.is-paused { opacity: .6; }
.connection-glyph { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; color: #072018; background: var(--mint); font-size: 9px; font-weight: 900; }
.connection-item div { min-width: 0; }
.connection-item strong, .connection-item small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.connection-item strong { font-size: 11px; }
.connection-item button { min-width: 31px; height: 28px; padding: 0 7px; border: 1px solid var(--line); border-radius: 8px; color: #a9becb; background: rgba(255,255,255,.03); font-size: 9px; cursor: pointer; }
.connection-form { display: grid; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.connection-form label, .widget-fields label { display: grid; gap: 6px; color: #b7c8d3; font-size: 9px; }
.field-grid { display: grid; gap: 10px; }
.two-columns { grid-template-columns: 1fr 1fr; }
.field-action { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 7px; }
.secondary-button { height: 38px; padding: 0 13px; border: 1px solid rgba(154,185,207,.22); border-radius: 10px; color: #c5d4dc; background: rgba(255,255,255,.035); font-size: 10px; font-weight: 750; cursor: pointer; }
.secondary-button:hover { border-color: rgba(112,225,193,.42); background: rgba(112,225,193,.07); }
.validation-result { margin: 0; padding: 9px 11px; border: 1px solid rgba(255,176,103,.24); border-radius: 9px; color: #ffc482; background: rgba(255,176,103,.07); font-size: 9px; line-height: 1.5; }
.validation-result.is-ok { border-color: rgba(112,225,193,.25); color: var(--mint); background: rgba(112,225,193,.07); }
.validation-result.is-error { border-color: rgba(255,120,120,.26); color: #ff9b9b; background: rgba(255,120,120,.07); }
.form-actions { justify-content: flex-end; }
.option-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 14px; }
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 63px; padding: 10px; border: 1px solid var(--line); border-radius: 11px; background: rgba(7,17,30,.5); }
.switch-row strong { font-size: 10px; }
.switch-row input { width: 16px; height: 16px; accent-color: var(--mint); }
.widget-fields { margin-top: 12px; }
.widget-fields input[type="range"] { width: 100%; accent-color: var(--mint); }
.widget-fields output { color: var(--mint); font-weight: 800; }
.widget-actions { justify-content: flex-start; margin-top: 15px; }
.settings-note { margin: 11px 0 0; color: #738b9c; font-size: 9px; line-height: 1.55; }

/* start-widget.ps1의 ?widget=1 및 설정 화면 미리보기 */
.widget-mode { --widget-opacity: .92; background: rgba(7,17,30,var(--widget-opacity)); }
.widget-mode .shell { width: min(100% - 24px, 720px); opacity: var(--widget-opacity); padding-bottom: 16px; }
.widget-mode .hero, .widget-mode .data-guide, .widget-mode .settings-button, .widget-mode .mascot-dev { display: none; }
.widget-mode .topbar { min-height: 64px; }
.widget-mode .summary { margin-top: 14px; grid-template-columns: 1fr 1fr; }
.widget-mode .summary article:nth-child(2) { border-right: 0; }
.widget-mode .summary article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.widget-mode .quota-section { margin-top: 18px; }
.widget-mode .provider-grid { grid-template-columns: 1fr; }
.widget-compact .summary article:nth-child(n+3), .widget-compact .section-heading > p { display: none; }
.widget-compact .summary { grid-template-columns: 1fr 1fr; }
.widget-compact .provider-meta { margin-top: 12px; }

@media (max-width: 580px) {
  .settings-panel { padding: 17px 13px; }
  .two-columns, .option-grid { grid-template-columns: 1fr; }
  .switch-row { min-height: 54px; }
  .widget-actions { align-items: stretch; flex-direction: column; }
  .settings-panel .primary-button, .settings-panel .secondary-button { min-height: 38px; }
}

/* ---------- 쿼티 마스코트 — 활성 AI 순환 + 부드러운 프레임 전환 ---------- */
.mascot {
  --frame-blend-ms: 140ms; --provider-color: var(--mint);
  position: fixed; right: 22px; bottom: 20px; z-index: 40;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events: none; user-select: none;
}
.mascot-transition, .mascot-visual { width: 112px; height: 112px; transform-origin: 50% 100%; }
.mascot-transition { position: relative; }
.mascot-visual { position: relative; }
.mascot-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transform: scale(.965) translateY(2px);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.35));
  transition: opacity var(--frame-blend-ms) ease, transform var(--frame-blend-ms) cubic-bezier(.2,.75,.25,1);
}
.mascot-img.is-visible { opacity: 1; transform: scale(1) translateY(0); }
.mascot-tag {
  display: flex; align-items: center; gap: 5px; max-width: 240px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  color: #cfe0f5; background: rgba(10, 20, 38, 0.82);
  border: 1px solid rgba(140, 170, 210, 0.25);
  border-radius: 999px; padding: 3px 10px;
  backdrop-filter: blur(10px);
}
.mascot-provider { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mascot-provider-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--provider-color); box-shadow: 0 0 9px var(--provider-color); }
.mascot-divider, .mascot-status { flex: 0 0 auto; color: #8fa5b5; }
.mascot-bubble {
  max-width: 190px; font-size: 12px; line-height: 1.4;
  color: #0c1526; background: #f2f6fc;
  border-radius: 12px; padding: 7px 11px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: mascot-pop 0.25s ease-out;
}
@keyframes mascot-pop { from { opacity: 0; transform: translateY(6px); } }
.mascot-idle .mascot-visual  { animation: mascot-bob 3.2s cubic-bezier(.45,0,.55,1) infinite; }
.mascot-run .mascot-visual   { animation: mascot-hop .92s cubic-bezier(.37,0,.63,1) infinite; }
.mascot-tired .mascot-visual { animation: mascot-sag 2.6s cubic-bezier(.45,0,.55,1) infinite; }
.mascot-sleep .mascot-visual { animation: mascot-breathe 3.6s cubic-bezier(.45,0,.55,1) infinite; opacity: 0.92; }
@keyframes mascot-bob     { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-5px) rotate(0.6deg); } }
@keyframes mascot-hop     { 0%,100% { transform: translateY(0) scaleY(0.99); } 50% { transform: translateY(-9px) scaleY(1.02); } }
@keyframes mascot-sag     { 0%,100% { transform: translateY(2px) rotate(-1deg); } 50% { transform: translateY(5px) rotate(1deg); } }
@keyframes mascot-breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.015, 0.985) translateY(2px); } }
.mascot.is-state-changing .mascot-transition { animation: mascot-state-tween .42s cubic-bezier(.2,.8,.25,1) both; }
@keyframes mascot-state-tween {
  0% { opacity: .68; transform: translateY(5px) scale(.96); }
  55% { opacity: 1; transform: translateY(-2px) scale(1.015); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
/* 개발 중 잔여량 경계를 직접 훑어보는 횡스크롤 테스트바. 실제 데이터는 변경하지 않는다. */
.mascot-dev {
  position: fixed; left: 20px; bottom: 20px; z-index: 39;
  width: min(420px, calc(100vw - 190px)); padding: 12px 14px 10px;
  border: 1px solid rgba(143,165,181,.22); border-radius: 14px;
  color: #cfe0f5; background: rgba(8,18,32,.9); box-shadow: 0 12px 35px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}
.mascot-dev-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 10px; }
.mascot-dev-head b { margin-right: 5px; padding: 2px 5px; border-radius: 5px; color: #132116; background: var(--warning); font-size: 8px; }
.mascot-dev output { color: var(--mint); font-weight: 800; white-space: nowrap; }
.mascot-dev input { width: 100%; height: 18px; margin: 7px 0 0; accent-color: var(--mint); cursor: ew-resize; }
.mascot-dev-scale { display: flex; justify-content: space-between; color: #708799; font-size: 8px; }
.mascot-dev-live { margin-top: 8px; padding: 4px 8px; border: 1px solid rgba(112,225,193,.3); border-radius: 7px; color: var(--mint); background: rgba(112,225,193,.08); font-size: 9px; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  .mascot-transition, .mascot-visual, .mascot-img { animation: none !important; transition: none !important; }
}
@media (max-width: 640px) {
  .mascot { right: 10px; bottom: 96px; width: 160px; align-items: flex-end; }
  .mascot-transition, .mascot-visual { width: 76px; height: 76px; }
  .mascot-tag { width: 160px; font-size: 9px; }
  .mascot-dev { left: 10px; bottom: 10px; width: calc(100vw - 20px); padding: 9px 10px; }
  .mascot-dev-scale span:nth-child(2), .mascot-dev-scale span:nth-child(4) { display: none; }
}
