:root {
--radius: 16px;
--radius-sm: 10px;
--radius-lg: 24px;
--font: "Inter", system-ui, -apple-system, sans-serif;
--mono: "JetBrains Mono", ui-monospace, monospace;
--maxw: 1120px;
--ease: cubic-bezier(0.22, 1, 0.36, 1);
}
:root[data-theme="light"] {
--bg: #f6f6f8;
--bg-grad: radial-gradient(1200px 600px at 50% -10%, #eef0ff 0%, rgba(238,240,255,0) 60%);
--surface: #ffffff;
--surface-2: #f4f4f6;
--surface-hover: #fbfbfd;
--text: #18181b;
--text-2: #52525b;
--text-3: #8b8b94;
--border: #e8e8ec;
--border-2: #dddde3;
--accent: #4f46e5;
--accent-2: #6366f1;
--accent-fg: #ffffff;
--accent-soft: #eef1ff;
--accent-soft-2: #e3e7ff;
--good: #16a34a;
--good-soft: #e7f6ec;
--shadow-sm: 0 1px 2px rgba(24,24,40,0.05), 0 1px 1px rgba(24,24,40,0.03);
--shadow: 0 4px 16px rgba(24,24,40,0.06), 0 1px 3px rgba(24,24,40,0.04);
--shadow-lg: 0 18px 50px rgba(24,24,40,0.12), 0 4px 14px rgba(24,24,40,0.06);
--shadow-accent: 0 8px 24px rgba(79,70,229,0.28);
}
:root[data-theme="dark"] {
--bg: #09090b;
--bg-grad: radial-gradient(1200px 600px at 50% -10%, #1c1830 0%, rgba(28,24,48,0) 60%);
--surface: #141417;
--surface-2: #1c1c20;
--surface-hover: #1a1a1e;
--text: #fafafa;
--text-2: #a1a1aa;
--text-3: #70707a;
--border: #26262b;
--border-2: #303036;
--accent: #a78bfa;
--accent-2: #8b5cf6;
--accent-fg: #0b0b0f;
--accent-soft: #1a1730;
--accent-soft-2: #221d3d;
--good: #4ade80;
--good-soft: #142a1c;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
--shadow: 0 4px 16px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
--shadow-lg: 0 18px 50px rgba(0,0,0,0.55), 0 4px 14px rgba(0,0,0,0.4);
--shadow-accent: 0 8px 24px rgba(139,92,246,0.4);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
font-family: var(--font);
background: var(--bg);
color: var(--text);
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
line-height: 1.5;
}
#root { min-height: 100vh; }
::selection { background: var(--accent-soft-2); color: var(--text); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; cursor: pointer; }
input { font-family: inherit; } .app-bg {
min-height: 100vh;
background-image: var(--bg-grad);
background-repeat: no-repeat;
display: flex;
flex-direction: column;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; } .hdr {
position: sticky; top: 0; z-index: 50;
backdrop-filter: saturate(180%) blur(14px);
background: color-mix(in srgb, var(--bg) 78%, transparent);
border-bottom: 1px solid var(--border);
}
.hdr-inner { height: 64px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand-mark {
width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
background: linear-gradient(140deg, var(--accent), var(--accent-2));
color: #fff; font-weight: 800; font-size: 18px; box-shadow: var(--shadow-accent);
}
.brand b { color: var(--accent); }
.hdr-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.hdr-link {
padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--text-2);
transition: background .15s, color .15s;
}
.hdr-link:hover { background: var(--surface-2); color: var(--text); }
.hdr-link.active { background: var(--accent-soft); color: var(--accent); }
.hdr-spacer { flex: 1; }
.icon-btn {
width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
transition: all .15s var(--ease);
}
.icon-btn:hover { color: var(--text); border-color: var(--border-2); transform: translateY(-1px); } .hdr-search {
display: inline-flex; align-items: center; gap: 9px; height: 40px; padding: 0 12px 0 14px;
border-radius: 11px; font-size: 14.5px; color: var(--text-3); min-width: 200px;
border: 1px solid var(--border); background: var(--surface); transition: all .15s var(--ease);
}
.hdr-search:hover { border-color: var(--border-2); color: var(--text-2); }
.hdr-search .hdr-search-text { flex: 1; text-align: left; }
.hdr-kbd { font-family: var(--mono); font-size: 11px; color: var(--text-3); padding: 3px 7px; border: 1px solid var(--border); border-radius: 7px; background: var(--surface-2); } .hdr-fav {
position: relative; display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 15px;
border-radius: 11px; font-weight: 600; font-size: 14.5px; color: var(--text);
border: 1px solid var(--border); background: var(--surface); transition: all .15s var(--ease);
}
.hdr-fav:hover { border-color: var(--border-2); transform: translateY(-1px); color: var(--accent); }
:root[data-theme="dark"] .hdr-fav:hover { color: var(--accent); }
.hdr-fav.active { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); }
:root[data-theme="dark"] .hdr-fav.active { color: var(--accent); }
.fav-badge {
min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--accent); color: var(--accent-fg);
font-size: 11.5px; font-weight: 800; display: grid; place-items: center; line-height: 1;
}
.fav-badge-n { display: block; }
.btn {
display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px;
border-radius: 11px; font-weight: 600; font-size: 14.5px; transition: all .15s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--accent-fg); box-shadow: var(--shadow-accent); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost { border: 1px solid var(--border); background: var(--surface); color: var(--text); }
.btn-ghost:hover { border-color: var(--border-2); background: var(--surface-hover); } .hero { padding: 64px 0 28px; text-align: center; }
.eyebrow {
display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
background: var(--accent-soft); color: var(--accent); font-weight: 600; font-size: 13px; margin-bottom: 22px;
white-space: nowrap;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
font-size: clamp(34px, 5.4vw, 58px); line-height: 1.04; letter-spacing: -0.035em;
margin: 0 0 16px; font-weight: 800; text-wrap: balance;
}
.hero h1 .grad {
background: linear-gradient(115deg, var(--accent), var(--accent-2) 70%, #c084fc);
-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { max-width: 600px; margin: 0 auto; font-size: 18px; color: var(--text-2); text-wrap: pretty; } .search-wrap { max-width: 640px; margin: 30px auto 0; position: relative; }
.search {
display: flex; align-items: center; gap: 12px; height: 60px; padding: 0 18px;
background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
box-shadow: var(--shadow); transition: border-color .15s, box-shadow .15s;
}
.search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.search input {
flex: 1; border: none; background: none; outline: none; font-size: 17px; color: var(--text);
}
.search input::placeholder { color: var(--text-3); }
.search kbd {
font-family: var(--mono); font-size: 12px; color: var(--text-3); padding: 4px 8px;
border: 1px solid var(--border); border-radius: 7px; background: var(--surface-2);
} .pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 22px auto 0; }
.pill {
display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border-radius: 999px;
font-weight: 600; font-size: 14px; color: var(--text-2); white-space: nowrap;
border: 1px solid var(--border); background: var(--surface); transition: all .15s var(--ease);
}
.pill .ic { font-size: 15px; }
.pill:hover { border-color: var(--border-2); color: var(--text); transform: translateY(-1px); }
.pill.active { background: var(--text); color: var(--bg); border-color: var(--text); } .section { padding: 36px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-head h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.section-head .sub { color: var(--text-3); font-size: 14px; margin-top: 2px; }
.link-arrow { color: var(--accent); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.link-arrow:hover { gap: 8px; } .grid {
display: grid; gap: 14px;
grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
}
.grid.dense { grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)); gap: 13px; }
.tile {
position: relative; background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius); padding: 20px 14px 14px; text-align: center;
transition: transform .16s var(--ease), border-color .16s, box-shadow .16s;
overflow: hidden; cursor: pointer; display: flex; flex-direction: column;
}
.tile:hover { transform: translateY(-3px); border-color: var(--border-2); box-shadow: var(--shadow); }
.tile:active { transform: translateY(-1px) scale(0.99); }
.tile.collected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.tile-glyph {
font-size: 48px; line-height: 1; height: 62px; display: grid; place-items: center;
margin-bottom: 10px; color: var(--text);
font-family: "Inter", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}
.tile-glyph.emoji { font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; }
.tile-name { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.3;
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
min-height: 2.6em; }
.tile-code { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-top: 3px; }
.tile-copy {
margin-top: 12px; width: 100%; height: 38px; border-radius: 10px;
display: inline-flex; align-items: center; justify-content: center; gap: 7px;
font-weight: 600; font-size: 13px; color: var(--text-2);
background: var(--surface-2); border: 1px solid var(--border); transition: all .14s;
}
.tile-copy:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }
.tile-copy.done { background: var(--good-soft); color: var(--good); border-color: var(--good); }
.tile-corner {
position: absolute; top: 7px; display: flex; opacity: 1;
transition: opacity .15s, transform .15s;
}
.tile-corner.left { left: 7px; }
.tile-corner.right { right: 7px; }
.corner-btn {
width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border);
transition: all .14s;
}
.corner-btn:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }
.corner-btn.on { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); } .corner-btn.fav-btn { background: transparent; border-color: transparent; color: var(--text-3); }
.tile:hover .corner-btn.fav-btn { background: var(--surface-2); border-color: var(--border); color: var(--text-2); }
.corner-btn.fav-btn:hover { background: color-mix(in srgb, var(--accent) 12%, var(--surface-2)); color: var(--accent); border-color: var(--accent); }
.corner-btn.fav-btn.on { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); } .tile:hover .corner-btn.fav-btn.on,
.corner-btn.fav-btn.on:hover { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); } .corner-btn.fav-btn svg, .big-fav-btn svg, .hdr-fav svg { display: block; }
.tile.is-fav .tile-corner { opacity: 1; transform: none; } .tile-handle {
position: absolute; top: 7px; left: 7px; z-index: 3; width: 26px; height: 26px;
display: grid; place-items: center; border: none; background: transparent; color: var(--text-3);
cursor: grab; touch-action: none; border-radius: 8px; transition: color .14s, background .14s;
}
.tile-handle:hover { color: var(--text); background: var(--surface-2); }
.tile-handle:active { cursor: grabbing; }
.tile.dragging { opacity: .55; outline: 2px dashed var(--accent); outline-offset: -2px; }
.tile.dragging .tile-copy { visibility: hidden; } .tile-copied {
position: absolute; inset: 0; display: grid; place-items: center; gap: 6px;
background: var(--good-soft); color: var(--good); opacity: 0; pointer-events: none;
transition: opacity .18s;
}
.tile.flash .tile-copied { opacity: 1; }
.tile-copied .ck { width: 30px; height: 30px; }
.tile-copied span { font-size: 12px; font-weight: 700; } .cat-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.cat-card {
display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--surface);
border: 1px solid var(--border); border-radius: var(--radius); transition: all .16s var(--ease); cursor: pointer;
}
.cat-card:hover { transform: translateY(-3px); border-color: var(--border-2); box-shadow: var(--shadow); }
.cat-ic {
width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 24px;
background: var(--accent-soft); color: var(--accent); flex-shrink: 0;
}
.cat-meta { min-width: 0; }
.cat-meta b { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.cat-meta span { font-size: 13px; color: var(--text-3); }
.cat-card .chev { margin-left: auto; color: var(--text-3); transition: transform .15s; }
.cat-card:hover .chev { transform: translateX(3px); color: var(--accent); } .recent { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.recent-label { font-size: 13px; font-weight: 600; color: var(--text-3); display: inline-flex; gap: 7px; align-items: center; }
.recent-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.recent-chip {
min-width: 42px; height: 42px; padding: 0 10px; border-radius: 11px; font-size: 22px;
display: inline-grid; place-items: center; background: var(--surface); border: 1px solid var(--border);
transition: all .14s; cursor: pointer;
}
.recent-chip:hover { border-color: var(--accent); transform: translateY(-2px); } .fav-group-label { font-size: 13px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.fav-empty { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 52px 24px; }
.fav-empty .eg { color: var(--border-2); display: flex; justify-content: center; margin-bottom: 14px; } .cmdk-backdrop {
position: fixed; inset: 0; z-index: 90; display: flex; justify-content: center; align-items: flex-start;
padding: 12vh 16px 16px; background: color-mix(in srgb, var(--bg) 55%, transparent);
backdrop-filter: blur(6px); animation: cmdkFade .14s var(--ease);
}
@keyframes cmdkFade { from { opacity: 0; } to { opacity: 1; } }
.cmdk {
width: min(640px, 100%); max-height: 70vh; display: flex; flex-direction: column;
background: var(--surface); border: 1px solid var(--border-2); border-radius: 18px;
box-shadow: var(--shadow-lg); overflow: hidden; animation: cmdkPop .18s var(--ease);
}
@keyframes cmdkPop { from { opacity: 0; transform: translateY(-8px) scale(.985); } to { opacity: 1; transform: none; } }
.cmdk-input { display: flex; align-items: center; gap: 14px; padding: 0 18px; height: 72px; flex-shrink: 0; border-bottom: 1px solid var(--border); }
.cmdk-search-ic { color: var(--text-3); display: flex; }
.cmdk-input input { flex: 1; border: none; background: none; outline: none; font-size: 18.5px; color: var(--text); }
.cmdk-input input::placeholder { color: var(--text-3); }
.cmdk-esc { font-family: var(--mono); font-size: 11px; color: var(--text-3); padding: 4px 8px; border: 1px solid var(--border); border-radius: 7px; background: var(--surface-2); }
.cmdk-list { overflow-y: auto; padding: 8px; flex: 1; }
.cmdk-section { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); padding: 8px 10px 6px; }
.cmdk-row {
display: flex; align-items: center; gap: 14px; padding: 9px 12px; border-radius: 11px; cursor: pointer;
border: 1px solid transparent;
}
.cmdk-row.active { background: var(--accent-soft); }
.cmdk-row.copied { background: var(--good-soft); }
.cmdk-glyph {
width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; font-size: 24px;
background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; color: var(--text);
font-family: "Inter", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}
.cmdk-glyph.emoji { font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; }
.cmdk-row.active .cmdk-glyph { border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.cmdk-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.cmdk-name { font-size: 14.5px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cmdk-cat { font-size: 12px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cmdk-uni { font-family: var(--mono); font-size: 11.5px; color: var(--text-3); flex-shrink: 0; }
.cmdk-tag { font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 3px 9px; border-radius: 999px; flex-shrink: 0; }
.cmdk-action { width: 108px; flex-shrink: 0; display: flex; align-items: center; justify-content: flex-end; gap: 7px; }
.cmdk-open, .cmdk-fav {
width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0;
border: 1px solid var(--border); color: var(--text-3);
transition: opacity .12s, color .12s, border-color .12s, background .12s;
}
.cmdk-open svg, .cmdk-fav svg { display: block; } .cmdk-open { background: var(--surface); opacity: 0; }
.cmdk-row.active .cmdk-open { opacity: 1; } .cmdk-fav { background: transparent; border-color: transparent; opacity: 1; }
.cmdk-row.active .cmdk-fav { background: var(--surface); border-color: var(--border); color: var(--text-2); }
.cmdk-fav.on { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
.cmdk-open:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.cmdk-fav:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.cmdk-fav.on:hover { color: var(--accent-fg); background: var(--accent); }
.cmdk-enter { font-size: 14px; color: var(--text-3); opacity: 0; }
.cmdk-row.active .cmdk-enter { opacity: 1; color: var(--accent); }
.cmdk-copied { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--good); white-space: nowrap; }
.cmdk-empty { text-align: center; color: var(--text-3); padding: 40px 20px; font-size: 14.5px; }
.cmdk-footer { display: flex; align-items: center; gap: 18px; padding: 10px 16px; flex-shrink: 0; border-top: 1px solid var(--border); background: var(--surface-2); font-size: 12px; color: var(--text-3); }
.cmdk-footer kbd { font-family: var(--mono); font-size: 11px; padding: 2px 6px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); margin-right: 2px; }
.cmdk-footer-brand { margin-left: auto; font-weight: 700; color: var(--text-3); } .toast-wrap { position: fixed; left: 50%; top: 78px; transform: translateX(-50%); z-index: 80;
display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast {
display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 12px; border-radius: 12px;
background: var(--text); color: var(--bg); font-weight: 600; font-size: 14px; box-shadow: var(--shadow-lg);
animation: toastIn .28s var(--ease);
}
.toast .tg { font-size: 18px; }
.toast .tk { font-family: var(--mono); font-size: 12px; opacity: .7; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-10px) scale(.96); } to { opacity: 1; transform: none; } } .crumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-3); padding-top: 22px; flex-wrap: wrap; }
.crumb a:hover { color: var(--accent); }
.crumb .sep { opacity: .5; }
.crumb .cur { color: var(--text-2); font-weight: 600; } .detail { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.detail-stack { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.tech-panel { display: flex; flex-direction: column; }
.tech-panel .code-rows { display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: space-between; margin-top: 2px; }
.tech-panel .code-row + .code-row { margin-top: 0; }
.glyph-card {
position: relative; display: flex; flex-direction: column;
background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 26px; text-align: center; box-shadow: var(--shadow);
overflow: hidden;
}
.detail-col { display: flex; flex-direction: column; min-width: 0; }
.detail-col > * + * { margin-top: 18px; }
.detail-col.sticky-col { position: sticky; top: 86px; align-self: start; }
.glyph-card::before {
content: ""; position: absolute; inset: 0; background:
radial-gradient(420px 240px at 50% 0%, var(--accent-soft), transparent 70%);
pointer-events: none;
}
.glyph-big {
position: relative; flex: 1; display: grid; place-items: center; min-height: 150px;
font-size: clamp(92px, 12vw, 132px); line-height: 1; margin: 8px 0 0;
font-family: "Inter", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
cursor: pointer; transition: transform .2s var(--ease);
}
.glyph-big:hover { transform: scale(1.04); }
.glyph-big.emoji { font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; }
.glyph-cat-tag {
position: absolute; top: 16px; left: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px;
background: var(--accent-soft); color: var(--accent); font-weight: 600; font-size: 13px;
}
.copy-hint { position: relative; color: var(--text-3); font-size: 13.5px; margin-top: 14px; }
.big-copy-btn {
position: relative; flex: 1; height: 54px; border-radius: 14px;
background: var(--accent); color: var(--accent-fg); font-weight: 700; font-size: 16px;
display: inline-flex; align-items: center; justify-content: center; gap: 10px;
box-shadow: var(--shadow-accent); transition: all .16s var(--ease);
}
.big-copy-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.big-copy-btn.done { background: var(--good); box-shadow: none; }
.glyph-actions { position: relative; display: flex; gap: 10px; margin-top: 22px; }
.big-fav-btn {
width: 54px; height: 54px; flex-shrink: 0; border-radius: 14px;
display: grid; place-items: center; color: var(--text-2);
background: var(--surface-2); border: 1px solid var(--border); transition: all .16s var(--ease);
}
.big-fav-btn:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.big-fav-btn.on { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.panel + .panel { margin-top: 18px; }
.panel h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin: 0 0 14px; font-weight: 700; }
.panel h2 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.panel h2.kicker { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin: 0 0 14px; font-weight: 700; }
.panel p { color: var(--text-2); margin: 0 0 12px; text-wrap: pretty; } .seo-wrap { max-width: 768px; }
.seo-wrap.full { max-width: none; }
.panel.seo { padding: 30px 32px; }
.panel.seo > div + div { margin-top: 30px; }
.panel.seo h2.title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.panel.seo h3 { font-size: 16px; font-weight: 700; text-transform: none; letter-spacing: -0.01em; color: var(--text); margin: 18px 0 5px; }
.panel.seo p { font-size: 15.5px; line-height: 1.65; } .seo-body { position: relative; }
.seo-body.clamped { max-height: 264px; overflow: hidden; }
.panel.seo.cols .seo-body { column-count: 1; }
.panel.seo.cols .seo-body > div { margin-top: 0; margin-bottom: 30px; }
.panel.seo.cols .seo-body > div:last-child { margin-bottom: 0; }
.seo-fade {
display: none;
position: absolute; left: 0; right: 0; bottom: 0; height: 120px; pointer-events: none;
background: linear-gradient(to bottom, transparent, var(--surface) 92%);
}
.seo-body.clamped .seo-fade { display: block; }
.seo-more {
display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
height: 42px; padding: 0 20px; border-radius: 11px; font-weight: 600; font-size: 14.5px;
color: var(--text); background: var(--surface-2); border: 1px solid var(--border); transition: all .15s var(--ease);
}
.seo-more:hover { border-color: var(--border-2); background: var(--surface-hover); transform: translateY(-1px); }
.seo-more-ic { display: inline-flex; transition: transform .2s var(--ease); }
.seo-more-ic { transform: rotate(90deg); }
.seo-more-ic.up { transform: rotate(-90deg); }
.panel.seo.cols { column-gap: 48px; } .panel.faq { padding: 24px 28px 10px; }
.panel.faq h2.faq-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:first-child { border-top: none; }
.panel.faq h3.faq-q {
display: flex; align-items: center; justify-content: space-between; gap: 16px;
margin: 0; padding: 18px 4px; cursor: pointer; user-select: none;
font-size: 16px; font-weight: 600; letter-spacing: -0.01em; text-transform: none; color: var(--text);
transition: color .14s;
}
.panel.faq h3.faq-q:hover { color: var(--accent); }
.panel.faq h3.faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }
.faq-q .faq-ic { color: var(--text-3); transition: transform .26s var(--ease), color .14s; flex-shrink: 0; }
.faq-item.open h3.faq-q { color: var(--accent); }
.faq-item.open .faq-ic { transform: rotate(90deg); color: var(--accent); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0 4px 18px; color: var(--text-2); font-size: 15px; line-height: 1.6; max-width: 760px; } .detail-head { padding-top: 10px; }
.detail-head h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em;
margin: 8px 0 10px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.detail-head h1 .hg { font-size: 0.78em; color: var(--accent); font-weight: 700;
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Inter", "Noto Color Emoji", sans-serif; }
.detail-head .lead { color: var(--text-2); font-size: 17px; margin: 0; max-width: 660px; text-wrap: pretty; }
.panel p:last-child { margin-bottom: 0; } .code-row {
display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 12px;
background: var(--surface-2); border: 1px solid var(--border); transition: border-color .14s;
}
.code-row + .code-row { margin-top: 10px; }
.code-row:hover { border-color: var(--border-2); }
.code-row .cr-label { font-size: 12.5px; font-weight: 600; color: var(--text-3); width: 84px; flex-shrink: 0; }
.code-row .cr-val { font-family: var(--mono); font-size: 15px; color: var(--text); flex: 1; word-break: break-all; }
.code-copy {
width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0;
background: var(--surface); border: 1px solid var(--border); color: var(--text-2); transition: all .14s;
}
.code-copy:hover { color: var(--accent); border-color: var(--accent); }
.code-copy.done { color: var(--good); border-color: var(--good); } .plat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 900px) { .plat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .plat-grid { grid-template-columns: repeat(2, 1fr); } }
.plat-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 20px 8px 14px; text-align: center; }
.plat-card.me { border-color: var(--accent); background: var(--accent-soft); }
.plat-glyph { font-size: 46px; line-height: 1; height: 56px; display: grid; place-items: center; color: var(--text);
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; }
.plat-glyph img { width: 46px; height: 46px; display: block; object-fit: contain; }
.plat-label { font-size: 13.5px; font-weight: 700; margin-top: 10px; letter-spacing: -0.01em; }
.plat-sub { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.panel p.plat-note { font-size: 12.5px; color: var(--text-3); margin: 14px 0 0; line-height: 1.55; text-wrap: pretty; }
.plat-note b { color: var(--text-2); } .footer { border-top: 1px solid var(--border); margin-top: 48px; padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a { color: var(--text-3); font-size: 13.5px; }
.footer a:hover { color: var(--text); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; } .empty { text-align: center; padding: 60px 20px; color: var(--text-3); }
.empty .eg { font-size: 44px; margin-bottom: 12px; } @media (max-width: 860px) {
.detail { grid-template-columns: 1fr; }
.glyph-card { position: static; }
.detail-col.sticky-col { position: static; }
.hdr-nav { display: none; }
}
@media (max-width: 540px) {
.container { padding: 0 16px; }
.hero { padding: 40px 0 20px; }
.add-btn-text { display: none; }
} @keyframes pop { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
.pop { animation: pop .32s var(--ease); } .fav-btn .fav-on { display: none; }
.fav-btn .fav-off { display: grid; place-items: center; width: 100%; height: 100%; }
.corner-btn.fav-btn.on .fav-on, .fav-btn.on .fav-on { display: grid; place-items: center; width: 100%; height: 100%; }
.corner-btn.fav-btn.on .fav-off, .fav-btn.on .fav-off { display: none; }
.tile-copy .label { display: inline; }
.glyph-cat-tag { text-decoration: none; } .merk-actions { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; } [hidden] { display: none !important; } .tile-glyph:not(.emoji), .glyph-big:not(.emoji), .cmdk-glyph:not(.emoji) { font-variant-emoji: text; } html, body { overflow-x: hidden; max-width: 100%; }
@media (max-width: 720px) {
.hdr-inner { gap: 10px; }
.hdr-search { min-width: 0; flex: 1 1 auto; padding: 0 12px; }
.hdr-search .hdr-search-text, .hdr-search .hdr-kbd { display: none; }
.hdr-fav .hdr-fav-text { display: none; }
.hdr-fav { padding: 0 12px; }
}
@media (max-width: 460px) {
.hdr-inner { gap: 8px; }
.hdr-search { flex: 0 0 auto; width: 40px; padding: 0; justify-content: center; }
.brand { font-size: 16px; }
.brand-mark { width: 28px; height: 28px; font-size: 16px; }
.hdr-fav { padding: 0 10px; }
.container { padding: 0 14px; }
}