/* =========================================================
   $OFFICE — The Office Coin on TON
   Dunder Mifflin palette: manila cream, corporate blue,
   warning-label yellow, conference-room grey, ink black.
   ========================================================= */

:root {
  --paper:     #f4ecd8;   /* manila / copy paper */
  --paper-2:   #fbf6e9;   /* lighter card */
  --ink:       #1a1a1a;   /* near-black */
  --blue:      #1f6feb;   /* Dunder Mifflin corporate blue */
  --blue-deep: #144a9e;
  --yellow:    #f6c544;   /* warning-label / sticky note */
  --green:     #2e8b57;   /* up / accent */
  --red:       #c8443a;   /* down / Schrute red */
  --grey:      #6b6457;   /* muted text */
  --line:      #d8cdb2;   /* hairline on paper */
  --shadow:    0 6px 0 rgba(0,0,0,.12), 0 14px 30px rgba(0,0,0,.18);
  --shadow-sm: 0 3px 0 rgba(0,0,0,.10), 0 8px 18px rgba(0,0,0,.14);
}

* { box-sizing: border-box; }

/* Force a light color scheme so Android/Samsung auto-dark mode doesn't recolor art */
:root { color-scheme: light; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

/* ---------- Backdrop ---------- */

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(31,111,235,.06), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(246,197,68,.10), transparent 45%),
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(0,0,0,.025) 39px, transparent 40px);
}
.coffee-ring {
  position: absolute;
  border-radius: 50%;
  border: 6px solid rgba(120,72,30,.10);
  filter: blur(.5px);
}
.ring-1 { width: 140px; height: 140px; top: 18%; right: 8%; }
.ring-2 { width: 90px;  height: 90px;  bottom: 14%; left: 6%; border-width: 5px; }
.paperclip {
  position: absolute;
  width: 26px; height: 60px;
  border: 4px solid rgba(120,128,140,.22);
  border-radius: 14px;
  transform: rotate(25deg);
}
.paperclip-1 { top: 30%; left: 4%; }
.paperclip-2 { top: 64%; right: 5%; transform: rotate(-18deg); }

/* ---------- Dunder Mifflin logo watermark ---------- */

.dm-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: min(80vw, 680px);
  aspect-ratio: 500 / 313;
  background-color: var(--blue);
  opacity: .06;
  z-index: 0;
  pointer-events: none;
  -webkit-mask: url("img/dunder-mifflin-mark.svg") center / contain no-repeat;
          mask: url("img/dunder-mifflin-mark.svg") center / contain no-repeat;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  background: rgba(244,236,216,.88);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--line);
}
.logo { font-family: 'Bungee', sans-serif; font-size: 24px; letter-spacing: 1px; }
.logo-dollar { color: var(--blue); }
.logo-text { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links > a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  opacity: .8;
  transition: opacity .15s, color .15s;
}
.nav-links > a:hover { opacity: 1; color: var(--blue); }
.nav-socials { display: flex; gap: 10px; }
.social-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  transition: transform .15s, background .15s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { transform: translateY(-2px); background: var(--blue-deep); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 46px 26px 54px;
}

/* ----- Camcorder viewfinder ----- */
.viewfinder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background:
    linear-gradient(180deg, #2b3550 0%, #1b2336 60%, #141a29 100%);
  box-shadow: var(--shadow);
}
/* faint CRT scanlines over the whole shot */
.viewfinder::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.16) 0 2px, transparent 2px 4px);
  mix-blend-mode: multiply; opacity: .35;
}

