:root {
  --bg: #101218;
  --panel: #1a1d26;
  --panel-2: #232735;
  --line: #2e3344;
  --text: #eceef4;
  --muted: #9aa1b5;
  --accent: #ffcb05;      /* Pokémon yellow */
  --accent-2: #e3350d;    /* Poké Ball red */
  --good: #5fd38d;
  --radius: 10px;
  --card-radius: 4.5% / 3.2%;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 15px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
main { max-width: 1320px; margin: 0 auto; padding: 16px; }
h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); line-height: 1.15; margin: 0 0 .4em; }
h1 .sub { display: block; font-size: .5em; color: var(--muted); font-weight: 500; margin-top: .3em; }
.h2 { font-size: 1.25rem; margin: 32px 0 8px; }
.lede { color: var(--muted); max-width: 70ch; margin: 0 0 12px; }
.hint { color: var(--muted); margin: 0 0 8px; font-size: .9rem; }

/* header */
.top { position: sticky; top: 0; z-index: 20; background: rgba(16,18,24,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.top-inner { max-width: 1320px; margin: 0 auto; padding: 10px 16px; display: flex; gap: 16px; align-items: center; }
.brand { color: var(--text); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.ball { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--text);
  background: linear-gradient(var(--accent-2) 0 45%, var(--text) 45% 55%, #fff 55%); }
.navwrap { position: relative; flex: 1; min-width: 0; }
.setnav { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }
.navwrap .tabarrow { width: 28px; height: 28px; font-size: 1.1rem; }
.allsets { color: var(--accent); font-weight: 700; font-size: .9rem; white-space: nowrap; }
@media (max-width: 520px) { .top-inner { gap: 10px; } .brand { font-size: 1rem; } }
.setnav::-webkit-scrollbar { display: none; }
.setnav a { color: var(--muted); padding: 6px 10px; border-radius: 999px; white-space: nowrap; font-size: .9rem; }
.setnav a:hover, .setnav a[aria-current] { color: var(--text); background: var(--panel-2); text-decoration: none; }

.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.crumbs a { color: var(--muted); }
.facts { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; padding: 0; }
.facts > * { background: var(--panel-2); color: var(--muted); padding: 3px 10px; border-radius: 999px; font-size: .82rem; }

/* hero / set header */
.hero, .sethead { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  background: radial-gradient(120% 140% at 0% 0%, #2b2140 0%, var(--panel) 60%); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.hero h1 a { color: var(--text); }
.kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; color: var(--accent); margin: 0 0 4px; font-weight: 700; }
.btn { display: inline-block; background: var(--accent); color: #111; font-weight: 700; padding: 10px 16px; border-radius: 8px; }
.btn:hover { text-decoration: none; filter: brightness(1.08); }
.cta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.btn.ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); font: inherit; font-weight: 700; cursor: pointer; }
.btn.ghost:hover { background: rgba(255,203,5,.1); }
.bm-hint { margin: 8px 0 0; background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; font-size: .9rem; display: inline-block; }
.bm-hint[hidden] { display: none; }
.ptitle { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 10px 0 2px; }
.featured { width: 220px; }
@media (max-width: 700px) {
  .hero, .sethead { grid-template-columns: 1fr; padding: 16px; }
  .featured { width: 100%; }
  .featured .product { flex-direction: row; text-align: left; align-items: center; }
  .featured .product img { width: 96px; }
}
@media (max-width: 520px) {
  main { padding: 12px; }
  .hero, .sethead { gap: 10px; padding: 14px; margin-bottom: 10px; }
  .lede { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: .9rem; }
  .facts > * { font-size: .75rem; padding: 2px 8px; }
  .featured .product { padding: 6px; }
  .featured .product img { width: 64px; }
  main .controls { position: static; padding-top: 4px; }
  main .tools .sel { flex: 1 1 100%; }
  .tools .sel select { flex: 1; }
  .crumbs { margin-bottom: 8px; }
}

/* controls */
.controls { position: sticky; top: 49px; z-index: 10; background: var(--bg); padding: 10px 0 6px; margin-bottom: 6px; }
.controls.slim { position: static; padding: 0 0 8px; }
.tabwrap { position: relative; margin-bottom: 8px; }
[data-tabwrap]::before, [data-tabwrap]::after { content: ""; position: absolute; top: 0; bottom: 0; width: 48px; pointer-events: none; opacity: 0; transition: opacity .15s; z-index: 1; }
[data-tabwrap]::before { left: 0; background: linear-gradient(to right, var(--bg) 35%, transparent); }
[data-tabwrap]::after { right: 0; background: linear-gradient(to left, var(--bg) 35%, transparent); }
[data-tabwrap].fade-l::before, [data-tabwrap].fade-r::after { opacity: 1; }
.tabarrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--panel-2); color: var(--text); font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; padding: 0 0 3px; box-shadow: 0 2px 10px rgba(0,0,0,.5); }
.tabarrow:hover { border-color: var(--accent); }
.tabarrow[hidden] { display: none; }
.tabarrow.prev { left: 0; }
.tabarrow.next { right: 0; }
.tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }
.tabs::-webkit-scrollbar { display: none; }
.tabs a { flex: none; color: var(--text); background: var(--panel); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; font-size: .9rem; font-weight: 600; }
.tabs a:hover { text-decoration: none; border-color: var(--muted); }
.tabs a[aria-selected="true"] { background: var(--accent); color: #111; border-color: var(--accent); }
.tools { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tools input, .tools select, .toggle {
  background: var(--panel); color: var(--text); border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; font: inherit; font-size: .9rem; }
.tools input { flex: 1 1 160px; min-width: 0; }
.sel { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .85rem; }
.toggle { cursor: pointer; font-weight: 600; }
.toggle[aria-pressed="true"] { background: var(--good); color: #0b1a10; border-color: var(--good); }
.count { color: var(--muted); font-size: .8rem; margin: 6px 0 0; min-height: 1.2em; }

/* card grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.grid.small { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
@media (max-width: 520px) { .grid, .grid.small { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.card { position: relative; display: block; border-radius: var(--card-radius); overflow: hidden; background: var(--panel);
  aspect-ratio: 63 / 88; transition: transform .15s ease, box-shadow .15s ease; outline-offset: 3px; }
.card img { width: 100%; height: 100%; object-fit: contain; }
.card[hidden] { display: none; }
.card:hover, .card:focus-visible { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 28px rgba(0,0,0,.55); text-decoration: none; z-index: 2; }

/* price chip: always on for touch screens, and when "Show all prices" is on */
.chip { position: absolute; right: 6px; bottom: 6px; background: rgba(10,12,18,.88); color: var(--good); font-weight: 800;
  font-size: .85rem; padding: 3px 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); display: none; pointer-events: none; }
@media (hover: none) { .chip { display: block; } }
.prices-on .chip { display: block; }

/* hover overlay: the headline feature on desktop */
.ov { position: absolute; inset: auto 0 0 0; padding: 40% 10px 10px; display: flex; flex-direction: column; gap: 1px;
  background: linear-gradient(to top, rgba(8,9,14,.97) 0%, rgba(8,9,14,.9) 55%, rgba(8,9,14,0) 100%);
  opacity: 0; transform: translateY(8px); transition: opacity .15s ease, transform .15s ease; pointer-events: none; color: var(--text); }
.ov-name { font-weight: 800; font-size: .95rem; line-height: 1.2; }
.ov-meta { color: var(--muted); font-size: .75rem; }
.ov-price { color: var(--good); font-weight: 900; font-size: 1.6rem; line-height: 1.1; margin-top: 4px; }
.ov-kind { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; }
.ov-rows { display: flex; flex-direction: column; font-size: .72rem; color: #c8cde0; margin-top: 4px; }
@media (hover: hover) {
  .card:hover .ov, .card:focus-visible .ov { opacity: 1; transform: none; }
  .card:hover .chip { display: none; }
}

/* sealed products */
.sealed { margin-top: 36px; }
.sealed h2 { font-size: 1.25rem; }
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
@media (max-width: 520px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
.product { display: flex; flex-direction: column; gap: 6px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 10px; color: var(--text); text-align: center; }
.product:hover { border-color: var(--accent); text-decoration: none; }
.product img { background: #fff; border-radius: 6px; aspect-ratio: 1; object-fit: contain; width: 100%; }
.p-name { font-size: .85rem; line-height: 1.3; }
.p-price { color: var(--good); font-weight: 800; }
.p-price small { color: var(--muted); font-weight: 500; }

/* set tiles */
.sets { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.settile { display: grid; grid-template-columns: 72px 1fr; grid-template-rows: auto 1fr; column-gap: 12px; align-items: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; color: var(--text); }
.settile:hover { border-color: var(--accent); text-decoration: none; }
.settile img { grid-row: span 2; border-radius: 4px; }
.st-name { font-weight: 800; }
.st-meta { color: var(--muted); font-size: .82rem; }

/* sealed value */
.p-store { color: var(--muted); font-size: .75rem; }
.valuelink { display: block; margin-top: 8px; font-size: .85rem; font-weight: 700; text-align: center; }
.calc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: start; margin: 12px 0 16px; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.panel h2 { margin: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.linkbtn { background: none; border: 0; color: var(--accent); font: inherit; font-size: .85rem; cursor: pointer; padding: 4px 0; }
.calc-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-top: 8px; font-variant-numeric: tabular-nums; }
.calc-table th, .calc-table td { padding: 7px 4px; border-bottom: 1px solid var(--line); text-align: right; vertical-align: middle; }
.calc-table th:first-child, .calc-table td:first-child { text-align: left; }
.calc-table thead th { color: var(--muted); font-weight: 600; font-size: .78rem; }
.calc-table tfoot th { font-size: 1rem; color: var(--text); border-bottom: 0; padding-top: 10px; }
.calc-table tfoot th[data-ev] { color: var(--good); font-size: 1.3rem; }
.calc-table .cat { display: block; font-weight: 700; }
.calc-table small { color: var(--muted); font-size: .72rem; }
.calc-table input[type=number] { width: 84px; background: var(--bg); color: var(--text); border: 1px solid var(--line); border-radius: 6px; padding: 6px 8px; font: inherit; text-align: right; }
.calc-table input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.calc-table input:disabled { opacity: .4; }
.chk { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; color: var(--muted); font-size: .85rem; cursor: pointer; }
.prods { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.prod { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto auto; gap: 12px; align-items: center; background: var(--panel-2);
  border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px 8px 8px; color: var(--text); }
.prods.rank .prod { background: var(--panel); }
a.prod:hover { border-color: var(--accent); text-decoration: none; }
.prod[hidden] { display: none; }
.prod img { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 6px; }
.prod-main { min-width: 0; display: flex; flex-direction: column; }
.prod-name { font-weight: 700; color: var(--text); line-height: 1.25; }
.prod-main small { color: var(--muted); font-size: .76rem; }
.prod-main small a { color: var(--muted); text-decoration: underline; }
.prod-ev, .ratio { display: flex; flex-direction: column; align-items: flex-end; font-variant-numeric: tabular-nums; }
.prod-ev small, .ratio small { color: var(--muted); font-size: .7rem; }
.ratio { min-width: 76px; }
.ratio strong { font-size: 1.15rem; }
.ratio.good strong { color: var(--good); }
.ratio.ok strong { color: var(--accent); }
.ratio.bad strong { color: #ff6b5b; }
@media (max-width: 520px) {
  .prod { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 8px; }
  .prod img { width: 48px; height: 48px; }
  .prod-ev { display: none; }
}
.prods.rank .prod { grid-template-columns: 56px minmax(0, 1fr) auto auto auto; }
.calcbtn { background: var(--accent); color: #111; font-weight: 800; font-size: .9rem; padding: 9px 14px; border-radius: 8px; white-space: nowrap; }
.calcbtn:hover { text-decoration: none; filter: brightness(1.08); }
@media (max-width: 700px) {
  .prods.rank .prod { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .prods.rank .prod-ev { display: none; }
  .prods.rank .calcbtn { grid-column: 2 / -1; text-align: center; }
}
.rank-tools .tabs { flex-wrap: wrap; margin-bottom: 8px; }
.rank-tools .tabs button { background: var(--panel); border: 1px solid var(--line); color: var(--text); padding: 7px 14px; border-radius: 999px; font: inherit; font-size: .9rem; font-weight: 600; cursor: pointer; }
.rank-tools .tabs button[aria-pressed="true"] { background: var(--accent); color: #111; border-color: var(--accent); }

.chips { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips a { display: inline-block; background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; color: var(--text); font-size: .88rem; }
.chips a:hover { border-color: var(--accent); text-decoration: none; }
.chips small { color: var(--muted); }

/* card page */
.cardpage { display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 28px; align-items: start; }
.cp-img img { border-radius: var(--card-radius); width: 100%; box-shadow: 0 16px 40px rgba(0,0,0,.5); }
@media (max-width: 760px) {
  .cardpage { grid-template-columns: 1fr; gap: 16px; }
  .cp-img { max-width: 420px; margin: 0 auto; width: 100%; }
}
.pricebox { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; margin: 12px 0 16px; }
.pricebox h2 { margin: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.pricebox .big { font-size: 2.2rem; font-weight: 900; color: var(--good); margin: 2px 0 8px; line-height: 1.1; }
.pricebox .big small { font-size: .85rem; color: var(--muted); font-weight: 500; }
.pricebox table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-bottom: 10px; }
.pricebox th, .pricebox td { text-align: right; padding: 5px 4px; border-bottom: 1px solid var(--line); }
.pricebox th:first-child, .pricebox td:first-child { text-align: left; }
.pricebox th { color: var(--muted); font-weight: 600; }
.buy { display: inline-block; background: var(--accent); color: #111; font-weight: 800; padding: 10px 16px; border-radius: 8px; }
.buy:hover { text-decoration: none; filter: brightness(1.08); }
.note { color: var(--muted); font-size: .78rem; margin: 8px 0 0; }
/* price history chart */
.history { --series-1: #3987e5; --series-2: #d95926; --series-3: #a36ee0;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; margin: 0 0 16px; }
.hist-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.history h2 { margin: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.ranges { display: flex; gap: 2px; background: var(--bg); border-radius: 8px; padding: 2px; }
.ranges button { background: none; border: 0; color: var(--muted); font: inherit; font-size: .8rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; cursor: pointer; }
.ranges button[aria-pressed="true"] { background: var(--panel-2); color: var(--text); }
.hist-change { margin: 6px 0 0; font-size: .9rem; color: var(--muted); }
.hist-change .up { color: var(--good); font-weight: 700; }
.hist-change .down { color: #ff6b5b; font-weight: 700; }
.legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; font-size: .8rem; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.key { display: inline-block; width: 14px; height: 2px; border-radius: 1px; background: var(--series-1); flex: none; }
.key.s2 { background: var(--series-2); } .key.s3 { background: var(--series-3); }
.chart { position: relative; margin-top: 8px; }
.chart svg { display: block; width: 100%; height: auto; overflow: visible; touch-action: pan-y; outline: none; }
.chart svg:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.chart .grid-line { stroke: var(--line); stroke-width: 1; }
.chart .axis { fill: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.chart .line { fill: none; stroke: var(--series-1); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.chart .dot, .chart .mark { fill: var(--series-1); stroke: var(--panel); stroke-width: 2; }
.chart .s2 { stroke: var(--series-2); } .chart .dot.s2, .chart .mark.s2 { fill: var(--series-2); stroke: var(--panel); }
.chart .s3 { stroke: var(--series-3); } .chart .dot.s3, .chart .mark.s3 { fill: var(--series-3); stroke: var(--panel); }
.chart .hair { stroke: var(--muted); stroke-width: 1; stroke-dasharray: 3 3; }
.tip { position: absolute; pointer-events: none; background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 6px 10px; font-size: .8rem; box-shadow: 0 6px 20px rgba(0,0,0,.5); white-space: nowrap; }
.tip-date { color: var(--muted); font-size: .72rem; margin-bottom: 2px; }
.tip-row { display: flex; align-items: center; gap: 6px; }
.tip-row strong { color: var(--text); font-variant-numeric: tabular-nums; }
.tip-row span { color: var(--muted); }
.hist-table { margin-top: 10px; font-size: .85rem; }
.hist-table summary { cursor: pointer; color: var(--muted); }
.hist-table table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hist-table th, .hist-table td { text-align: right; padding: 4px; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.hist-table th:first-child, .hist-table td:first-child { text-align: left; }

.text .stats { color: var(--muted); font-size: .9rem; }
.move { border-top: 1px solid var(--line); padding: 8px 0; }
.move h3 { margin: 0 0 4px; font-size: 1rem; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.move p { margin: 0; }
.dmg { margin-left: auto; font-size: 1.2rem; font-weight: 900; }
.tag { background: var(--accent-2); color: #fff; font-size: .7rem; padding: 1px 6px; border-radius: 4px; }
.flavor { font-style: italic; color: var(--muted); }
.e { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; font: 800 .65rem/1 system-ui; font-style: normal; color: #111; background: #ddd; }
.e-G { background: #6fbf4a; } .e-R { background: #f0703a; } .e-W { background: #3fa6e8; } .e-L { background: #f5d23a; }
.e-P { background: #b36fd6; } .e-F { background: #c9763e; } .e-D { background: #3c4a52; color: #fff; } .e-M { background: #9ea8b0; }
.e-Y { background: #f08ac0; } .e-N { background: #c6a93a; } .e-C { background: #eee; }
.pager { display: flex; justify-content: space-between; gap: 8px; margin: 28px 0; flex-wrap: wrap; }
.pager a { background: var(--panel); border: 1px solid var(--line); padding: 8px 12px; border-radius: 8px; color: var(--text); font-size: .9rem; }
.pager a:hover { border-color: var(--accent); text-decoration: none; }
.pager small { color: var(--muted); }
.related h2 { font-size: 1.1rem; }

.totop { position: fixed; right: 16px; bottom: 16px; z-index: 30; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent); color: #111; box-shadow: 0 6px 20px rgba(0,0,0,.5); transition: transform .15s; }
.totop:hover { transform: translateY(-2px); text-decoration: none; }
.totop[hidden] { display: none; }
@media (max-width: 520px) { .totop { right: 12px; bottom: 12px; width: 44px; height: 44px; } }

.foot {max-width: 1320px; margin: 40px auto 0; padding: 20px 16px 40px; color: var(--muted); font-size: .8rem; border-top: 1px solid var(--line); }
.foot a { color: var(--muted); text-decoration: underline; }
.footsets { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px 24px; margin-bottom: 20px; }
.footsets h2 { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin: 0 0 6px; }
.footsets ul { list-style: none; margin: 0; padding: 0; }
.footsets li { margin: 0; }
.footsets a { display: block; padding: 4px 0; text-decoration: none; font-size: .88rem; }
.footsets a:hover, .footsets a[aria-current] { color: var(--accent); }

/* upcoming sets */
.soon { display: inline-block; background: var(--accent-2); color: #fff; font-size: .68rem; font-weight: 800; padding: 1px 6px; border-radius: 999px; vertical-align: 1px; margin-left: 2px; }
.preview-note { background: rgba(255,203,5,.08); border: 1px solid rgba(255,203,5,.35); border-radius: 8px; padding: 8px 12px; font-size: .88rem; color: var(--text); max-width: 70ch; margin: 0 0 10px; }
.comingsoon { display: grid; grid-template-columns: auto 1fr auto; gap: 4px 16px; align-items: center; background: var(--panel); border: 1px solid var(--accent); border-radius: var(--radius); padding: 12px 16px; margin: -4px 0 16px; color: var(--text); }
.comingsoon:hover { background: var(--panel-2); text-decoration: none; }
.cs-kicker { color: var(--accent-2); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.cs-name { font-weight: 700; }
.cs-cta { color: var(--accent); font-weight: 700; font-size: .9rem; white-space: nowrap; }
@media (max-width: 600px) { .comingsoon { grid-template-columns: 1fr; } }
