/* FOLLOWDLE — THE FAME TABLOID. Design tokens per Design Spec v1. */
:root {
  --paper: #F2EEE3; --ink: #111111; --red: #E00A1E; --gold: #F6C90E;
  --green: #1DA940; --white: #ffffff; --faded: #8E8875; --desk: #C9C4B4;
  --rule: #E8E2D2; --dash: #B3AC99;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { color-scheme: light; }
body {
  background: var(--paper);
  background-image: radial-gradient(rgba(17,17,17,.055) 1px, transparent 1px);
  background-size: 7px 7px;
  color: var(--ink);
  font-family: 'Barlow', system-ui, sans-serif;
  min-height: 100vh; display: flex; flex-direction: column;
}
a { color: var(--red); text-decoration-thickness: 2px; }
a:hover { color: var(--ink); }
.wrap { width: 100%; max-width: 1020px; margin: 0 auto; padding: 0 16px; }
.anton { font-family: 'Anton', 'Arial Black', sans-serif; }
.cond { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

@keyframes popIn { 0% { transform: scale(.2) rotate(-8deg); opacity: 0 } 70% { transform: scale(1.12) rotate(2deg) } 100% { transform: scale(1) rotate(0) } }
@keyframes shakeX { 0%,100% { transform: translateX(0) } 20% { transform: translateX(-7px) } 40% { transform: translateX(6px) } 60% { transform: translateX(-4px) } 80% { transform: translateX(3px) } }
@keyframes blinkQ { 0%,100% { opacity: 1 } 50% { opacity: .2 } }
@keyframes toastUp { from { transform: translate(-50%,20px); opacity: 0 } to { transform: translate(-50%,0); opacity: 1 } }
@keyframes pulseDot { 0%,100% { transform: scale(1) } 50% { transform: scale(1.35) } }
@keyframes tickerMove { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---------- masthead ---------- */
header.mast { border-bottom: 3px solid var(--ink); background: var(--paper); position: sticky; top: 0; z-index: 20; }
.mastrow { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 20px; max-width: 1280px; margin: 0 auto; }
.logo { text-decoration: none; color: var(--ink); }
.logo-t { display: block; font-family: 'Anton', 'Arial Black', sans-serif; font-size: 30px; line-height: 1; letter-spacing: .5px; }
.logo-s { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: 2.5px; color: var(--red); }
nav.topnav { display: flex; border: 2.5px solid var(--ink); background: var(--white); }
nav.topnav a {
  padding: 9px 22px; font-family: 'Anton', sans-serif; font-size: 13px; letter-spacing: 1.5px;
  color: var(--ink); text-decoration: none; border-right: 2.5px solid var(--ink);
}
nav.topnav a:last-child { border-right: none; }
nav.topnav a.on { background: var(--red); color: #fff; }
.scores { display: flex; gap: 7px; text-align: center; }
.scores .tile { border: 2.5px solid var(--ink); padding: 3px 12px; background: var(--white); }
.scores .tile.dark { background: var(--ink); color: #fff; }
.scores .lbl { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 9.5px; letter-spacing: 1.5px; color: var(--red); }
.scores .tile.dark .lbl { color: var(--gold); }
.scores .val { font-family: 'Anton', sans-serif; font-size: 19px; line-height: 1; }
.ticker { overflow: hidden; background: var(--ink); color: var(--paper); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: 1.7px; padding: 3px 0; white-space: nowrap; }
.ticker-in { display: inline-block; animation: tickerMove 18s linear infinite; }

/* ---------- bottom nav (mobile) ---------- */
nav.bottomnav { display: none; }
@media (max-width: 767px) {
  nav.topnav { display: none; }
  nav.bottomnav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 25;
    background: var(--ink); padding-bottom: env(safe-area-inset-bottom);
  }
  nav.bottomnav a {
    flex: 1; text-align: center; padding: 13px 0 12px; text-decoration: none;
    color: #8B8B8B; border-top: 4px solid transparent;
    font-family: 'Anton', sans-serif; font-size: 13px; letter-spacing: 1.5px;
  }
  nav.bottomnav a.on { color: #fff; border-top-color: var(--red); }
  body { padding-bottom: 64px; }
}

main { flex: 1; padding: 24px 0 40px; }
@media (max-width: 767px) { main { padding-top: 14px; } }

/* ---------- daily header ---------- */
.daily-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.daily-head .ed { font-family: 'Anton', sans-serif; font-size: 15px; letter-spacing: .5px; }
.daily-head .ed span { color: var(--red); }
.dots { display: flex; gap: 4px; }
.dots i { width: 13px; height: 13px; border: 2px solid var(--ink); background: var(--white); display: block; }
.dots i.ok { background: var(--green); }
.dots i.no { background: var(--red); }
.dots i.cur { background: var(--gold); animation: pulseDot 1.2s infinite; }

/* ---------- arena ---------- */
.arena { display: grid; grid-template-columns: 1fr; gap: 0; }
.tcard {
  background: var(--white); border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(17,17,17,.18); padding: 14px 16px;
  display: flex; flex-direction: column; position: relative;
}
.tcard-a { transform: rotate(-.5deg); }
.tcard-b { transform: rotate(.5deg); }
.tcard-b.good { border-color: var(--green); box-shadow: 6px 6px 0 rgba(29,169,64,.35); }
.tcard-b.bad { border-color: var(--red); box-shadow: 6px 6px 0 rgba(224,10,30,.35); animation: shakeX .45s ease-out; }
.who { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ava {
  width: 88px; height: 88px; border: 3px solid var(--ink); flex: none; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-family: 'Anton', sans-serif; font-size: 26px;
}
.ava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.who .nm { font-family: 'Anton', sans-serif; font-size: 21px; line-height: 1.05; text-transform: uppercase; }
.who .oc { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12.5px; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; }
.platlbl {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: 1.5px;
  margin: 10px 0 2px; text-transform: uppercase; border-bottom: 2px solid var(--ink); align-self: flex-start;
}
.bignum { font-family: 'Anton', sans-serif; font-size: 52px; line-height: 1; }
.bignum.slam { animation: popIn .4s cubic-bezier(.2,1.5,.4,1) both; }
.exact { font-size: 12.5px; font-weight: 500; color: #666; margin-top: 2px; }
.qrow { display: flex; align-items: baseline; gap: 12px; margin-top: 6px; }
.qmark { font-family: 'Anton', sans-serif; font-size: 56px; line-height: 1; color: var(--red); animation: blinkQ 1.6s infinite; }
.qtext { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 15px; line-height: 1.3; color: #444; text-transform: uppercase; letter-spacing: .5px; }
.badge {
  position: absolute; top: -14px; right: 10px; color: #fff; border: 3px solid var(--ink);
  font-family: 'Anton', sans-serif; font-size: 13px; padding: 3px 12px;
  transform: rotate(-3deg); animation: popIn .35s both; z-index: 2;
}
.badge.good { background: var(--green); }
.badge.bad { background: var(--red); }

.vsrow { display: flex; align-items: center; gap: 10px; margin: 10px 2px; }
.vsrow .ln { flex: 1; height: 3px; background: var(--ink); }
.vsbadge { background: var(--gold); border: 3px solid var(--ink); font-family: 'Anton', sans-serif; font-size: 13px; padding: 3px 12px; transform: rotate(2deg); }

.btnrow { display: flex; gap: 10px; margin-top: 16px; }
.tbtn {
  flex: 1; height: 62px; border: 3px solid var(--ink); color: #fff; cursor: pointer;
  font-family: 'Anton', sans-serif; font-size: 18px; letter-spacing: 1px;
  transition: transform .06s, box-shadow .06s;
}
.tbtn.hi { background: var(--red); box-shadow: 5px 5px 0 var(--ink); }
.tbtn.lo { background: var(--ink); box-shadow: 5px 5px 0 var(--red); }
.tbtn:active { transform: translate(4px,4px); }
.tbtn.hi:active { box-shadow: 1px 1px 0 var(--ink); }
.tbtn.lo:active { box-shadow: 1px 1px 0 var(--red); }
.tbtn:disabled { opacity: .55; cursor: default; }

@media (min-width: 768px) {
  .arena { grid-template-columns: 1fr 90px 1fr; align-items: stretch; }
  .tcard { padding: 20px 24px; }
  .tcard-a { transform: rotate(-.4deg); grid-column: 1; }
  .tcard-b { transform: rotate(.4deg); grid-column: 3; grid-row: 1; }
  .ava { width: 128px; height: 128px; font-size: 40px; }
  .who .nm { font-size: 26px; }
  .who .oc { font-size: 13px; letter-spacing: 2px; }
  .platlbl { font-size: 13px; letter-spacing: 2px; margin-top: 18px; }
  .bignum { font-size: 72px; margin-top: auto; }
  .exact { font-size: 13px; margin-top: 4px; }
  .qmark { font-size: 64px; }
  .qtext { font-size: 16px; }
  .badge { top: -16px; right: 14px; font-size: 14px; padding: 4px 14px; }
  .vsrow { grid-column: 2; grid-row: 1; flex-direction: column; margin: 0; align-self: stretch; }
  .vsrow .ln { flex: 1; width: 3px; height: auto; }
  .vsbadge { font-size: 14px; padding: 4px 13px; }
  .btnrow { grid-column: 3; margin-top: 12px; }
  .tbtn { height: 56px; font-size: 16px; }
  .tcard { box-shadow: 7px 7px 0 rgba(17,17,17,.18); }
  .tcard-b.good { box-shadow: 7px 7px 0 rgba(29,169,64,.35); }
  .tcard-b.bad { box-shadow: 7px 7px 0 rgba(224,10,30,.35); }
}

/* ---------- fine print / FAQ ---------- */
.finehead { font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 1px; border-bottom: 3px solid var(--ink); padding-bottom: 4px; margin: 28px 0 10px; }
.finehead span { color: var(--red); }
.faqgrid { display: flex; flex-direction: column; gap: 10px; }
.faqgrid details { background: var(--white); border: 2.5px solid var(--ink); padding: 10px 14px; }
.faqgrid summary { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .5px; cursor: pointer; text-transform: uppercase; }
.faqgrid p { font-size: 13.5px; line-height: 1.5; color: #444; margin: 8px 0 2px; }
@media (min-width: 768px) { .faqgrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; align-items: start; } }
.adslot {
  height: 76px; margin-top: 14px; border: 3px dashed var(--dash);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 2px; color: var(--faded);
}
@media (min-width: 768px) { .adslot { height: 96px; font-size: 13px; letter-spacing: 2.5px; } }

/* ---------- loading / error ---------- */
.loadbox { border: 3px dashed var(--dash); padding: 14px 16px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1px; color: var(--faded); text-transform: uppercase; margin: 20px 0; }
.errbox { border: 3px solid var(--red); background: var(--white); padding: 12px 16px; font-size: 13.5px; font-weight: 700; color: var(--red); margin: 20px 0; }
.errbox u { cursor: pointer; }

/* ---------- modals ---------- */
.overlay { position: fixed; inset: 0; background: rgba(17,17,17,.65); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 50; }
.tmodal { width: 100%; max-width: 460px; background: var(--paper); border: 3px solid var(--ink); padding: 0 0 18px; animation: popIn .42s cubic-bezier(.2,1.4,.4,1) both; }
.tmodal.end { box-shadow: 8px 8px 0 var(--red); }
.tmodal.daily { box-shadow: 8px 8px 0 var(--gold); }
.tmodal .bar { font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 3px; text-align: center; padding: 6px 0; border-bottom: 3px solid var(--ink); }
.tmodal.end .bar { background: var(--red); color: #fff; }
.tmodal.daily .bar { background: var(--ink); color: var(--gold); }
.tmodal .inner { padding: 16px 20px 0; }
.tmodal .headline { font-family: 'Anton', sans-serif; font-size: 20px; line-height: 1.1; text-transform: uppercase; }
.tmodal .mega { font-family: 'Anton', sans-serif; font-size: 88px; line-height: .95; color: var(--red); }
.tmodal .mega small { font-size: 26px; color: var(--faded); }
.tmodal .verdict { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .5px; color: #444; text-transform: uppercase; margin: 6px 0 14px; }
.sharepreview { background: var(--ink); color: var(--paper); padding: 12px 15px; margin-bottom: 14px; transform: rotate(-.6deg); border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--gold); }
.sharepreview .k { font-family: 'Anton', sans-serif; font-size: 11px; letter-spacing: 2px; color: var(--gold); }
.sharepreview .l { font-size: 14px; font-weight: 700; line-height: 1.45; margin-top: 4px; }
.sharepreview .u { font-size: 11.5px; color: #999; margin-top: 5px; }
.gridsq { display: flex; gap: 4px; margin-bottom: 14px; }
.gridsq i { flex: 1; height: 26px; border: 3px solid var(--ink); background: var(--white); display: block; }
.gridsq i.ok { background: var(--green); }
.gridsq i.no { background: var(--red); }
.statrow { display: flex; gap: 10px; margin-bottom: 14px; }
.statrow .box { flex: 1; display: flex; align-items: center; justify-content: space-between; background: var(--white); border: 3px solid var(--ink); padding: 10px 14px; gap: 8px; }
.statrow .box .k { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.5px; color: #777; }
.statrow .box .v { font-family: 'Anton', sans-serif; font-size: 19px; letter-spacing: 1px; white-space: nowrap; }
.tmodal .btns { display: flex; flex-direction: column; gap: 9px; }
@media (min-width: 480px) { .tmodal .btns.row2 { flex-direction: row; } }
.mbtn {
  flex: 1; height: 54px; border: 3px solid var(--ink); cursor: pointer;
  font-family: 'Anton', sans-serif; font-size: 15px; letter-spacing: 1px;
  box-shadow: 4px 4px 0 var(--ink); transition: transform .06s, box-shadow .06s;
}
.mbtn:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.mbtn.primary { background: var(--red); color: #fff; }
.mbtn.darkgold { background: var(--ink); color: var(--gold); box-shadow: 4px 4px 0 var(--red); }
.mbtn.darkgold:active { box-shadow: 1px 1px 0 var(--red); }
.mbtn.plain { background: var(--white); color: var(--ink); }

.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); border: 3px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
  padding: 9px 18px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: .5px; white-space: nowrap; z-index: 60; animation: toastUp .25s ease-out both; text-transform: uppercase;
}
@media (min-width: 768px) { .toast { bottom: 34px; } }

/* ---------- stars index ---------- */
.pagehead { margin-bottom: 14px; }
.pagehead .t { font-family: 'Anton', sans-serif; font-size: 30px; line-height: 1; }
.pagehead .s { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px; color: var(--red); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
@media (min-width: 768px) { .pagehead .t { font-size: 38px; } .pagehead .s { font-size: 15px; letter-spacing: 1.5px; } }
.starsbar { display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.searchbox {
  width: 100%; height: 46px; border: 3px solid var(--ink); background: var(--white); padding: 0 14px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 1px; outline: none;
}
@media (min-width: 768px) { .searchbox { width: 280px; } }
.stargrid { border: 2.5px solid var(--ink); background: var(--white); }
.stargrid a {
  display: flex; align-items: center; gap: 11px; padding: 9px 12px;
  border-bottom: 2px solid var(--rule); text-decoration: none; color: var(--ink);
}
.stargrid a:hover { background: #FDF6DC; }
.stargrid .rk { font-family: 'Anton', sans-serif; font-size: 14px; color: var(--red); width: 34px; flex: none; }
.stargrid .sava { width: 52px; height: 52px; border: 2.5px solid var(--ink); flex: none; display: flex; align-items: center; justify-content: center; font-family: 'Anton', sans-serif; font-size: 16px; position: relative; overflow: hidden; }
.stargrid .sava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.stargrid .nm { font-family: 'Anton', sans-serif; font-size: 15px; line-height: 1.15; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stargrid .oc { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; color: #777; letter-spacing: 1px; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stargrid .mid { min-width: 0; flex: 1; }
.stargrid .ab { font-family: 'Anton', sans-serif; font-size: 18px; flex: none; }
@media (min-width: 768px) {
  .stargrid { display: grid; grid-template-columns: 1fr 1fr; }
  .stargrid a { padding: 10px 16px; }
}

/* ---------- star page ---------- */
.backlink { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1px; color: var(--red); margin-bottom: 14px; text-transform: uppercase; display: inline-block; text-decoration: none; }
.dossier { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (min-width: 768px) { .dossier { grid-template-columns: 320px 1fr; gap: 26px; } }
.idcard { background: var(--white); border: 3px solid var(--ink); box-shadow: 6px 6px 0 rgba(17,17,17,.18); padding: 24px; text-align: center; }
.idcard .bigava { width: 112px; height: 112px; margin: 0 auto; border: 3px solid var(--ink); transform: rotate(-2deg); display: flex; align-items: center; justify-content: center; font-family: 'Anton', sans-serif; font-size: 36px; position: relative; overflow: hidden; }
.idcard .bigava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.idcard h1 { font-family: 'Anton', sans-serif; font-size: 28px; line-height: 1.05; margin-top: 14px; text-transform: uppercase; font-weight: 400; }
.idcard .bio { font-size: 13.5px; color: #555; font-weight: 500; margin-top: 6px; }
.idcard .country { display: inline-block; margin-top: 10px; padding: 3px 12px; border: 2.5px solid var(--ink); background: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.playbtn {
  display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 16px; height: 54px;
  border: 3px solid var(--ink); background: var(--red); color: #fff; text-decoration: none;
  font-family: 'Anton', sans-serif; font-size: 15px; letter-spacing: 1px; box-shadow: 5px 5px 0 var(--ink);
  transition: transform .06s, box-shadow .06s;
}
.playbtn:active { transform: translate(4px,4px); box-shadow: 1px 1px 0 var(--ink); }
.playbtn:hover { color: #fff; }
.numbers { background: var(--white); border: 3px solid var(--ink); box-shadow: 6px 6px 0 rgba(17,17,17,.18); }
.numbers .cap { background: var(--ink); color: var(--paper); font-family: 'Anton', sans-serif; font-size: 13px; letter-spacing: 2.5px; padding: 6px 16px; }
.numbers .row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 2px solid var(--rule); }
.numbers .pl { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .5px; text-transform: uppercase; }
.numbers .asof { font-size: 12px; color: #888; }
.numbers .right { margin-left: auto; text-align: right; }
.numbers .ab { font-family: 'Anton', sans-serif; font-size: 22px; line-height: 1; }
.numbers .ex { font-size: 12px; color: #888; font-weight: 500; }
.attrib { margin-top: 16px; font-size: 11.5px; line-height: 1.6; color: var(--faded); }
.attrib a { color: var(--faded); }

/* ---------- content pages (about/credits/privacy) ---------- */
.cardsgrid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }
@media (min-width: 768px) { .cardsgrid { grid-template-columns: 1fr 1fr 1fr; align-items: start; } }
.tbox { background: var(--white); border: 3px solid var(--ink); padding: 15px 17px; box-shadow: 5px 5px 0 rgba(17,17,17,.18); }
.tbox .k { font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 1px; margin-bottom: 6px; color: var(--red); }
.tbox p { font-size: 13.5px; line-height: 1.55; color: #444; }
.tbox .links { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 500; }
.tbox .mono { border: 2px solid var(--rule); padding: 8px 10px; font-size: 11px; line-height: 1.6; color: #666; font-family: 'JetBrains Mono', ui-monospace, monospace; margin-top: 8px; }

/* ---------- 404 ---------- */
.nf { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 16px 20px; }
.nf .stamp { background: var(--red); color: #fff; border: 3px solid var(--ink); font-family: 'Anton', sans-serif; font-size: 13px; letter-spacing: 3px; padding: 4px 14px; transform: rotate(-2deg); }
.nf .code { font-family: 'Anton', sans-serif; font-size: 120px; line-height: 1; color: var(--red); margin-top: 14px; }
.nf .t { font-family: 'Anton', sans-serif; font-size: 22px; text-transform: uppercase; margin-top: 6px; }
.nf .d { font-size: 14px; color: #555; font-weight: 500; margin-top: 8px; max-width: 320px; line-height: 1.5; }
.nf .acts { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.nf .acts .mbtn { flex: none; padding: 0 26px; text-decoration: none; display: flex; align-items: center; }
@media (min-width: 768px) { .nf .code { font-size: 160px; } .nf .t { font-size: 26px; } }

/* ---------- footer ---------- */
footer.tfoot {
  border-top: 3px solid var(--ink); background: var(--ink); color: #B8B3A3;
  padding: 12px 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1px;
}
footer.tfoot .in { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
footer.tfoot a { color: var(--paper); text-decoration: none; margin-left: 16px; }
footer.tfoot a:hover { color: var(--gold); }
footer.tfoot a:first-child { margin-left: 0; }
