:root { --bg: #FBFAF7;
--surface: #FFFFFF;
--surface-2: #F6F2EA;
--surface-3: #F1ECE2; --ink: #1B1813;
--ink-2: #6E695F;
--ink-3: #9C958A; --line: #ECE6DB;
--line-strong: #DCD4C6; --accent: #F7931A;
--accent-ink: #B96A05;
--accent-soft: rgba(247, 147, 26, 0.12);
--accent-soft-2: rgba(247, 147, 26, 0.07); --up: oklch(0.6 0.13 152);
--down: oklch(0.6 0.17 27);
--warn-bg: #FBF1DC;
--warn-line: #EBD9AE;
--warn-ink: #7A5A14; --font-display: "Newsreader", Georgia, "Times New Roman", serif;
--font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
--font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace; --r-xs: 7px;
--r-sm: 10px;
--r: 14px;
--r-lg: 20px;
--r-xl: 28px;
--shadow-sm: 0 1px 2px rgba(38, 30, 16, 0.05), 0 1px 1px rgba(38, 30, 16, 0.04);
--shadow: 0 4px 14px rgba(38, 30, 16, 0.06), 0 1px 3px rgba(38, 30, 16, 0.05);
--shadow-lg: 0 18px 44px rgba(38, 30, 16, 0.12), 0 4px 12px rgba(38, 30, 16, 0.06);
--maxw: 1200px;
--gut: 28px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
} body.density-compact { --gut: 22px; }
body.density-comfy { --gut: 34px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
width: 100%;
max-width: var(--maxw);
margin: 0 auto;
padding: 0 24px;
} .eyebrow {
font-family: var(--font-mono);
font-size: 11.5px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent-ink);
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 8px;
}
.eyebrow::before {
content: "";
width: 22px;
height: 1.5px;
background: var(--accent);
display: inline-block;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
body.display-sans h1,
body.display-sans h2,
body.display-sans h3 { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.02em; }
.section-title {
font-size: clamp(26px, 3vw, 38px);
line-height: 1.08;
margin: 12px 0 0;
color: var(--ink);
}
.section-title .hl { color: var(--accent-ink); font-style: italic; }
body.display-sans .section-title .hl { font-style: normal; }
.lede { color: var(--ink-2); font-size: 16.5px; max-width: 64ch; }
.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.pill-btn {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 0.04em;
text-transform: uppercase;
font-weight: 700;
padding: 7px 12px;
border-radius: 999px;
border: 1px solid var(--accent);
color: #fff;
background: var(--accent);
display: inline-flex;
align-items: center;
gap: 6px;
cursor: pointer;
transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
white-space: nowrap;
}
.pill-btn:hover { background: var(--accent-ink); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.pill-btn svg { width: 11px; height: 11px; } .site-header {
position: sticky;
top: 0;
z-index: 50;
background: rgba(251, 250, 247, 0.86);
backdrop-filter: saturate(1.4) blur(14px);
border-bottom: 1px solid var(--line);
}
.header-bar {
height: 70px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
width: 34px; height: 34px;
border-radius: 9px;
background: var(--accent);
color: #fff;
display: grid; place-items: center;
font-weight: 800;
font-size: 19px;
box-shadow: 0 4px 10px var(--accent-soft);
}
.brand-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.brand-name b { color: var(--accent-ink); font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.02em;
color: var(--ink-2);
padding: 9px 14px;
border-radius: 999px;
transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--ink); background: var(--surface-2); }
.main-nav a.active { color: var(--accent-ink); background: var(--accent-soft); }
.header-right { display: flex; align-items: center; gap: 10px; }
.lang {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 0.06em;
color: var(--ink-2);
border: 1px solid var(--line-strong);
padding: 8px 11px;
border-radius: 999px;
display: inline-flex; align-items: center; gap: 7px;
cursor: pointer;
list-style: none;
user-select: none;
}
.lang::-webkit-details-marker { display: none; }
.lang:hover { background: var(--surface-2); }
.lang .caret { transition: transform .18s ease; }
.lang-dd[open] .lang .caret { transform: rotate(180deg); }
.lang-dd { position: relative; }
.lang-menu {
position: absolute; right: 0; top: calc(100% + 8px);
background: var(--surface);
border: 1px solid var(--line-strong);
border-radius: var(--r-sm);
box-shadow: var(--shadow-lg);
padding: 6px;
display: flex; flex-direction: column; gap: 2px;
min-width: 160px; z-index: 70;
}
.lang-menu button {
font-family: var(--font-body);
font-size: 14px; text-align: left;
background: none; border: 0; cursor: pointer;
padding: 10px 12px; border-radius: var(--r-xs); color: var(--ink);
transition: background .14s ease;
}
.lang-menu button:hover { background: var(--surface-2); } .hamburger {
display: none;
width: 42px; height: 42px;
border: 1px solid var(--line-strong); border-radius: 11px;
background: var(--surface); cursor: pointer;
flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span {
display: block; width: 18px; height: 2px; border-radius: 2px;
background: var(--ink); transition: transform .25s ease, opacity .2s ease;
}
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .mobile-menu {
display: none;
overflow: hidden;
max-height: 0;
background: var(--surface);
transition: max-height .32s ease;
}
.mobile-menu a {
display: block;
padding: 16px 24px;
font-size: 16px; font-weight: 600;
color: var(--ink);
border-top: 1px solid var(--line);
}
.mobile-menu a.active { color: var(--accent-ink); } .ticker {
border-bottom: 1px solid var(--line);
background: var(--surface);
overflow: hidden;
}
.ticker-track {
display: flex;
gap: 0;
width: max-content;
animation: ticker 46s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.tick {
display: inline-flex;
align-items: center;
gap: 9px;
padding: 9px 22px;
border-right: 1px solid var(--line);
font-family: var(--font-mono);
font-size: 12px;
white-space: nowrap;
}
.tick .sym { color: var(--ink); font-weight: 700; letter-spacing: 0.02em; }
.tick .px { color: var(--ink-2); }
.tick .chg { font-weight: 700; }
.tick .chg.up { color: var(--up); }
.tick .chg.down { color: var(--down); }
.tick .dot { width: 16px; height: 16px; border-radius: 50%; display: grid; place-items: center; font-size: 9px; color: #fff; font-weight: 700; }
@media (prefers-reduced-motion: reduce) {
.ticker-track { animation: none; }
} .hero { padding: clamp(40px, 6vw, 76px) 0 clamp(28px, 3vw, 44px); }
.hero-grid {
display: grid;
grid-template-columns: 1.35fr 1fr;
gap: 48px;
align-items: center;
}
.hero h1 {
font-size: clamp(34px, 4.6vw, 56px);
line-height: 1.02;
margin: 18px 0 0;
letter-spacing: -0.02em;
}
.hero h1 .btc {
display: inline-grid; place-items: center;
width: 0.92em; height: 0.92em;
background: var(--accent); color: #fff;
border-radius: 50%;
font-size: 0.62em;
vertical-align: 0.06em;
margin-left: 0.12em;
font-family: var(--font-body);
font-weight: 800;
}
.hero .lede { margin-top: 20px; font-size: 17.5px; }
.hero-meta {
display: flex;
gap: 30px;
margin-top: 30px;
flex-wrap: wrap;
}
.hero-stat .n {
font-family: var(--font-display);
font-size: 30px;
font-weight: 600;
color: var(--ink);
line-height: 1;
}
body.display-sans .hero-stat .n { font-family: var(--font-body); font-weight: 800; }
.hero-stat .l {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-3);
margin-top: 7px;
}
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual .glow {
position: absolute; inset: 0;
background: radial-gradient(60% 60% at 60% 40%, var(--accent-soft), transparent 70%);
filter: blur(8px);
}
.char-slot {
position: relative;
width: 300px; height: 340px;
}
image-slot { width: 100%; height: 100%; }
.slot-deco {
position: absolute; z-index: -1;
width: 230px; height: 230px;
border-radius: 50%;
background: var(--accent-soft);
top: 40px; left: 50%; transform: translateX(-50%);
} .dir-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 28px;
flex-wrap: wrap;
margin-bottom: 30px;
}
.dir-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.search {
position: relative;
display: flex; align-items: center;
}
.search svg { position: absolute; left: 14px; width: 16px; height: 16px; color: var(--ink-3); pointer-events: none; }
.search input {
font-family: var(--font-body);
font-size: 14px;
color: var(--ink);
background: var(--surface);
border: 1px solid var(--line-strong);
border-radius: 999px;
padding: 11px 16px 11px 40px;
width: 280px;
outline: none;
transition: border-color .15s, box-shadow .15s;
}
.search input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.search input::placeholder { color: var(--ink-3); }
.count-tag {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--ink-2);
background: var(--surface-2);
border: 1px solid var(--line);
padding: 8px 12px;
border-radius: 999px;
}
.dir-columns {
column-count: 3;
column-gap: var(--gut);
}
@media (max-width: 940px) { .dir-columns { column-count: 2; } }
@media (max-width: 620px) { .dir-columns { column-count: 1; } }
.cat-card {
break-inside: avoid;
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r);
margin-bottom: var(--gut);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: box-shadow .18s ease, border-color .18s ease;
}
.cat-card:hover { box-shadow: var(--shadow); border-color: var(--line-strong); }
.cat-head {
display: flex;
align-items: center;
gap: 10px;
padding: 13px 15px;
background: linear-gradient(var(--surface-2), var(--surface-2));
border-bottom: 1px solid var(--line);
}
.cat-icon {
width: 26px; height: 26px;
border-radius: 8px;
background: var(--accent-soft);
color: var(--accent-ink);
display: grid; place-items: center;
font-size: 13px;
flex: 0 0 auto;
}
.cat-name {
font-family: var(--font-mono);
font-size: 11.5px;
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 700;
color: var(--ink);
flex: 1;
}
.cat-count {
font-family: var(--font-mono);
font-size: 11px;
color: var(--ink-3);
}
.cat-list { padding: 5px; }
.site-row {
display: flex;
align-items: center;
gap: 11px;
padding: 8px 9px;
border-radius: var(--r-sm);
transition: background .14s ease;
}
.site-row:hover { background: var(--surface-2); }
.site-mono {
width: 26px; height: 26px;
border-radius: 7px;
display: grid; place-items: center;
font-size: 12px;
font-weight: 800;
color: #fff;
flex: 0 0 auto;
font-family: var(--font-body);
}
.site-name { font-size: 14px; font-weight: 600; color: var(--ink); flex: 1; letter-spacing: -0.005em; }
.visit {
font-family: var(--font-mono);
font-size: 10px;
letter-spacing: 0.06em;
text-transform: uppercase;
font-weight: 700;
color: var(--accent-ink);
background: var(--accent-soft);
border: 1px solid transparent;
padding: 6px 10px;
border-radius: 999px;
display: inline-flex; align-items: center; gap: 5px;
cursor: pointer;
opacity: 0;
transform: translateX(-4px);
transition: opacity .14s ease, transform .14s ease, background .14s ease, color .14s ease;
}
.site-row:hover .visit { opacity: 1; transform: none; }
.visit:hover { background: var(--accent); color: #fff; }
.visit svg { width: 10px; height: 10px; }
.no-results {
display: none;
text-align: center;
color: var(--ink-2);
font-size: 15px;
padding: 40px 0;
} .sponsor {
margin-top: 8px;
border: 1px dashed var(--line-strong);
border-radius: var(--r);
background:
repeating-linear-gradient(135deg, var(--surface-2) 0 12px, var(--surface) 12px 24px);
min-height: 132px;
display: grid; place-items: center;
text-align: center;
}
.sponsor .lbl {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-3);
} .feature-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-top: 34px;
}
@media (max-width: 720px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
display: flex;
gap: 15px;
padding: 22px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r);
box-shadow: var(--shadow-sm);
}
.feature .tick-ic {
width: 36px; height: 36px;
border-radius: 10px;
background: var(--accent-soft);
color: var(--accent-ink);
display: grid; place-items: center;
flex: 0 0 auto;
}
.feature h4 { margin: 2px 0 6px; font-family: var(--font-body); font-size: 16px; font-weight: 700; }
.feature p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.prose { max-width: 74ch; }
.prose p { color: var(--ink-2); margin: 0 0 16px; }
.prose strong { color: var(--ink); font-weight: 700; } .blog-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; margin-bottom: 38px; }
.blog-head .char-slot { width: 230px; height: 230px; justify-self: end; }
.blog-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 22px;
}
@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.post {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r);
overflow: hidden;
box-shadow: var(--shadow-sm);
display: flex; flex-direction: column;
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
cursor: pointer;
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.post-img {
position: relative;
aspect-ratio: 16 / 10;
background:
repeating-linear-gradient(135deg, var(--surface-3) 0 10px, var(--surface-2) 10px 20px);
display: grid; place-items: center;
overflow: hidden;
}
.post-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.post-img .ph {
font-family: var(--font-mono);
font-size: 10.5px;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--ink-3);
}
.post-tag {
position: absolute; top: 10px; left: 10px; z-index: 2;
font-family: var(--font-mono);
font-size: 9.5px;
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 700;
color: #fff;
background: rgba(27, 24, 19, 0.82);
backdrop-filter: blur(4px);
padding: 5px 9px;
border-radius: 999px;
}
.post-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.post h3 { font-size: 17px; line-height: 1.22; margin: 0; }
.post:hover h3 { color: var(--accent-ink); }
.post p { margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.5; flex: 1; }
.post-date {
font-family: var(--font-mono);
font-size: 10.5px;
letter-spacing: 0.05em;
color: var(--ink-3);
padding-top: 9px;
border-top: 1px solid var(--line);
display: flex; align-items: center; gap: 7px;
} .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.reason {
display: flex; gap: 14px;
padding: 16px 0;
border-bottom: 1px solid var(--line);
}
.reason:last-child { border-bottom: 0; }
.reason .num {
font-family: var(--font-mono);
font-size: 12px;
color: var(--accent-ink);
font-weight: 700;
flex: 0 0 auto;
width: 26px;
}
.reason h4 { margin: 0 0 5px; font-family: var(--font-body); font-size: 15.5px; font-weight: 700; }
.reason p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.disclaimer {
margin-top: 30px;
background: var(--warn-bg);
border: 1px solid var(--warn-line);
border-radius: var(--r);
padding: 18px 20px;
color: var(--warn-ink);
font-size: 14.5px;
line-height: 1.6;
display: flex; gap: 13px;
}
.disclaimer svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; } .coins-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 16px;
margin-top: 34px;
}
@media (max-width: 920px) { .coins-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .coins-grid { grid-template-columns: repeat(2, 1fr); } }
.coin {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r);
padding: 18px 16px;
box-shadow: var(--shadow-sm);
transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.coin:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.coin-top { display: flex; align-items: center; gap: 11px; }
.coin-badge {
width: 40px; height: 40px;
border-radius: 50%;
display: grid; place-items: center;
color: #fff;
font-weight: 800;
font-size: 15px;
flex: 0 0 auto;
}
.coin-name { font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; }
.coin-ticker { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); text-transform: uppercase; }
.coin-price { font-family: var(--font-mono); font-size: 16px; font-weight: 700; margin-top: 14px; color: var(--ink); letter-spacing: -0.01em; }
.coin-chg { font-family: var(--font-mono); font-size: 12px; font-weight: 700; margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; }
.coin-chg.up { color: var(--up); }
.coin-chg.down { color: var(--down); }
.coin-spark { margin-top: 12px; width: 100%; height: 30px; display: block; } .glossary {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 48px;
margin-top: 30px;
}
@media (max-width: 760px) { .glossary { grid-template-columns: 1fr; } }
.term {
padding: 17px 0;
border-bottom: 1px solid var(--line);
}
.term dt {
font-family: var(--font-body);
font-weight: 700;
font-size: 15px;
color: var(--ink);
margin-bottom: 5px;
display: flex; align-items: center; gap: 9px;
}
.term dt .k {
font-family: var(--font-mono);
font-size: 10px;
color: var(--accent-ink);
background: var(--accent-soft);
padding: 3px 7px;
border-radius: 5px;
letter-spacing: 0.05em;
}
.term dd { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.term dd code { font-family: var(--font-mono); font-size: 12.5px; color: var(--accent-ink); background: var(--accent-soft-2); padding: 1px 5px; border-radius: 4px; } .site-footer {
border-top: 1px solid var(--line);
background: var(--surface);
padding: 44px 0 36px;
margin-top: 20px;
}
.foot-discl {
font-size: 12.5px;
color: var(--ink-3);
line-height: 1.6;
max-width: 90ch;
margin: 0 auto 26px;
text-align: center;
}
.foot-links {
display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: center;
font-size: 13px; color: var(--ink-2);
margin-bottom: 10px;
}
.foot-links a:hover { color: var(--accent-ink); }
.foot-copy { text-align: center; font-size: 13px; color: var(--ink-2); }
.foot-copy b { color: var(--ink); }
.foot-social {
display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center;
font-family: var(--font-mono);
font-size: 11px; letter-spacing: 0.04em;
color: var(--ink-3);
margin-top: 14px;
}
.foot-social a:hover { color: var(--accent-ink); }
@media (max-width: 820px) {
.hero-grid { grid-template-columns: 1fr; }
.hero-visual { order: -1; }
.char-slot { width: 220px; height: 250px; }
.blog-head { grid-template-columns: 1fr; }
.blog-head .char-slot { display: none; }
.main-nav { display: none; }
.hamburger { display: flex; }
.mobile-menu { display: block; }
body.menu-open .mobile-menu { max-height: 320px; border-top: 1px solid var(--line); }
} @media (max-width: 560px) {
.hero { padding: 26px 0 18px; }
.hero h1 { font-size: clamp(30px, 8vw, 40px); }
.hero .lede { font-size: 16px; margin-top: 16px; }
.hero-meta { gap: 22px; margin-top: 22px; }
.char-slot { width: 168px; height: 188px; }
.slot-deco { width: 150px; height: 150px; top: 26px; }
.section { padding: 40px 0; }
.dir-head { margin-bottom: 22px; }
} @media (hover: none) {
.site-row .visit { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
.search input { width: 100%; }
.search { flex: 1; }
.dir-tools { width: 100%; }
.visit { padding: 9px 12px; }
.lang { padding: 10px 12px; }
}.page-head { padding: clamp(30px, 4vw, 52px) 0 clamp(20px, 3vw, 30px); }
.page-head .crumb {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-3);
display: flex; gap: 8px; align-items: center;
margin-bottom: 14px;
}
.page-head .crumb a:hover { color: var(--accent-ink); }
.page-head .crumb .sep { opacity: 0.5; }
.page-title {
font-size: clamp(28px, 3.6vw, 44px);
line-height: 1.05;
margin: 0;
}
.page-title .hl { color: var(--accent-ink); font-style: italic; }
body.display-sans .page-title .hl { font-style: normal; }
.page-sub { color: var(--ink-2); font-size: 16px; margin: 14px 0 0; max-width: 70ch; } .layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 340px;
gap: 48px;
align-items: start;
padding-bottom: clamp(40px, 6vw, 80px);
}
.sidebar { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 24px; }
@media (max-width: 940px) {
.layout { grid-template-columns: 1fr; }
.sidebar { position: static; }
} .site-cards {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin: 8px 0 44px;
}
@media (max-width: 1000px) { .site-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .site-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .site-cards { grid-template-columns: 1fr; } }
.preview-card {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
display: flex; flex-direction: column;
}
.preview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.preview-shot {
aspect-ratio: 16 / 10;
position: relative;
background: repeating-linear-gradient(135deg, var(--surface-3) 0 10px, var(--surface-2) 10px 20px);
}
.preview-shot image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.preview-foot {
display: flex; align-items: center; gap: 10px;
padding: 12px 13px;
border-top: 1px solid var(--line);
}
.preview-foot .site-mono { width: 28px; height: 28px; border-radius: 8px; }
.preview-foot .nm { flex: 1; font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; }
.btn-website {
font-family: var(--font-mono);
font-size: 10px;
letter-spacing: 0.05em;
text-transform: uppercase;
font-weight: 700;
color: #fff;
background: var(--accent);
padding: 7px 11px;
border-radius: 999px;
display: inline-flex; align-items: center; gap: 5px;
transition: background .15s ease, transform .15s ease;
}
.btn-website:hover { background: var(--accent-ink); transform: translateY(-1px); }
.btn-website svg { width: 10px; height: 10px; } .article { max-width: none; }
.article h2 {
font-size: clamp(22px, 2.4vw, 28px);
margin: 38px 0 14px;
line-height: 1.15;
}
.article h3 {
font-family: var(--font-mono);
font-size: 13px;
letter-spacing: 0.1em;
text-transform: uppercase;
font-weight: 700;
color: var(--ink);
margin: 34px 0 12px;
padding-bottom: 9px;
border-bottom: 1px solid var(--line);
}
.article p { color: var(--ink-2); margin: 0 0 16px; font-size: 16px; line-height: 1.7; }
.article p strong, .article li strong { color: var(--ink); font-weight: 700; }
.article a.inl { color: var(--accent-ink); font-weight: 600; }
.article a.inl:hover { text-decoration: underline; }
.article ul, .article ol { color: var(--ink-2); margin: 0 0 16px; padding-left: 22px; line-height: 1.7; }
.article li { margin-bottom: 9px; }
.article ol { counter-reset: li; list-style: none; padding-left: 0; }
.article ol > li {
position: relative; padding-left: 40px;
}
.article ol > li::before {
counter-increment: li;
content: counter(li);
position: absolute; left: 0; top: 1px;
width: 26px; height: 26px;
background: var(--accent-soft); color: var(--accent-ink);
border-radius: 8px;
font-family: var(--font-mono); font-size: 12px; font-weight: 700;
display: grid; place-items: center;
}
.article blockquote {
margin: 24px 0;
padding: 18px 22px;
border-left: 3px solid var(--accent);
background: var(--accent-soft-2);
border-radius: 0 var(--r) var(--r) 0;
font-family: var(--font-display);
font-style: italic;
font-size: 18px;
color: var(--ink);
line-height: 1.5;
}
.article blockquote cite { display: block; margin-top: 10px; font-family: var(--font-mono); font-style: normal; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.figure { margin: 6px 0 26px; }
.figure .frame {
position: relative;
border-radius: var(--r);
overflow: hidden;
border: 1px solid var(--line);
background: repeating-linear-gradient(135deg, var(--surface-3) 0 12px, var(--surface-2) 12px 24px);
aspect-ratio: 16 / 9;
}
.figure.tall .frame { aspect-ratio: 4 / 3; }
.figure image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.figure figcaption { margin-top: 9px; font-size: 13px; color: var(--ink-3); font-style: italic; } .lead-shot { margin-bottom: 24px; } .toc {
background: var(--accent-soft-2);
border: 1px solid var(--line);
border-radius: var(--r);
padding: 18px 20px;
margin: 6px 0 28px;
}
.toc .toc-h {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--accent-ink);
font-weight: 700;
margin-bottom: 12px;
}
.toc ol { counter-reset: toc; list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 28px; }
@media (max-width: 560px) { .toc ol { columns: 1; } }
.toc li {
break-inside: avoid;
padding: 5px 0;
font-size: 14px;
}
.toc a { color: var(--ink-2); display: flex; gap: 9px; align-items: baseline; }
.toc a:hover { color: var(--accent-ink); }
.toc a .i { font-family: var(--font-mono); font-size: 11px; color: var(--accent-ink); font-weight: 700; } .video-embed {
border-radius: var(--r);
overflow: hidden;
border: 1px solid var(--line);
margin: 24px 0;
background: #111;
}
.video-bar { display: flex; align-items: center; gap: 10px; padding: 11px 15px; background: #161616; color: #fff; }
.video-bar .vt { font-weight: 700; font-size: 14px; }
.video-bar .vs { font-size: 12px; color: #9aa; }
.video-stage { position: relative; aspect-ratio: 16 / 9; background: repeating-linear-gradient(135deg, #1d1d1f 0 14px, #232326 14px 28px); }
.video-stage image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-play {
position: absolute; inset: 0; margin: auto;
width: 64px; height: 46px;
background: #f00; border-radius: 12px;
display: grid; place-items: center;
box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.video-play::after { content: ""; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 3px; } .cta-band {
display: flex; align-items: center; justify-content: center; gap: 12px;
text-align: center;
background: linear-gradient(100deg, var(--accent), color-mix(in oklab, var(--accent) 55%, #ffd27a));
color: #fff;
border-radius: 999px;
padding: 20px 28px;
margin: 30px 0;
font-weight: 800;
font-size: clamp(16px, 2vw, 20px);
letter-spacing: 0.01em;
box-shadow: 0 12px 28px var(--accent-soft);
transition: transform .15s ease, box-shadow .15s ease;
text-transform: none;
}
.cta-band:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cta-band svg { width: 18px; height: 18px; } .widget {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r);
padding: 18px;
box-shadow: var(--shadow-sm);
}
.widget-title {
font-family: var(--font-mono);
font-size: 11.5px;
letter-spacing: 0.1em;
text-transform: uppercase;
font-weight: 700;
color: var(--ink);
margin: 0 0 14px;
display: flex; align-items: center; gap: 8px;
}
.widget-title::before { content: ""; width: 16px; height: 2px; background: var(--accent); }
.ad-slot {
border: 1px dashed var(--line-strong);
border-radius: var(--r);
background: repeating-linear-gradient(135deg, var(--surface-2) 0 12px, var(--surface) 12px 24px);
min-height: 250px;
display: grid; place-items: center; text-align: center;
}
.ad-slot .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); } .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.related-card {
border: 1px solid var(--line);
border-radius: var(--r-sm);
overflow: hidden;
transition: border-color .15s, transform .15s, box-shadow .15s;
}
.related-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-card .rc-shot { aspect-ratio: 16 / 10; position: relative; background: repeating-linear-gradient(135deg, var(--surface-3) 0 8px, var(--surface-2) 8px 16px); }
.related-card .rc-shot image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.related-card .rc-foot { display: flex; align-items: center; gap: 7px; padding: 8px 9px; }
.related-card .rc-foot .site-mono { width: 20px; height: 20px; border-radius: 6px; font-size: 9px; }
.related-card .rc-foot .nm { font-size: 12.5px; font-weight: 700; } .ranked-list { display: flex; flex-direction: column; gap: 4px; }
.ranked-item { display: flex; gap: 11px; padding: 9px 6px; border-radius: var(--r-sm); transition: background .14s; }
.ranked-item:hover { background: var(--surface-2); }
.ranked-thumb {
width: 58px; height: 50px; flex: 0 0 auto;
border-radius: var(--r-sm); position: relative; overflow: hidden;
background: repeating-linear-gradient(135deg, var(--surface-3) 0 8px, var(--surface-2) 8px 16px);
}
.ranked-thumb image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.ranked-item .rk-t { font-size: 12.5px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.ranked-item:hover .rk-t { color: var(--accent-ink); } .table-controls {
display: flex; align-items: center; justify-content: space-between;
gap: 16px; flex-wrap: wrap; margin: 6px 0 18px;
}
.table-controls .lbl { font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 9px; }
.table-controls select {
font-family: var(--font-body); font-size: 14px;
border: 1px solid var(--line-strong); border-radius: var(--r-sm);
padding: 7px 10px; background: var(--surface); color: var(--ink); cursor: pointer;
}
.table-controls input {
font-family: var(--font-body); font-size: 14px;
border: 1px solid var(--line-strong); border-radius: var(--r-sm);
padding: 9px 13px; background: var(--surface); color: var(--ink); outline: none;
transition: border-color .15s, box-shadow .15s;
}
.table-controls input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.table-wrap {
border: 1px solid var(--line);
border-radius: var(--r);
overflow: hidden;
box-shadow: var(--shadow-sm);
overflow-x: auto;
}
table.markets { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 880px; }
table.markets thead th {
background: #16140f; color: #fff;
font-family: var(--font-mono);
font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
font-weight: 700; text-align: right;
padding: 13px 14px; white-space: nowrap;
cursor: pointer; user-select: none;
}
table.markets thead th:first-child,
table.markets thead th:nth-child(2) { text-align: left; }
table.markets thead th .car { opacity: 0.4; margin-left: 5px; font-size: 9px; }
table.markets thead th.sorted .car { opacity: 1; color: var(--accent); }
table.markets tbody td { padding: 12px 14px; text-align: right; border-bottom: 1px solid var(--line); white-space: nowrap; font-variant-numeric: tabular-nums; }
table.markets tbody tr { --row-bg: var(--surface); }
table.markets tbody tr:nth-child(even) { background: var(--surface-2); --row-bg: var(--surface-2); }
table.markets tbody tr:hover { background: var(--accent-soft-2); --row-bg: var(--accent-soft-2); }
table.markets td.rank { color: var(--ink-3); font-family: var(--font-mono); font-size: 12px; text-align: left; width: 44px; }
table.markets td.name { text-align: left; }
table.markets td.name a { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--accent-ink); letter-spacing: -0.01em; }
table.markets td.name a:hover { text-decoration: underline; }
table.markets td.name .site-mono { width: 24px; height: 24px; border-radius: 50%; font-size: 11px; }
table.markets td.sym { text-align: left; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
table.markets td.price { font-weight: 700; color: var(--ink); }
table.markets td.chg { font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; }
table.markets td.chg .arr { font-size: 10px; margin-right: 2px; }
td.chg.pos { color: var(--up); background: rgba(34, 160, 100, 0.09); }
td.chg.neg { color: var(--down); background: rgba(214, 70, 50, 0.08); }
.pagination { display: flex; align-items: center; justify-content: flex-end; gap: 7px; flex-wrap: wrap; margin-top: 22px; }
.page-info { margin-right: auto; font-size: 13.5px; color: var(--ink-2); }
.pg {
min-width: 38px; height: 38px; padding: 0 12px;
border: 1px solid var(--line-strong); border-radius: var(--r-sm);
background: var(--surface); color: var(--ink-2);
font-size: 13px; font-weight: 600; cursor: pointer;
display: inline-flex; align-items: center; justify-content: center;
transition: background .14s, color .14s, border-color .14s;
}
.pg:hover:not(:disabled) { border-color: var(--accent); color: var(--accent-ink); }
.pg.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pg:disabled { opacity: 0.4; cursor: default; }
.pg.dots { border: 0; background: transparent; cursor: default; } .crypto-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.crypto-head .ttl { font-size: clamp(26px, 3.2vw, 38px); margin: 0; }
.crypto-price-wrap { display: flex; align-items: center; gap: 12px; }
.crypto-price-wrap .pv { font-family: var(--font-mono); font-size: 24px; font-weight: 700; color: var(--ink); }
.chg-badge { font-family: var(--font-mono); font-size: 13px; font-weight: 700; padding: 6px 11px; border-radius: 999px; }
.chg-badge.pos { color: #fff; background: var(--up); }
.chg-badge.neg { color: #fff; background: var(--down); }
.crypto-intro { display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: start; margin: 26px 0; }
@media (max-width: 560px) { .crypto-intro { grid-template-columns: 1fr; } }
.crypto-logo {
width: 130px; height: 130px;
border: 1px solid var(--line); border-radius: var(--r);
display: grid; place-items: center; background: var(--surface);
}
.crypto-logo .big-badge { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 46px; font-weight: 800; }
.crypto-intro .desc p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; margin: 0 0 14px; }
.crypto-intro .desc strong { color: var(--ink); font-weight: 700; }
.info-block { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; margin-top: 14px; }
@media (max-width: 860px) { .info-block { grid-template-columns: 1fr; } }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.info-list li .k { color: var(--ink-2); }
.info-list li .v { color: var(--ink); font-weight: 700; font-family: var(--font-mono); font-size: 13.5px; }
.chart-card {
border: 1px solid var(--line); border-radius: var(--r);
background: var(--surface); padding: 20px; box-shadow: var(--shadow-sm);
margin-top: 16px;
}
.chart-legend { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-2); margin-bottom: 8px; }
.chart-legend .sw { width: 22px; height: 10px; border-radius: 3px; background: var(--accent); }
.chart-svg { width: 100%; height: 340px; display: block; }
.chart-svg .grid-line { stroke: var(--line); stroke-width: 1; }
.chart-svg .axis-lbl { font-family: var(--font-mono); font-size: 10px; fill: var(--ink-3); }
.links-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 14px; }
@media (max-width: 640px) { .links-cols { grid-template-columns: 1fr; } }
.link-group h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
.link-group ul { list-style: none; margin: 0; padding: 0; }
.link-group li { padding: 7px 0; font-size: 14.5px; color: var(--ink-2); }
.link-group li .lk { color: var(--accent-ink); font-weight: 600; }
.link-group li .lk:hover { text-decoration: underline; }
.link-group .sub { padding-left: 16px; }
.sentiment { margin-top: 16px; }
.sentiment p { color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.sentiment strong { color: var(--ink); } .coin-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 920px) { .coin-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .coin-logos { grid-template-columns: repeat(2, 1fr); } }
.coin-logo-card {
border: 1px solid var(--line); border-radius: var(--r);
background: var(--surface); padding: 18px 14px;
display: flex; flex-direction: column; align-items: center; gap: 12px;
box-shadow: var(--shadow-sm);
transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.coin-logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.coin-logo-card .lb { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 24px; font-weight: 800; }
.coin-logo-card .nm { font-size: 13.5px; font-weight: 700; text-align: center; } .featured-post {
display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
background: var(--surface); box-shadow: var(--shadow); margin-bottom: 40px;
}
@media (max-width: 760px) { .featured-post { grid-template-columns: 1fr; } }
.featured-post .fp-shot { position: relative; min-height: 320px; background: repeating-linear-gradient(135deg, var(--surface-3) 0 12px, var(--surface-2) 12px 24px); }
.featured-post .fp-shot image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.featured-post .fp-body { padding: 34px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.featured-post .fp-body h2 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.12; margin: 0; }
.featured-post .fp-body p { color: var(--ink-2); font-size: 15.5px; margin: 0; }
.tag-chip {
align-self: flex-start;
font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
color: var(--accent-ink); background: var(--accent-soft); padding: 6px 11px; border-radius: 999px;
}  .kpi-row {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
margin: 8px 0 30px;
}
@media (max-width: 720px) { .kpi-row { grid-template-columns: repeat(2, 1fr); } }
.kpi {
background: var(--surface); border: 1px solid var(--line);
border-radius: var(--r); padding: 16px 17px; box-shadow: var(--shadow-sm);
}
.kpi .kl {
font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
text-transform: uppercase; color: var(--ink-3); display: flex; align-items: center; gap: 7px;
}
.kpi .kl svg { width: 13px; height: 13px; color: var(--accent-ink); }
.kpi .kv { font-family: var(--font-mono); font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 9px; letter-spacing: -0.01em; }
.kpi .ks { font-size: 12px; margin-top: 3px; font-weight: 700; font-family: var(--font-mono); color: var(--ink-3); }
.kpi .ks.pos { color: var(--up); }
.kpi .ks.neg { color: var(--down); } .chart-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.range-pills { display: flex; gap: 6px; }
.range-pills button {
font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
padding: 6px 12px; border-radius: 999px; cursor: pointer;
border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink-2);
transition: all .14s ease;
}
.range-pills button:hover { border-color: var(--accent); color: var(--accent-ink); }
.range-pills button.active { background: var(--ink); color: #fff; border-color: var(--ink); } .link-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
@media (max-width: 640px) { .link-panels { grid-template-columns: 1fr; } }
.link-panel {
background: var(--surface); border: 1px solid var(--line);
border-radius: var(--r); padding: 18px; box-shadow: var(--shadow-sm);
}
.lp-title {
font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.09em;
text-transform: uppercase; font-weight: 700; color: var(--ink);
margin: 0 0 14px; display: flex; align-items: center; gap: 9px;
}
.lp-title svg { width: 15px; height: 15px; color: var(--accent-ink); }
.chips { display: flex; flex-direction: column; gap: 8px; }
.lchip {
display: flex; align-items: center; gap: 12px;
padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-sm);
transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.lchip:hover { border-color: var(--accent); background: var(--accent-soft-2); transform: translateX(3px); }
.lchip .ic {
width: 34px; height: 34px; flex: 0 0 auto; border-radius: 9px;
background: var(--accent-soft); color: var(--accent-ink);
display: grid; place-items: center; font-weight: 800; font-size: 13px; font-family: var(--font-mono);
}
.lchip .ic svg { width: 16px; height: 16px; }
.lchip .lt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lchip .lt b { font-weight: 700; font-size: 14px; color: var(--ink); }
.lchip .lt small { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lchip .ar { color: var(--ink-3); flex: 0 0 auto; transition: color .15s, transform .15s; }
.lchip:hover .ar { color: var(--accent-ink); transform: translate(2px, -2px); }
.lchip .ar svg { width: 14px; height: 14px; display: block; } .sentiment-card {
background: var(--surface); border: 1px solid var(--line);
border-radius: var(--r); padding: 20px 22px; box-shadow: var(--shadow-sm); margin-top: 16px;
}
.sent-top { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; margin-bottom: 10px; }
.sent-top .sp { color: var(--up); }
.sent-top .sn { color: var(--down); }
.sent-bar { height: 12px; border-radius: 999px; overflow: hidden; display: flex; background: var(--down); }
.sent-bar .fill { background: var(--up); }
.sent-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; }
.sent-meta .sm { font-size: 13px; color: var(--ink-2); }
.sent-meta .sm b { display: block; font-family: var(--font-mono); font-size: 18px; color: var(--ink); margin-bottom: 2px; }
.sent-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.sent-tags span {
font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em;
color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line);
padding: 5px 10px; border-radius: 999px;
} .sticky-cta {
position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
padding: 0 16px max(16px, env(safe-area-inset-bottom));
transform: translateY(140%);
transition: transform .38s cubic-bezier(.2, .8, .2, 1);
pointer-events: none;
}
.sticky-cta.show { transform: none; }
.sticky-cta-inner {
pointer-events: auto;
max-width: 760px; margin: 0 auto;
display: flex; align-items: center; gap: 16px;
background: rgba(255, 255, 255, 0.86);
backdrop-filter: saturate(1.4) blur(14px);
border: 1px solid var(--line-strong);
border-radius: 999px;
padding: 11px 12px 11px 22px;
box-shadow: var(--shadow-lg);
}
.sticky-cta .sc-text { flex: 1; font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.sticky-cta .sc-text small { display: block; font-weight: 500; font-size: 12px; color: var(--ink-2); font-family: var(--font-mono); letter-spacing: 0; margin-top: 2px; }
.sticky-cta .sc-btn {
display: inline-flex; align-items: center; gap: 8px;
background: var(--accent); color: #fff; font-weight: 800; font-size: 14.5px;
padding: 12px 22px; border-radius: 999px; white-space: nowrap;
box-shadow: 0 8px 20px var(--accent-soft);
transition: background .15s ease, transform .15s ease;
}
.sticky-cta .sc-btn:hover { background: var(--accent-ink); transform: translateY(-1px); }
.sticky-cta .sc-btn svg { width: 16px; height: 16px; }
.sticky-cta .sc-close {
flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
border: 1px solid var(--line); background: var(--surface); color: var(--ink-3);
cursor: pointer; font-size: 16px; line-height: 1; display: grid; place-items: center;
transition: color .15s, border-color .15s;
}
.sticky-cta .sc-close:hover { color: var(--ink); border-color: var(--line-strong); }
@media (max-width: 600px) {
.sticky-cta { padding: 0 10px 10px; }
.sticky-cta-inner { padding: 10px 10px 10px 18px; gap: 10px; }
.sticky-cta .sc-text small { display: none; }
.sticky-cta .sc-text { font-size: 14px; }
.sticky-cta .sc-btn { padding: 11px 18px; font-size: 14px; }
}  .crypto-intro .desc p { overflow-wrap: anywhere; }
.info-list li { flex-wrap: wrap; }
.info-list li .v { overflow-wrap: anywhere; text-align: right; }
@media (max-width: 720px) { table.markets th[data-key="supply"], table.markets td.col-supply,
table.markets th[data-key="h1"], table.markets td.col-h1 { display: none; }
table.markets { min-width: 540px; }
table.markets td.rank, table.markets thead th[data-key="rank"] { width: 38px; min-width: 38px; }
table.markets td.rank, table.markets td.name {
position: sticky; background: var(--row-bg); z-index: 1;
}
table.markets td.rank { left: 0; }
table.markets td.name { left: 38px; box-shadow: 8px 0 10px -8px rgba(27, 24, 19, 0.18); }
table.markets thead th[data-key="rank"], table.markets thead th[data-key="name"] {
position: sticky; z-index: 3; background: #16140f;
}
table.markets thead th[data-key="rank"] { left: 0; }
table.markets thead th[data-key="name"] { left: 38px; }
}
@media (max-width: 640px) {
.pg { min-width: 44px; height: 44px; }
.table-controls { gap: 12px; }
.table-controls input { width: 100%; }
.table-controls .lbl:last-child { flex: 1; }
.btn-website { padding: 9px 13px; }
.lchip { padding: 12px; }
} .cat-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
margin: 8px 0 40px;
}
@media (max-width: 760px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-tile {
display: flex; flex-direction: column; gap: 14px;
background: var(--surface); border: 1px solid var(--line);
border-radius: var(--r); padding: 20px;
box-shadow: var(--shadow-sm);
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.ct-head { display: flex; align-items: center; justify-content: space-between; }
.ct-head .cat-icon { width: 38px; height: 38px; border-radius: 11px; font-size: 18px; }
.ct-count { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-3); }
.cat-tile .ct-name { font-size: 19px; margin: 0; line-height: 1.15; }
.cat-tile:hover .ct-name { color: var(--accent-ink); }
.ct-monos { display: flex; align-items: center; margin-top: auto; }
.ct-monos .site-mono { width: 26px; height: 26px; border-radius: 50%; margin-right: -7px; border: 2px solid var(--surface); font-size: 11px; }
.ct-monos .more { margin-left: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }.img-slot,
.post-img img.img-slot,
.figure img.img-slot,
.preview-shot img.img-slot,
.fp-shot img.img-slot,
.rc-shot img.img-slot,
.ranked-thumb img.img-slot,
.video-stage img.img-slot,
.lead-shot img.img-slot {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .img-fallback {
position: absolute;
inset: 0;
display: grid;
place-items: center;
font-family: var(--font-mono);
font-size: 12px;
color: var(--ink-3);
background: var(--surface-2);
} .article img { max-width: 100%; height: auto; }
.article .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.article .alignright { float: right; margin: 0 0 1em 1.5em; }
.article .alignleft { float: left; margin: 0 1.5em 1em 0; }
.article .wp-caption { max-width: 100%; }
.article .wp-caption-text { font-size: 13px; color: var(--ink-2); text-align: center; } body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } } .lang-menu a { display: block; padding: 9px 12px; color: var(--ink-2); text-decoration: none; font-size: 13px; }
.lang-menu a:hover { background: var(--surface-2); color: var(--ink); } .screen-reader-text {
position: absolute !important;
width: 1px; height: 1px;
overflow: hidden; clip: rect(1px,1px,1px,1px);
clip-path: inset(50%); white-space: nowrap; border: 0;
} .cat-icon .cat-emoji, .ct-head .cat-emoji { font-size: 18px; line-height: 1; } .site-row { position: relative; }
.site-row .row-link { position: absolute; inset: 0; z-index: 1; border-radius: var(--r-sm); }
.site-row .site-mono, .site-row .site-name { position: relative; z-index: 0; pointer-events: none; }
.site-row .visit { position: relative; z-index: 2; } .preview-card { position: relative; } .preview-card .pc-link { position: absolute; inset: 0; z-index: 1; } .preview-card .btn-website { position: relative; z-index: 2; } .bl-tip {
position: fixed;
z-index: 9999;
max-width: 280px;
background: var(--ink, #1B1813);
color: #fff;
font-family: var(--font-body, sans-serif);
font-size: 12.5px;
line-height: 1.45;
padding: 9px 11px;
border-radius: 10px;
box-shadow: 0 8px 24px rgba(0,0,0,.22);
pointer-events: none;
opacity: 0;
transform: translateY(4px);
transition: opacity .12s ease, transform .12s ease;
}
.bl-tip.show { opacity: 1; transform: none; }
.bl-tip::after {
content: "";
position: absolute;
left: var(--tip-arrow, 20px);
bottom: -5px;
width: 10px; height: 10px;
background: inherit;
transform: rotate(45deg);
border-radius: 2px;
}