:root{
  --bg: #0b0f12;
  --card: #12171c;
  --ink: #e7edf6;
  --muted: #a9b6c7;
  --pine-1:#0E5A39; --pine-2:#0A4029;
  --accent:#4fb3ff;
  --gap: 16px;
  --radius: 14px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font:16px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Arial}
a{color:var(--accent);text-decoration:none} a:hover{text-decoration:underline}
.wrap{max-width:1100px;margin:0 auto;padding:28px}
.header{display:flex;gap:var(--gap);align-items:center;justify-content:space-between;margin-bottom:20px}
.header .crumbs a{opacity:.85} .header .crumbs a+a::before{content:"/";margin:0 8px;color:var(--muted)}
h1{font-size:28px;margin:0 0 4px} .sub{color:var(--muted);font-size:14px}

.grid{display:grid;gap:var(--gap);grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin-top:24px}
.card{background:var(--card);border:1px solid #1c232b;border-radius:var(--radius);padding:16px}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:6px 0;color:var(--muted);font-size:14px}
.thumb{background:#0f1419;border-radius:12px;padding:14px;display:flex;align-items:center;justify-content:center;min-height:140px;border:1px dashed #26303a}
.thumb .swatch{width:100%;height:120px;border-radius:10px;background:linear-gradient(135deg,var(--pine-1),var(--pine-2));display:flex;align-items:center;justify-content:center}
.thumb img{max-width:100%;height:auto;display:block}
.kit{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.kit a{background:#151c22;border:1px solid #24303a;border-radius:10px;padding:8px 10px;font-size:13px}
.note{font-size:13px;color:var(--muted);margin-top:8px}
hr{border:0;border-top:1px solid #1c232b;margin:24px 0}
.usage pre{background:#0e141a;border:1px solid #1b2430;border-radius:10px;padding:12px;overflow:auto;font-size:13px;color:#d7deea}
.tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:6px}
.tag{font-size:12px;padding:4px 8px;border-radius:999px;background:#16202a;border:1px solid #253141;color:#9fb1c7}
