/* =================================================================
   hiphopwpolsce.pl — strona główna
   Custom CSS, mobile-first, dark mode domyślnie + jasny przez data-theme
   ================================================================= */

/* --- Zmienne motywu --- */
:root {
    --bg: #0d0d0f;
    --bg-elev: #16161a;
    --bg-elev-2: #1f1f25;
    --fg: #e8e8ec;
    --fg-muted: #9b9ba5;
    --fg-dim: #6b6b75;
    --accent: #ff3d3d;        /* hiphopowy czerwony — krew, sprej */
    --accent-2: #ffd23f;      /* złoto */
    --accent-3: #4cd964;      /* neonowa zieleń (sygnał, vibe) */
    --border: #2a2a32;
    --border-strong: #3a3a45;
    --max-w: 1240px;
    --r-sm: 6px;
    --r: 12px;
    --r-lg: 18px;
    --shadow: 0 8px 24px rgba(0,0,0,.4);
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
    /* Hero: pełne ciemne tło z subtelnym akcentem, scena hip-hopowa */
    --hero-grad: radial-gradient(ellipse at 20% 20%, #2a0a1a 0%, transparent 55%),
                 radial-gradient(ellipse at 85% 80%, #1a1a0a 0%, transparent 60%),
                 linear-gradient(180deg, #1a0d1a 0%, #0d0d0f 100%);
    --hero-img-opacity: .45;
}

[data-theme="light"] {
    --bg: #f7f7f5;
    --bg-elev: #ffffff;
    --bg-elev-2: #efeeea;
    --fg: #1a1a1f;
    --fg-muted: #4a4a55;
    --fg-dim: #8a8a95;
    --accent: #d92020;
    --accent-2: #b8860b;
    --accent-3: #1a8a3a;
    --border: #e2e1dd;
    --border-strong: #c8c7c2;
    --shadow: 0 6px 18px rgba(0,0,0,.08);
    /* Hero w jasnym motywie: kremowy off-white z delikatnym akcentem czerwieni i złota */
    --hero-grad: radial-gradient(ellipse at 20% 25%, #f5e6e0 0%, transparent 55%),
                 radial-gradient(ellipse at 85% 75%, #f0ead8 0%, transparent 60%),
                 linear-gradient(180deg, #faf8f3 0%, #f0ede5 100%);
    --hero-img-opacity: .25;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--fg); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: .6em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: .4em; }
h4 { font-size: 1.05rem; }
p { color: var(--fg-muted); }
.lead { color: var(--fg); font-size: 1.15rem; }

/* --- Layout --- */
.wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}
section { padding: 80px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: 0; }
.section-head { margin-bottom: 40px; }
.section-head .eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-head p { max-width: 760px; }

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: color-mix(in srgb, var(--bg) 80%, transparent);
    border-bottom: 1px solid var(--border);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 64px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: -.01em;
    flex-shrink: 0;
}
.brand .logo-mark {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: grid; place-items: center;
    color: #000;
    font-weight: 900;
    font-size: 1rem;
}
.nav {
    display: flex;
    gap: 22px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
    color: var(--fg-muted);
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 0;
    position: relative;
}
.nav a:hover { color: var(--fg); }
.nav a.soon { /* placeholder dla podstron — bez wizualnego znacznika, „wkrótce" pokazuje toast na klik */ }
.header-tools { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.search-input {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--fg);
    width: 160px;
    font-size: .85rem;
}
.search-input:focus { outline: 1px solid var(--accent); width: 200px; }
.theme-toggle, .nl-btn {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .8rem;
    font-weight: 600;
    transition: background .15s, border-color .15s;
}
.theme-toggle:hover, .nl-btn:hover { background: var(--bg-elev); border-color: var(--border-strong); }
.nl-btn { background: var(--accent); color: #fff; border-color: var(--accent); }
.nl-btn:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

@media (max-width: 1024px) {
    .nav { display: none; }
    .search-input { width: 120px; }
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 90px 0 60px;
    border-top: 0;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--hero-grad);
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: var(--hero-img-opacity);
    mix-blend-mode: luminosity;
}
[data-theme="light"] .hero-bg img {
    /* w jasnym motywie luminosity dawałoby brzydki szary kafel — używamy multiply żeby obrazek wpadł kolorystycznie */
    mix-blend-mode: multiply;
}
.hero-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}
.hero h1 { max-width: 14ch; margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero .lead { max-width: 56ch; margin-bottom: 36px; color: var(--fg-muted); font-size: 1.2rem; }
.hero-cats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 48px;
}
.hero-cat {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px 16px;
    transition: transform .15s, border-color .15s;
}
.hero-cat:hover { transform: translateY(-3px); border-color: var(--accent); }
.hero-cat .num { font-family: var(--font-mono); font-size: .75rem; color: var(--accent-2); }
.hero-cat strong { display: block; font-size: 1.05rem; margin: 4px 0 4px; color: var(--fg); }
.hero-cat span { font-size: .8rem; color: var(--fg-dim); }

/* --- Filary --- */
.filary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 40px;
}
.filar {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .15s, border-color .15s;
}
.filar:hover { transform: translateY(-4px); border-color: var(--accent); }
.filar .filar-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-elev-2), var(--bg));
    background-size: cover;
    background-position: center;
}
.filar-body { padding: 18px; }
.filar-body .num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