/* HUD overlay */
.vf-hud { position: absolute; inset: 0; z-index: 3; font-family: 'Special Elite', monospace; color: #e9f0ff; }
.vf-rec {
  position: absolute; top: 14px; left: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; letter-spacing: 2px; color: #ff5b5b;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.vf-dot { width: 11px; height: 11px; border-radius: 50%; background: #ff2e2e; box-shadow: 0 0 8px #ff5b5b; animation: recblink 1.1s steps(1) infinite; }
@keyframes recblink { 0%,50% { opacity: 1; } 51%,100% { opacity: .15; } }
.vf-tc { position: absolute; top: 14px; right: 16px; font-size: 14px; letter-spacing: 1px; color: #cfe0ff; text-shadow: 0 1px 2px rgba(0,0,0,.6); font-variant-numeric: tabular-nums; }
.vf-batt { position: absolute; bottom: 14px; right: 16px; font-size: 14px; letter-spacing: 2px; color: #b9e6b0; }
.vf-corner { position: absolute; width: 26px; height: 26px; border: 2px solid rgba(255,255,255,.7); }
.vf-corner.tl { top: 38px; left: 16px; border-right: 0; border-bottom: 0; }
.vf-corner.tr { top: 38px; right: 16px; border-left: 0; border-bottom: 0; }
.vf-corner.bl { bottom: 38px; left: 16px; border-right: 0; border-top: 0; }
.vf-corner.br { bottom: 38px; right: 16px; border-left: 0; border-top: 0; }
.vf-reticle { position: absolute; left: 50%; top: 50%; width: 30px; height: 30px; transform: translate(-50%,-50%); }
.vf-reticle::before, .vf-reticle::after { content: ""; position: absolute; background: rgba(255,255,255,.5); }
.vf-reticle::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.vf-reticle::after  { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }

/* the "shot": desk + mug + nameplate, slightly low-light */
.vf-scene { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; }
.desk {
  position: relative;
  width: 100%;
  padding-bottom: 16%;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.nameplate {
  background: #d8c08a;
  color: #2a2417;
  font-family: 'Special Elite', monospace;
  font-size: clamp(10px, 1.6vw, 14px);
  letter-spacing: 2px;
  padding: 6px 16px;
  border: 2px solid #2a2417;
  border-radius: 3px;
  box-shadow: 0 3px 0 rgba(0,0,0,.35);
}

/* lower-third headline strap */
.lower-third { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0; }
.lt-bar {
  display: inline-flex; align-items: baseline; gap: 14px;
  margin: 0 0 0 18px;
  padding: 8px 18px;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: -3px -3px 0 rgba(0,0,0,.25);
}
.lt-name { font-family: 'Bungee', sans-serif; font-size: clamp(26px, 5vw, 44px); color: #fff; line-height: 1; }
.lt-role { font-family: 'Special Elite', monospace; font-size: clamp(12px, 2vw, 16px); color: var(--yellow); letter-spacing: 1px; }
.lt-line {
  margin: 0;
  background: rgba(13,17,28,.86);
  color: #eef2fb;
  border-top: 2px solid var(--yellow);
  padding: 12px 20px 14px;
  font-size: clamp(13px, 1.7vw, 16px);
  line-height: 1.55;
}
.lt-twss { color: var(--yellow); font-style: italic; font-family: 'Special Elite', monospace; }

/* mug (now lives inside the shot) */
.mug { position: relative; width: 188px; height: 166px; }
.mug-body {
  position: absolute; left: 12px; top: 22px;
  width: 146px; height: 138px;
  background: #fff;
  border: 5px solid var(--ink);
  border-radius: 8px 8px 14px 14px;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.45);
}
.mug-text { font-family: 'Bungee', sans-serif; font-size: 19px; line-height: 1.05; text-align: center; color: var(--ink); }
.mug-handle {
  position: absolute; right: 6px; top: 56px;
  width: 44px; height: 58px;
  border: 12px solid var(--ink); border-left: none;
  border-radius: 0 28px 28px 0;
}
.mug-steam { position: absolute; top: -8px; width: 6px; height: 34px; background: rgba(255,255,255,.4); border-radius: 6px; filter: blur(2px); animation: steam 3s ease-in-out infinite; }
.steam-1 { left: 54px; animation-delay: 0s; }
.steam-2 { left: 82px; animation-delay: .8s; }
.steam-3 { left: 112px; animation-delay: 1.5s; }
@keyframes steam {
  0%   { transform: translateY(8px) scaleY(.6); opacity: 0; }
  40%  { opacity: .7; }
  100% { transform: translateY(-22px) scaleY(1.2); opacity: 0; }
}

/* ----- Action bar (CTAs + CA) ----- */
.hero-actions {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-top: 22px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 6px;
  border: 2px solid var(--ink);
  transition: transform .12s, box-shadow .12s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,.12); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-secondary { background: var(--paper-2); color: var(--ink); }
.btn-ghost { background: var(--yellow); color: var(--ink); }
.btn-sm { font-size: 14px; padding: 10px 18px; }

/* CA chip */
.ca-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  font-family: 'Special Elite', monospace;
  font-size: 12.5px;
  background: var(--ink);
  color: #f4ecd8;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 9px 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ca-label { background: var(--yellow); color: var(--ink); font-weight: 800; padding: 2px 7px; border-radius: 3px; }
.ca-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 42vw; }
.ca-copy svg { width: 16px; height: 16px; flex: none; }
.ca-toast {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: var(--green); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 800;
  opacity: 0; transform: translateY(100%);
  transition: opacity .2s, transform .2s;
}
.ca-copied .ca-toast { opacity: 1; transform: translateY(0); }

/* ----- Stat strip ----- */
.stat-strip {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.stat-chip {
  display: flex; flex-direction: column;
  min-width: 92px;
  padding: 4px 12px;
  border-right: 1px dashed var(--line);
}
.stat-chip:last-of-type { border-right: 0; }
.stat-label { font-size: 11px; letter-spacing: 1.5px; color: var(--grey); font-weight: 700; }
.stat-value { font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums; }
.stat-note { margin-left: auto; font-family: 'Special Elite', monospace; font-size: 12px; color: var(--grey); }
.flash-up .stat-value   { animation: flashUp .9s ease; }
.flash-down .stat-value { animation: flashDown .9s ease; }
@keyframes flashUp   { 0% { color: var(--green); } 100% { color: var(--ink); } }
@keyframes flashDown { 0% { color: var(--red); } 100% { color: var(--ink); } }

/* ---------- Section scaffolding ---------- */

section { position: relative; z-index: 1; }
.section-title {
  font-family: 'Bungee', sans-serif;
  text-align: center;
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 8px;
}
.section-title.left { text-align: left; }
.section-title .hl {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 6px;
}
.section-sub {
  text-align: center;
  color: var(--grey);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 34px;
}

/* ---------- Clips ---------- */

.clips { max-width: 1120px; margin: 0 auto; padding: 50px 26px; }
.clip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.clip-card {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s;
}
.clip-card:hover { transform: translateY(-3px); }
.clip-embed { position: relative; aspect-ratio: 16/9; background: #000; }
.clip-poster {
  display: block; width: 100%; height: 100%;
  padding: 0; border: none; cursor: pointer; background: #000;
}
.clip-poster img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .92; transition: opacity .15s; }
.clip-poster:hover img { opacity: 1; }
.clip-play {
  position: absolute; left: 50%; top: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%);
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.clip-play::after {
  content: ""; position: absolute;
  left: 56%; top: 50%; transform: translate(-50%,-50%);
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
.clip-iframe { width: 100%; height: 100%; border: 0; display: block; }
.clip-meta { padding: 14px 16px 18px; }
.clip-meta h3 { margin: 0 0 6px; font-size: 19px; }
.clip-meta p { margin: 0; font-size: 14px; line-height: 1.5; color: #44403a; }

.clip-card-cta {
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff; text-align: center;
}
.clip-cta-inner { padding: 28px 22px; }
.clip-cta-emoji { font-size: 40px; }
.clip-cta-inner h3 { margin: 8px 0 8px; font-size: 22px; }
.clip-cta-inner p { margin: 0 0 16px; font-size: 14px; opacity: .92; }
.clip-card-cta .btn-primary { background: var(--yellow); color: var(--ink); }

/* ---------- GIF wall ---------- */

.gifs { max-width: 1120px; margin: 0 auto; padding: 30px 26px 50px; }
.gif-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gif-cell {
  position: relative;
  aspect-ratio: 1/1;
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
}
.gif-cell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gif-note { text-align: center; color: var(--grey); font-size: 14px; margin-top: 22px; }
.gif-note a { color: var(--blue); font-weight: 700; }

/* ---------- Stickers ---------- */

.stickers {
  background: var(--blue);
  color: #fff;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.stickers .section-title { color: #fff; }
.stickers .section-title .hl { background: linear-gradient(transparent 60%, rgba(246,197,68,.55) 60%); }
.sticker-head {
  max-width: 820px; margin: 0 auto;
  padding: 54px 26px 8px;
  text-align: center;
}
.sticker-lede { font-size: 16px; line-height: 1.65; margin: 0 auto 22px; max-width: 680px; }
.sticker-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.sticker-cta .btn-secondary { background: var(--paper-2); }

/* live animated sticker grid */
.sticker-grid {
  max-width: 1060px; margin: 30px auto 0;
  padding: 0 26px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
}
.sticker-cell {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 2px solid rgba(0,0,0,.12);
  border-radius: 12px;
  overflow: hidden;
  display: grid; place-items: center;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 2px 0 rgba(0,0,0,.18);
  forced-color-adjust: none;
  color-scheme: light;
  /* defeat Chrome Android "Auto Dark Theme": images/canvas are exempt from its
     recoloring pass, so render the white backing as an image (gradient) too. */
  background-image: linear-gradient(#ffffff, #ffffff);
}
.sticker-cell:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 5px 0 rgba(0,0,0,.22); }
.sticker-cell canvas,
.sticker-cell svg { width: 92% !important; height: 92% !important; forced-color-adjust: none; }
.sticker-fallback { display: inline-block; padding: 16px; color: #fff; font-weight: 800; text-decoration: underline; }
.sticker-credit { text-align: center; font-size: 12px; opacity: .85; margin: 26px 26px 54px; }

/* ---------- Stats ---------- */

.stats { max-width: 1120px; margin: 0 auto; padding: 56px 26px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.stat-box {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.stat-box::before {
  content: "";
  position: absolute; top: -8px; left: 22px;
  width: 60px; height: 16px;
  background: rgba(246,197,68,.7);
  transform: rotate(-3deg);
  border: 1px solid rgba(0,0,0,.15);
}
.stat-big {
  font-family: 'Bungee', sans-serif;
  font-size: 44px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-cap { font-size: 15px; line-height: 1.5; color: #34302a; }
.stat-src {
  margin-top: 12px;
  font-family: 'Special Elite', monospace;
  font-size: 12px; letter-spacing: 1px;
  color: var(--grey);
  text-transform: uppercase;
}
.stats-foot {
  text-align: center; max-width: 720px;
  margin: 34px auto 0; color: var(--grey);
  font-size: 14px; line-height: 1.6;
}

/* ---------- Legacy / Ripple Effect ---------- */

.legacy { max-width: 1120px; margin: 0 auto; padding: 56px 26px; }
.legacy-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.legacy-block { display: flex; flex-direction: column; gap: 14px; }
.legacy-cat {
  font-family: 'Bungee', sans-serif;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 2px;
}
.legacy-tag {
  display: inline-block;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #fff;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 3px;
  padding: 2px 8px;
  margin-right: 6px;
  vertical-align: middle;
  transform: rotate(-1deg);
}
.legacy-card {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.legacy-card h4 { margin: 0 0 6px; font-size: 18px; }
.legacy-card p { margin: 0; font-size: 14px; line-height: 1.55; color: #34302a; }
.legacy-list { margin: 10px 0 0; padding-left: 18px; }
.legacy-list li { font-size: 14px; line-height: 1.7; color: #34302a; }

/* watch-order callout */
.legacy-callout {
  margin-top: 28px;
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.legacy-callout-head { display: flex; align-items: center; gap: 12px; }
.legacy-mug { font-size: 30px; }
.legacy-callout-head h3 { font-family: 'Bungee', sans-serif; font-size: 22px; margin: 0; }
.legacy-callout > p { font-size: 15px; margin: 12px 0; }
.legacy-order {
  list-style: none; margin: 8px 0 14px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.legacy-order li {
  display: flex; align-items: center; gap: 8px;
  background: var(--paper-2); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 8px;
  padding: 8px 14px; font-weight: 800; font-size: 15px;
}
.lo-num {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 13px;
}
.legacy-callout-foot { font-size: 14px; opacity: .95; margin: 0; }

/* ---------- Fandom ---------- */

.fandom {
  background: var(--paper-2);
  border-top: 2px solid var(--line);
  padding: 56px 0;
}
.fandom .section-title, .fandom .section-sub { padding: 0 26px; }
.fan-cols {
  max-width: 1120px; margin: 0 auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.fan-cat {
  font-family: 'Bungee', sans-serif;
  font-size: 16px;
  color: var(--blue-deep);
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 6px;
  margin: 0 0 14px;
}
.fan-list { list-style: none; margin: 0; padding: 0; }
.fan-list li { margin-bottom: 14px; }
.fan-list li a {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}
.fan-list li a:hover { color: var(--blue); text-decoration: underline; }
.fan-list li span { display: block; font-size: 13px; color: var(--grey); margin-top: 2px; }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: #e9e2d1;
  padding: 40px 26px 50px;
  border-top: 3px solid var(--blue);
}
.footer-row {
  max-width: 1120px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: 'Bungee', sans-serif; font-size: 22px; }
.footer-logo .logo-dollar { color: var(--yellow); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #e9e2d1; text-decoration: none; font-weight: 600; font-size: 14px; opacity: .85; }
.footer-links a:hover { opacity: 1; color: var(--yellow); }
.disclaimer {
  max-width: 1120px; margin: 0 auto;
  font-size: 12px; line-height: 1.6; color: #9a9384;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-row { justify-content: center; }
  .ca-chip { justify-content: center; }
  .ca-value { max-width: 60vw; }
  .stat-note { margin-left: 0; width: 100%; text-align: center; padding-top: 6px; }
  .lt-bar { flex-direction: column; gap: 2px; }
}
@media (max-width: 560px) {
  .nav-links > a { display: none; }
  .nav-links > a[href="#clips"], .nav-links > a[href="#stats"] { display: inline; }
  .vf-corner, .vf-reticle { display: none; }
}