/* --- Definicja box --- */
.def-box {
    margin-top: 48px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, var(--bg-elev)), var(--bg-elev));
    border: 1px solid var(--accent);
    border-radius: var(--r-lg);
    padding: 36px;
}
.def-box h3 { color: var(--accent); }
.def-box p { color: var(--fg); margin-top: 12px; }

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 28px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-2), var(--accent-3));
}
.era {
    position: relative;
    padding: 24px 0 24px 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    border-bottom: 1px dashed var(--border);
}
.era:last-child { border-bottom: 0; }
.era::before {
    content: "";
    position: absolute;
    left: -26px; top: 32px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 4px var(--bg);
}
.era .years {
    color: var(--accent-2);
    font-family: var(--font-mono);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.era h3 { margin-bottom: 12px; }
.era .meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; font-size: .85rem; color: var(--fg-dim); }
.era .meta span strong { color: var(--fg); }
.era-img {
    aspect-ratio: 16/9;
    background: var(--bg-elev-2);
    border-radius: var(--r);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}
@media (max-width: 768px) {
    .era { grid-template-columns: 1fr; }
}

/* --- Two columns (pierwszy rap) --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.two-col > div {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
}
.two-col h3 { color: var(--accent); margin-bottom: 14px; }
.two-col h3.alt { color: var(--accent-2); }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* --- Karuzela albumów --- */
.carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0 24px;
    scrollbar-color: var(--border-strong) transparent;
    scrollbar-width: thin;
}
.album {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: start;
    background: var(--bg-elev);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .15s;
    border: 1px solid var(--border);
}
.album:hover { transform: translateY(-4px); }
.album .cover {
    aspect-ratio: 1;
    display: grid; place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    text-align: center;
    padding: 16px;
    line-height: 1.2;
}
.album-meta { padding: 14px 16px; font-size: .85rem; }
.album-meta strong { display: block; color: var(--fg); margin-bottom: 2px; }
.album-meta span { color: var(--fg-dim); font-size: .75rem; }

/* --- Producenci --- */
.producers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.producer {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px;
    transition: border-color .15s;
}
.producer:hover { border-color: var(--accent-3); }
.producer .pseudo { color: var(--accent-3); font-weight: 700; font-size: .85rem; font-family: var(--font-mono); }
.producer h4 { margin: 4px 0; }
.producer p { font-size: .85rem; }

/* --- Galeria artystów --- */
.artists-block { margin-bottom: 48px; }
.artists-block h3 { color: var(--accent); margin-bottom: 8px; }
.artists-block .lead-mini { color: var(--fg-muted); margin-bottom: 18px; max-width: 70ch; font-size: .95rem; }
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}
.artist {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px;
    text-align: center;
    transition: transform .15s, border-color .15s;
}
.artist:hover { transform: translateY(-3px); border-color: var(--accent); }
.artist .avatar {
    width: 56px; height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #000;
}
.artist strong { display: block; font-size: .9rem; }
.artist span { font-size: .75rem; color: var(--fg-dim); }

/* --- Festiwale --- */
.festivals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.festival {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px;
    border-top: 4px solid var(--accent);
}
.festival .year { font-family: var(--font-mono); color: var(--accent-2); font-size: .8rem; }
.festival h4 { margin: 6px 0; }
.festival p { font-size: .9rem; }

/* --- Beefy --- */
.beefs { display: grid; gap: 12px; }
.beef {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
}
.beef .vs {
    font-family: var(--font-mono);
    color: var(--accent);
    font-weight: 900;
    font-size: 1.05rem;
    white-space: nowrap;
}
.beef .desc { color: var(--fg-muted); font-size: .9rem; }
.beef .yr { color: var(--fg-dim); font-family: var(--font-mono); font-size: .8rem; }
@media (max-width: 640px) {
    .beef { grid-template-columns: 1fr; gap: 6px; }
}

/* --- Mapa Polski --- */
.map-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.map-img {
    aspect-ratio: 4/3;
    background: var(--bg-elev-2);
    border-radius: var(--r);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}
.regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}
.region {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 14px;
    transition: border-color .15s;
}
.region:hover { border-color: var(--accent-2); }
.region strong { display: block; font-size: .95rem; }
.region span { font-size: .75rem; color: var(--fg-dim); display: block; margin-top: 2px; }
@media (max-width: 900px) {
    .map-wrap { grid-template-columns: 1fr; }
}

/* --- Zulu Nation --- */
.zulu {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: center;
}
.zulu-img {
    aspect-ratio: 4/3;
    background-size: cover; background-position: center;
    border-radius: var(--r);
    border: 1px solid var(--border);
}
@media (max-width: 768px) { .zulu { grid-template-columns: 1fr; } }

/* --- Styl hip-hop (moda, pokój) --- */
.style-grid {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 24px;
    align-items: stretch;
}
.style-img {
    background-size: cover; background-position: center;
    border-radius: var(--r);
    border: 1px solid var(--border);
    min-height: 280px;
}
.style-mid h3 { color: var(--accent-2); margin-bottom: 14px; }
.style-list {
    display: grid; gap: 12px; margin-top: 16px;
}
.style-list a {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 14px 16px;
    display: block;
    transition: border-color .15s;
}
.style-list a:hover { border-color: var(--accent); }
.style-list strong { display: block; }
.style-list span { font-size: .8rem; color: var(--fg-dim); }
@media (max-width: 1024px) { .style-grid { grid-template-columns: 1fr; } }

/* --- Słownik --- */
.glossary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px 24px;
}
.term {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}
.term dt {
    font-weight: 700;
    color: var(--fg);
    font-family: var(--font-mono);
    font-size: .9rem;
    margin-bottom: 2px;
}
.term dd { font-size: .85rem; color: var(--fg-muted); }

/* --- Blog kafle --- */
.posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.post {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px;
    transition: transform .15s, border-color .15s;
    display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-4px); border-color: var(--accent-3); }
.post .post-meta {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--fg-dim);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.post h3 { font-size: 1.1rem; margin-bottom: 8px; }
.post p { font-size: .9rem; flex-grow: 1; }
.post .read-more { color: var(--accent); font-size: .85rem; font-weight: 700; margin-top: 12px; display: inline-block; }

/* --- Książki --- */
.books-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}
.books {
    display: grid; gap: 14px;
}
.book {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
}
.book .cover-mini {
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: var(--r-sm);
    display: grid; place-items: center;
    font-weight: 900;
    color: #000;
    font-size: 1.4rem;
}
.book h4 { margin-bottom: 6px; }
.book .author { font-size: .8rem; color: var(--fg-dim); margin-bottom: 8px; }
.book p { font-size: .85rem; }
.book .links a {
    color: var(--accent);
    font-size: .8rem;
    margin-right: 16px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.books-img {
    aspect-ratio: 16/9;
    background-size: cover; background-position: center;
    border-radius: var(--r);
    border: 1px solid var(--border);
    align-self: start;
    position: sticky; top: 80px;
}
@media (max-width: 900px) {
    .books-wrap { grid-template-columns: 1fr; }
    .books-img { position: static; }
}

/* --- FAQ --- */
.faq {
    display: grid; gap: 8px;
    max-width: 880px;
}
.faq details {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .15s;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div {
    padding: 0 24px 22px;
    color: var(--fg-muted);
}
.faq details > div p + p { margin-top: 10px; }

/* --- Newsletter / social --- */
.nl {
    background: linear-gradient(120deg, var(--bg-elev), var(--bg-elev-2));
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}
.nl h3 { font-size: 1.4rem; }
.nl-form { display: flex; gap: 8px; }
.nl-form input {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 18px;
    color: var(--fg);
    font-size: .9rem;
    width: 220px;
}
.nl-form button {
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: .9rem;
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: grid; place-items: center;
    font-size: .9rem;
    font-weight: 700;
}
.socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
@media (max-width: 768px) {
    .nl { grid-template-columns: 1fr; }
    .nl-form input { flex: 1; width: auto; }
}

/* --- O autorach --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.about > div {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
}
.about h3 { color: var(--accent-2); }
@media (max-width: 768px) { .about { grid-template-columns: 1fr; } }

/* --- Stopka --- */
.site-footer {
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 40px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}
.footer-cols h5 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: 14px;
}
.footer-cols ul { list-style: none; display: grid; gap: 8px; }
.footer-cols a { color: var(--fg-muted); font-size: .85rem; }
.footer-cols a:hover { color: var(--fg); }
.footer-bot {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--fg-dim);
    font-size: .8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 900px) {
    .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* --- Utility --- */
.cite {
    background: color-mix(in srgb, var(--accent-3) 15%, transparent);
    color: var(--accent-3);
    font-family: var(--font-mono);
    font-size: .7rem;
    padding: 1px 6px;
    border-radius: 4px;
    vertical-align: super;
    margin-left: 2px;
}
.tag {
    display: inline-block;
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: .72rem;
    color: var(--fg-muted);
    margin-right: 4px;
}
.tag.hot { background: var(--accent); color: #fff; border-color: var(--accent); }
mark { background: color-mix(in srgb, var(--accent-2) 30%, transparent); color: var(--fg); padding: 1px 4px; border-radius: 3px; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--accent-2); }
.text-green { color: var(--accent-3); }
