:root, html[data-theme="trigger"] {
  --bg: #07060a;
  --panel: #12101a;
  --ink: #f4eefc;
  --muted: #9b91b0;
  --line: #2a2438;
  --red: #ff3b4a;
  --green: #39ff88;
  --violet: #a78bfa;
  --accent: #ff3b4a;
  --accent-2: #ff6b35;
  --accent-soft: rgba(255,59,74,.45);
  --accent-glow: rgba(255,59,74,.35);
  --accent-dim: rgba(255,59,74,.18);
  --secondary-accent: #39ff88;
  --secondary-soft: rgba(57,255,136,.35);
  --grad-btn: var(--accent);
  --grad-title: linear-gradient(100deg, #ff1a2e 0%, #ff4d3a 28%, #ff8a2b 52%, #39ff88 100%);
  --news-label: var(--red);
  --font: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}
html[data-theme="chill"],
html[data-theme="profit"] {
  --accent: #39ff88;
  --accent-2: #2ad4a0;
  --accent-soft: rgba(57,255,136,.5);
  --accent-glow: rgba(57,255,136,.4);
  --accent-dim: rgba(57,255,136,.2);
  --secondary-accent: #ff3b4a;
  --secondary-soft: rgba(255,59,74,.35);
  --grad-btn: var(--accent);
  --grad-title: linear-gradient(100deg, #1aff88 0%, #39ff88 32%, #2ad4a0 58%, #ff6b35 100%);
  --news-label: var(--green);
  --violet: #6ee7b7;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
html[data-theme="trigger"],
html[data-theme="trigger"] body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn:hover, .btn-orbit:hover, a.logo-tile:hover, .buy-card:hover, .fly-stack .btn:hover {
    transform: none;
    transition: border-color .15s, box-shadow .15s, background .15s, color .15s;
  }
  #themeTrigger:not([aria-pressed="true"]) { animation: none; }
}
body {
  margin: 0; min-height: 100vh; color: var(--ink); font-family: var(--font);
  background: radial-gradient(1200px 600px at 80% -10%, #2a1020 0%, transparent 55%),
              radial-gradient(900px 500px at -10% 20%, #122418 0%, transparent 50%),
              var(--bg);
}
html[data-theme="trigger"] body {
  cursor: url("../assets/cursors/fire.png") 16 4, auto;
}
html.fire-cursor,
html.fire-cursor * {
  cursor: none !important;
}
#fireCursor {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
}
html[data-theme="chill"] body,
html[data-theme="profit"] body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2339ff88' stroke='%23000' stroke-width='1' d='M4 2l12 8-5 1 3 9-3 1-3-9-4 4z'/%3E%3C/svg%3E") 2 2, auto;
}
a { color: inherit; }
.glow { position: fixed; pointer-events: none; filter: blur(60px); opacity: .35; z-index: 0; will-change: transform, opacity; }
.glow-a {
  width: 280px; height: 280px; background: var(--accent); top: 10%; right: 8%;
  animation: glowDriftA 18s ease-in-out infinite, glowBlink 7s ease-in-out infinite;
}
.glow-b {
  width: 220px; height: 220px; background: var(--secondary-accent); bottom: 15%; left: 5%; opacity: .25;
  animation: glowDriftB 22s ease-in-out infinite, glowBlink 9s ease-in-out infinite 1.5s;
}
@keyframes glowDriftA {
  0%,100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-28px, 18px) scale(1.06); }
  70% { transform: translate(16px, -22px) scale(.96); }
}
@keyframes glowDriftB {
  0%,100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(22px, -14px) scale(1.08); }
  65% { transform: translate(-18px, 20px) scale(.94); }
}
@keyframes glowBlink {
  0%,100% { opacity: .32; }
  45% { opacity: .18; }
  55% { opacity: .4; }
  75% { opacity: .22; }
}
@media (prefers-reduced-motion: reduce) {
  .glow-a, .glow-b { animation: none; }
}
.top, main, footer { position: relative; z-index: 1; }
.top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; position: sticky; top: 0; backdrop-filter: blur(12px);
  background: rgba(7,6,10,.72); border-bottom: 1px solid var(--line); z-index: 20;
}
html[data-theme="trigger"] .top {
  background: linear-gradient(180deg, rgba(90,32,48,.48), rgba(7,6,10,.78));
  border-bottom-color: rgba(255,59,74,.45);
}
html[data-theme="chill"] .top,
html[data-theme="profit"] .top {
  background: linear-gradient(180deg, rgba(32,90,48,.48), rgba(7,6,10,.78));
  border-bottom-color: rgba(57,255,136,.45);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; letter-spacing: .02em; }
.brand img { border-radius: 10px; border: 1px solid var(--line); }
.ton-verified {
  width: 15px; height: 15px; flex-shrink: 0; color: #0098ea;
  display: block;
}
nav { display: flex; gap: 14px; font-size: 14px; color: var(--muted); }
nav a { min-height: 44px; display: inline-flex; align-items: center; }
nav a { text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
nav a:hover,
nav a:focus {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
}
.nav-ico { font-size: 12px; line-height: 1; opacity: .9; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--line); background: var(--panel); color: var(--ink);
  border-radius: 999px; padding: 12px 18px; font: inherit; font-weight: 600;
  text-decoration: none; cursor: pointer;
  min-height: 44px;
  transition: border-color .15s, box-shadow .15s, transform .15s, filter .15s, background .15s, color .15s;
}
.btn:hover {
  border-color: var(--accent);
  border-style: dashed;
  box-shadow: 0 0 14px var(--accent-glow);
  transform: translateY(-2px);
  color: var(--ink);
}
.btn.primary:not(.btn-orbit) {
  background: var(--accent);
  color: #0a0a0a;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.btn.primary:not(.btn-orbit):hover {
  border-style: solid;
  filter: brightness(1.12);
  box-shadow: 0 0 22px var(--accent-glow);
  color: #0a0a0a;
}
.btn.ghost { background: transparent; }
.btn.ghost:hover {
  background: var(--accent-dim);
  border-style: dashed;
  border-color: var(--accent);
}
.btn-sm { padding: 10px 14px; font-size: 13px; min-height: 44px; }
.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.hero {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 48px 20px 28px;
}
.eyebrow { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin: 0 0 10px; }
h1 { font-size: clamp(40px, 7vw, 72px); line-height: .95; margin: 0 0 16px; letter-spacing: -0.04em; }
.grad {
  background: var(--grad-title);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 18px var(--accent-glow));
}
.lede { font-size: 18px; color: #d8d0e8; max-width: 36rem; line-height: 1.5; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 14px; }
.btn-ico { width: 16px; height: 16px; flex-shrink: 0; display: block; }
.btn-orbit-label { display: inline-flex; align-items: center; gap: 8px; }
.ca {
  font-size: 12px; color: var(--muted); word-break: break-all; cursor: pointer;
  border: 1px dashed var(--line); border-radius: 10px; padding: 10px 12px; max-width: 100%;
}
.ca:hover,
.ca-row .ca-big:hover { border-color: var(--accent); color: var(--ink); }
.ca-row {
  display: flex; align-items: stretch; gap: 10px; max-width: 100%;
}
.chain-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  flex-shrink: 0; padding: 0 12px; border-radius: 12px;
  border: 1px solid var(--accent); background: var(--accent-dim);
  color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: .08em;
}
.chain-pill img { width: 16px; height: 16px; display: block; }
.ca-row .ca-big {
  flex: 1; margin: 0; font-size: 13px; padding: 12px 14px; color: var(--ink);
  border-color: #3a3450; background: rgba(18,16,26,.55);
}
.ca-row #copyCa { flex-shrink: 0; align-self: center; }
.mono { font-family: var(--mono); }
.hero-art { display: flex; justify-content: center; }
.mascot-ring {
  width: min(360px, 80vw); aspect-ratio: 1; border-radius: 32px;
  padding: 14px; background: linear-gradient(145deg, rgba(255,59,74,.55), rgba(255,107,53,.28));
  box-shadow: 0 30px 80px rgba(255,59,74,.18);
  animation: float 5s ease-in-out infinite;
  contain: layout;
}
.mascot-hit { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.mascot { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; background: #0c0b10; display: block; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-4px, 2px) rotate(-2deg); }
  40% { transform: translate(4px, -3px) rotate(2deg); }
  60% { transform: translate(-3px, -2px) rotate(-1.5deg); }
  80% { transform: translate(3px, 2px) rotate(1.5deg); }
}
html[data-theme="trigger"] .mascot-ring {
  animation: shake 0.5s ease-in-out infinite;
}
html[data-theme="chill"] .mascot-ring,
html[data-theme="profit"] .mascot-ring {
  background: linear-gradient(145deg, rgba(57,255,136,.55), rgba(42,212,160,.28));
  box-shadow: 0 30px 80px rgba(57,255,136,.18);
}
@media (prefers-reduced-motion: reduce) {
  html[data-theme="trigger"] .mascot-ring { animation: none; }
}
.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  max-width: none; margin: 0; padding: 0;
  overflow: hidden;
}
.what-stats {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
  gap: 16px 24px;
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0;
  align-items: stretch;
}
.what-stats .panel { margin: 0; max-width: none; }
.what-copy p, .what-copy ul { color: #d5cde6; line-height: 1.55; margin: 0 0 12px; }
.what-copy ul { padding-left: 1.2em; }
.what-copy p:last-child { margin-bottom: 0; }
.stat strong { word-break: break-word; }
.stat {
  background: rgba(18,16,26,.85); border: 1px solid var(--accent-dim); border-radius: 16px;
  padding: 16px 18px; box-shadow: 0 0 18px var(--accent-dim);
}
.stat .label { display: block; color: var(--muted); font-size: 12px; margin-bottom: 6px; }
.stat strong { font-size: 24px; letter-spacing: -0.02em; }
.stat .delta { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }
.stat .delta.up { color: var(--green); }
.stat .delta.down { color: var(--red); }
.panel { max-width: 1100px; margin: 0 auto 56px; padding: 0 20px; }
.panel:not(.scam-alert):not(.burns-shrine) {
  border: 1px solid var(--accent-dim); border-radius: 18px; padding: 18px 20px;
  background: rgba(18,16,26,.4); box-shadow: 0 0 28px var(--accent-dim);
}
.panel h2 { font-size: 28px; margin: 0 0 8px; letter-spacing: -0.03em; }
.section-sub { color: var(--muted); margin: 0 0 18px; }
.story-grid { max-width: 40rem; }
.tokenomics-list { margin: 0 0 16px; padding-left: 1.2rem; color: #d5cde6; line-height: 1.55; }
.tokenomics-list li { margin: 0 0 10px; }
.story-grid p { color: #d5cde6; line-height: 1.55; }
.note { font-size: 13px; color: var(--muted); }
.buy-grid, .community-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.buy-card, .community-grid a {
  display: block; text-decoration: none; background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 18px; transition: border-color .15s, transform .15s;
  min-height: 44px;
}
.buy-card:hover, .community-grid a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 14px var(--accent-dim);
}
.buy-card h3 { margin: 0 0 6px; }
.buy-card p { margin: 0; color: var(--muted); font-size: 14px; }
.chip {
  display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 999px; background: rgba(57,255,136,.15); color: var(--green);
}
.embed-note { margin-top: 14px; color: var(--muted); font-size: 13px; }
.assets-grid { display: grid; grid-template-columns: 280px 1fr; gap: 16px; align-items: stretch; }
.assets-grid figure {
  margin: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.assets-grid img { width: 100%; display: block; }
.assets-grid figcaption {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 10px 12px; font-size: 13px; color: var(--muted);
}
.assets-empty {
  border: 1px dashed var(--line); border-radius: 16px; padding: 24px; color: var(--muted);
  display: flex; flex-direction: column; justify-content: center;
}
.community-grid a span { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; font-family: var(--mono); }
footer {
  border-top: 1px solid var(--line); padding: 24px 20px 40px; text-align: center; color: var(--muted); font-size: 13px;
}
.tiny { opacity: .7; font-size: 11px; }
#toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #1a1624; border: 1px solid var(--violet); color: var(--ink);
  padding: 10px 16px; border-radius: 999px; z-index: 50; font-size: 13px;
}
@media (max-width: 860px) {
  nav { display: none; }
  .hero, .story-grid, .assets-grid, .what-stats { grid-template-columns: 1fr; }
  .stats, .buy-grid, .community-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 28px; }
}
@media (max-width: 480px) {
  .stats, .buy-grid, .community-grid { grid-template-columns: 1fr; }
}

.buy-note { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.chip-muted {
  background: rgba(167,139,250,.12); color: var(--violet);
}

/* Live hero stickers */
.hero-art { position: relative; }
.hero-stickers { position: absolute; inset: 0; pointer-events: none; }
.floater {
  position: absolute; display: block; width: 64px; height: 64px;
  object-fit: cover; border-radius: 50%; overflow: hidden;
  border: 1.5px solid var(--accent);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45));
  animation: bob 4.5s ease-in-out infinite;
  background: #0c0b10;
}
.floater.f1 { top: 4%; left: -8%; animation-delay: 0s; width: 70px; height: 70px; }
.floater.f2 { bottom: 8%; right: -8%; animation-delay: .5s; width: 68px; height: 68px; }
.floater.f3 { top: 38%; left: -14%; animation-delay: 1s; width: 54px; height: 54px; }
.floater.f4 { top: 12%; right: -12%; animation-delay: 1.4s; width: 58px; height: 58px; }
.floater.f5 { bottom: 28%; left: -6%; animation-delay: 1.8s; width: 50px; height: 50px; }
.floater.f6 { top: -6%; left: 28%; animation-delay: 2.2s; width: 56px; height: 56px; }
.floater.f7 { top: 48%; right: -18%; animation-delay: 2.6s; width: 60px; height: 60px; }
.floater.f8 { bottom: -4%; left: 22%; animation-delay: 3s; width: 52px; height: 52px; }
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

/* Memes rail */
.meme-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.meme-card {
  margin: 0; background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
}
.meme-card img, .meme-card video {
  width: 100%; aspect-ratio: 1; object-fit: contain; display: block; background: #0c0b10;
}
.meme-card picture { display: block; background: #0c0b10; }
.meme-rail .meme-card:not(.meme-card-live):not(.sticker-tile) img {
  object-fit: contain; padding: 6px;
}
.meme-card.sticker-tile img {
  object-fit: contain; padding: 18px; background: radial-gradient(circle at 50% 40%, #1a1624, #0c0b10);
}
.meme-card figcaption {
  padding: 10px 12px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line);
}
.meme-card-live { box-shadow: 0 0 0 1px rgba(57,255,136,.12), 0 12px 40px rgba(255,59,74,.08); }
.assets-download {
  margin-top: 18px; display: grid;
  grid-template-columns: 220px repeat(3, minmax(0, 1fr));
  gap: 16px; align-items: stretch;
}
.assets-download figure {
  margin: 0; min-width: 0; background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
}
.assets-download img { width: 100%; display: block; }
.assets-download figcaption {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 10px 12px; font-size: 13px; color: var(--muted);
}
.assets-download .asset-pack { justify-content: flex-start; }
.assets-download .pack-thumb {
  width: 100%; aspect-ratio: 16 / 10; object-fit: contain; display: block;
  background: #0c0b10; padding: 8px;
}
.assets-download .asset-pack figcaption {
  flex: 1; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: 8px; padding: 18px 14px;
}
.pack-by { font-size: 12px; color: var(--muted); font-weight: 400; }
.assets-download .asset-pack .btn { flex-shrink: 0; }

/* Frens */
.frens-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.fren-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px; min-height: 120px; cursor: default;
}
.fren-card .fren-mark { width: 48px; height: 48px; display: block; border-radius: 12px; }
.fren-card h3 { margin: 0; font-size: 18px; letter-spacing: -0.02em; }
.fren-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.4; flex: 1; }
.fren-card .fren-url { font-family: var(--mono); font-size: 12px; color: var(--violet); word-break: break-all; }
.frens-empty {
  grid-column: 1 / -1; border: 1px dashed var(--line); border-radius: 16px;
  padding: 28px 20px; color: var(--muted); text-align: center;
}

@media (max-width: 860px) {
  .meme-rail { grid-template-columns: repeat(2, 1fr); }
  .frens-grid { grid-template-columns: 1fr 1fr; }
  .assets-download { grid-template-columns: 1fr; }
  .assets-download .asset-pack figcaption {
    flex: none; flex-direction: row; justify-content: space-between;
    align-items: center; text-align: left; padding: 10px 12px;
  }
  .floater { display: none; }
}
@media (max-width: 480px) {
  .meme-rail, .frens-grid { grid-template-columns: 1fr; }
}

.header-news {
  display: none; flex: 1; min-width: 0; max-width: 460px; margin: 0 12px;
  align-items: center; gap: 8px; font-size: 12px; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
  background: rgba(18,16,26,.65);
}
.header-news[data-href] { cursor: pointer; }
@media (min-width: 980px) {
  .header-news { display: inline-flex; }
}
.news-label {
  flex-shrink: 0; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--news-label); font-size: 10px;
}
.news-cut { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink); }
.news-panel { overflow: visible; }
.news-panel[hidden] { display: none !important; }
.news-list {
  display: flex; flex-direction: column; gap: 12px;
  width: 100%; min-width: 320px; overflow: visible;
}
.news-list iframe {
  display: block; width: 100%; border: 0;
}
.subhead { font-size: 16px; margin: 22px 0 10px; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.face-rail, .expr-rail {
  container-type: inline-size;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  touch-action: pan-x;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.face-rail::-webkit-scrollbar,
.expr-rail::-webkit-scrollbar,
.meme-rail::-webkit-scrollbar {
  display: none; width: 0; height: 0;
}
.meme-rail {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.face-rail:focus-visible, .expr-rail:focus-visible {
  outline: 2px solid var(--green); outline-offset: 4px;
}
.face-track, .expr-track {
  display: flex; width: max-content;
}
.face-rail .face-card, .expr-rail .face-card {
  flex: 0 0 240px;
  flex-basis: calc((100cqi - 36px) / 4);
  min-width: 0;
  margin-right: 12px;
}
.face-card {
  margin: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.face-card img, .face-card video {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: #0c0b10;
}
.face-card figcaption {
  padding: 10px 12px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line);
}
.meme-rail-sm { grid-template-columns: repeat(4, 1fr); max-width: 560px; }
.community-logos {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.logo-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px 12px;
  user-select: none;
}
.logo-tile img { width: 36px; height: 36px; }
.logo-tile span { font-size: 13px; color: var(--muted); }
.fren-placeholder {
  opacity: .7; border-style: dashed; cursor: default; pointer-events: none;
}
.fren-placeholder:hover { transform: none; border-color: var(--line); }

@media (max-width: 860px) {
  .community-logos { grid-template-columns: 1fr 1fr; }
  .face-rail .face-card, .expr-rail .face-card { flex-basis: calc((100cqi - 12px) / 2); }
  .meme-rail-sm { grid-template-columns: 1fr 1fr; max-width: none; }
}
@media (max-width: 480px) {
  .face-rail .face-card, .expr-rail .face-card { flex-basis: 100cqi; }
}
@media (prefers-reduced-motion: reduce) {
  .face-track, .expr-track { animation: none; }
  .cult-track { animation: none; }
  .floater { animation: none; }
}


/* Telegram-style inline spoilers (channel cadence) */
.tg-disclaimer {
  margin-top: 8px; padding: 8px 10px; border-radius: 10px;
  background: #1a2332; border: 1px solid #2a3548; color: #e8eef8;
  font-size: 13px; line-height: 1.4;
}
.scam-alert .tg-disclaimer {
  margin-top: 0;
  margin-bottom: 0;
  border-color: #4a3548;
  background: rgba(10,12,18,.55);
}
.tg-disc-body { margin: 0; }
.tg-cashtag { color: #6ec1ff; font-weight: 600; }
.tg-spoiler {
  display: inline; cursor: pointer; border-radius: 4px;
  padding: 0 .12em; margin: 0 .02em;
  background: #8b93a3;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  user-select: none;
}
.tg-spoiler-inner {
  opacity: 0; color: transparent; text-shadow: none;
  transition: opacity .15s ease;
}
.tg-spoiler.is-open {
  background: transparent;
  cursor: text;
  user-select: text;
}
.tg-spoiler.is-open .tg-spoiler-inner {
  opacity: 1; color: inherit;
}

/* Scam / official-comms alert (channel #311) */
.scam-alert {
  border: 1px solid #5a3040;
  background: linear-gradient(135deg, #2a1520 0%, #1a2332 70%);
  box-shadow: 0 0 0 1px rgba(255,80,100,.08) inset;
  border-radius: 16px;
  padding: 12px 16px 10px !important;
  margin-bottom: 32px;
}
.scam-alert > p { margin: 0 0 6px; line-height: 1.4; font-size: 14px; }
.scam-alert > .scam-kicker {
  margin: 0 0 4px; font-weight: 700; color: #ff8a9a; font-size: 14px;
}
.scam-alert > .scam-tagline { margin: 0 0 4px; color: #c8d0dc; }
.scam-alert > .note { margin: 0; }



/* Parody cookie banner — one button, Drago destroys cookies */
.biscuit-banner {
  position: fixed; z-index: 80; left: 12px; right: 12px; bottom: 12px;
  max-width: 340px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 16px 18px 18px;
  border-radius: 20px;
  background: #121820f2;
  border: 1px solid #3a4658;
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  color: #e8eef8;
  backdrop-filter: blur(10px);
  text-align: center;
}
.biscuit-banner[hidden] { display: none !important; }
.biscuit-stage {
  position: relative; width: 200px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.biscuit-hero {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid #ffe143; background: #030712;
  position: relative; z-index: 3;
  transition: transform .26s cubic-bezier(.2,.85,.2,1);
  will-change: transform;
}
.biscuit-banner.is-chomping .biscuit-hero {
  animation: dragoBite .55s ease-in-out 3;
}
.biscuit-banner.is-chomp.is-chomping .biscuit-hero,
.biscuit-banner.is-eat.is-chomping .biscuit-hero {
  animation: dragoChew 0.7s ease-in-out 4;
}
.biscuit-banner.is-burn.is-chomping .biscuit-hero {
  animation: dragoBurnBite .6s ease-in-out 3;
}
.biscuit-banner.is-smash.is-chomping .biscuit-hero {
  animation: dragoSmashHit .55s ease-in-out 2;
}
@keyframes dragoBite {
  0%, 100% { transform: scale(1) rotate(0deg); }
  35% { transform: scale(1.12) rotate(-8deg); }
  55% { transform: scale(.92) rotate(6deg); }
}
.cookie-orb {
  position: absolute; z-index: 1; font-size: 22px; line-height: 1;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.4));
}
.cookie-orb.c1 { top: 4px; left: 10px; }
.cookie-orb.c2 { top: 4px; right: 10px; }
.cookie-orb.c3 { bottom: 10px; left: 8px; }
.cookie-orb.c4 { bottom: 10px; right: 8px; }
.cookie-orb.is-eaten {
  opacity: 0;
  transform: scale(0);
  transition: opacity .12s ease, transform .12s ease;
}
.crumb-burst {
  position: absolute; width: 36px; height: 36px; margin: -18px 0 0 -18px;
  pointer-events: none; z-index: 4;
  background-image:
    radial-gradient(circle at 30% 40%, #c4a574 0 2px, transparent 3px),
    radial-gradient(circle at 70% 35%, #a67c52 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 45% 70%, #d4b896 0 2px, transparent 3px),
    radial-gradient(circle at 62% 62%, #8b6914 0 1px, transparent 2px),
    radial-gradient(circle at 50% 50%, #e8d5b0 0 1.5px, transparent 2.5px);
  animation: crumbPoof .55s ease-out forwards;
}
/* legacy inward fly removed — verb classes drive cookie motion */
.biscuit-crumbs {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  opacity: 0;
}
.biscuit-banner.is-chomping .biscuit-crumbs {
  opacity: 1;
  background-image:
    radial-gradient(circle at 40% 55%, #c4a574 0 2px, transparent 3px),
    radial-gradient(circle at 55% 48%, #a67c52 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 48% 62%, #d4b896 0 2px, transparent 3px),
    radial-gradient(circle at 60% 58%, #8b6914 0 1px, transparent 2px);
  animation: crumbPoof .7s ease-out forwards;
}
@keyframes crumbPoof {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.biscuit-line {
  margin: 0; font-size: 13px; color: #9aa6b8;
}
.biscuit-btn { min-width: 180px; }
.biscuit-banner.is-done { pointer-events: none; opacity: 0; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease; }

/* How-to-buy */
.howto-buy {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.howto-buy li {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px;
}
.howto-step {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #0a0a0a;
  background: var(--accent);
  border: 1.5px solid var(--secondary-accent);
  box-shadow: 0 0 8px var(--secondary-soft);
}
.howto-buy strong { display: block; margin-bottom: 4px; }
.howto-buy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.4; }
.howto-buy a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 2px; }
.howto-ca { font-size: 11px !important; word-break: break-all; color: var(--ink) !important; margin: 4px 0 !important; padding: 6px 8px; border: 1px dashed var(--line); border-radius: 8px; }
.howto-verify { color: #ffb4bc !important; }

/* Venues from JSON */
#buyGrid { display: block; }
.buy-split {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 16px 24px;
  align-items: start;
  margin-top: 0;
}
.buy-col h2 { margin-top: 0; }
.buy-col .section-sub { margin-bottom: 10px; }
.buy-col .subhead { margin: 0 0 8px; }
.venues-root > .subhead:first-child { margin-top: 0; }
.buy-col .venue-group { margin-bottom: 4px; }
.dyor-chips { min-width: 0; }
.swap-widgets {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px 24px;
  margin-top: 22px;
  align-items: start;
}
.coffee-widget-wrap { min-width: 0; max-width: 360px; margin-top: 0; width: 100%; }
#coffeeWidget {
  min-height: 440px;
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: #12101a;
}
#stonWidget {
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #12101a;
  --background-color: #12101a;
  --background-hover-color: #1c1826;
  --border-color: rgba(244,241,234,.14);
  --form-background-color: #0c0b12;
  --form-border-color: rgba(244,241,234,.12);
  --input-background-color: #0c0b12;
  --input-border-color: rgba(244,241,234,.18);
  --input-placeholder-color: #8a8498;
  --input-caret-color: var(--accent);
  --text-primary-color: #f4f1ea;
  --text-secondary-color: #b9b3c9;
  --text-accent-color: var(--accent);
  --icon-primary-color: #f4f1ea;
  --icon-secondary-color: #b9b3c9;
  --icon-accent-color: var(--accent);
  --button-primary-background-color: var(--accent);
  --button-primary-text-color: #0a0a0a;
  --button-primary-background-hover-color: var(--accent-2);
  --button-secondary-background-color: #1c1826;
  --button-secondary-text-color: #f4f1ea;
  --button-secondary-border-color: rgba(244,241,234,.16);
  --dialog-background-color: #12101a;
  --dialog-border-color: rgba(244,241,234,.14);
  --dialog-overlay-background-color: rgba(7,6,12,.72);
  --snackbar-background-color: #12101a;
  --swap-button-background-color: var(--accent);
  --swap-button-icon-color: #0a0a0a;
  --accent-9: var(--accent);
}
#stonWidget.dark { color-scheme: dark; }
#dedustWidget {
  width: 100%;
  height: 640px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0b0d12;
}
@media (max-width: 860px) {
  .swap-widgets, .buy-split { grid-template-columns: 1fr; }
}
.buy-split .venue-group-label { flex: 0 0 100%; min-width: 0; }
.buy-split .buy-card { padding: 5px 8px; }
.buy-split .buy-card h3 { font-size: 12px; }
.buy-split .venue-ico { width: 16px; height: 16px; }
.venue-group {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px;
}
.venue-group-label {
  margin: 0; min-width: 7rem; flex: 0 0 auto;
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600;
}
.buy-card {
  display: inline-flex; align-items: center; gap: 8px;
  flex: 0 0 auto; width: max-content; max-width: 100%;
  padding: 10px 12px; border-radius: 999px; min-height: 44px;
}
.venue-ico { width: 18px; height: 18px; border-radius: 4px; object-fit: contain; background: #fff; }
.buy-card h3 { margin: 0; font-size: 13px; font-weight: 600; }
.logo-tile {
  text-decoration: none; cursor: pointer; transition: border-color .15s, transform .15s;
}
a.logo-tile:hover { border-color: var(--accent); transform: translateY(-2px); color: inherit; }

/* Cult marquee */
.cult-marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: rgba(18,16,26,.75); margin: 0 0 36px;
}
.cult-track {
  display: flex; width: max-content;
  padding: 10px 0; font-weight: 700; letter-spacing: .06em; font-size: 13px;
  text-transform: uppercase; color: var(--muted);
}
@media (prefers-reduced-motion: no-preference) {
  .cult-track { animation: cultScroll 38s linear infinite; }
}
.cult-set {
  display: flex; gap: 2.5rem; padding-right: 2.5rem; flex: 0 0 auto;
}
.cult-set span { white-space: nowrap; }
.cult-set span:nth-child(odd) { color: var(--accent); }
.cult-set span:nth-child(3n) { color: var(--secondary-accent); }
@keyframes cultScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Burns shrine */
.burns-shrine {
  border: 1px solid #5a3040;
  background: linear-gradient(160deg, #2a1018 0%, rgba(18,16,26,.9) 55%, #12181a 100%);
  border-radius: 20px; padding: 22px 20px 20px !important;
  box-shadow: 0 0 60px rgba(255,59,74,.08);
}
html[data-theme="chill"] .burns-shrine,
html[data-theme="profit"] .burns-shrine {
  border-color: #305a40;
  background: linear-gradient(160deg, #102a18 0%, rgba(18,26,20,.9) 55%, #12181a 100%);
  box-shadow: 0 0 60px rgba(57,255,136,.10);
}
html[data-theme="chill"] .burns-label,
html[data-theme="profit"] .burns-label {
  color: #8affb4;
}
html[data-theme="chill"] .burns-tip strong,
html[data-theme="profit"] .burns-tip strong {
  color: #8affb4;
}
.burns-hero {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 18px; align-items: center; margin-bottom: 12px;
}
.burns-label { display: block; font-size: 12px; color: #ff8a9a; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.burns-big strong {
  display: block; font-size: clamp(28px, 5vw, 44px); letter-spacing: -0.03em;
  background: linear-gradient(100deg, #ff3b4a, #ffb347 50%, #39ff88);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.burns-of { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }
.burns-spark-wrap {
  position: relative;
  background: rgba(0,0,0,.25); border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px 8px;
}
#burnsSpark { width: 100%; height: 220px; display: block; cursor: crosshair; }
#burnsSpark.is-tx { cursor: pointer; }
.burns-spark-cap { margin: 4px 0 0; font-size: 11px; color: var(--muted); }
.burns-legend {
  display: flex; flex-wrap: wrap; gap: 12px 16px; margin-top: 8px; font-size: 11px; color: var(--muted);
}
.burns-legend .leg { display: inline-flex; align-items: center; gap: 6px; }
.burns-legend .leg i {
  display: inline-block; width: 14px; height: 3px; border-radius: 2px; background: #ff3b4a;
}
.burns-legend .leg-circ i { background: #39ff88; }
.burns-legend .leg-dot i {
  width: 8px; height: 8px; border-radius: 50%; background: #ffb347;
  box-shadow: 0 0 0 2px rgba(255,179,71,.35);
}
.burns-legend .leg-reserve i {
  width: 8px; height: 8px; border-radius: 50%; background: #c084fc;
  box-shadow: 0 0 0 2px rgba(192,132,252,.4);
}
.burns-tip {
  position: absolute; z-index: 5; pointer-events: auto;
  min-width: 160px; max-width: 280px;
  padding: 8px 10px; border-radius: 10px; font-size: 11px; line-height: 1.4;
  background: #1a1624ee; border: 1px solid var(--violet); color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.burns-tip[hidden] { display: none !important; }
.burns-tip strong { display: block; margin-bottom: 2px; color: #ff8a9a; }
.burns-tip a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 2px; font-weight: 600; }
.burns-meta { margin: 0 0 8px; font-size: 13px; color: #d5cde6; line-height: 1.45; }
.burns-foot { margin: 0; }
.lock-records { margin: 12px 0 10px; overflow-x: auto; }
.lock-records table {
  width: 100%; border-collapse: collapse; font-size: 12px; font-family: var(--mono);
}
.lock-records th, .lock-records td {
  text-align: left; padding: 5px 8px; border-bottom: 1px solid var(--line);
}
.lock-records th { color: var(--muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.lock-records td.num { text-align: right; font-variant-numeric: tabular-nums; }
.lock-records tfoot td { font-weight: 700; border-bottom: none; padding-top: 8px; }
.lock-records td.mono { word-break: break-all; font-size: 11px; max-width: 28rem; }
.airdrop-drops { margin: 0 0 12px; color: #d5cde6; line-height: 1.55; }
.airdrop-stats {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin: 0 0 14px; font-size: 14px; color: #d5cde6;
}
.airdrop-stats strong { color: var(--ink); }
.airdrop-toolbar {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin: 0 0 12px;
}
.airdrop-toolbar .btn[aria-pressed="true"] {
  background: var(--accent); color: #0a0a0a; border-color: var(--accent);
}
.airdrop-toolbar input[type="search"] {
  flex: 1 1 180px; min-width: 140px; min-height: 44px;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--panel); color: var(--ink);
}
.hold-yes { color: var(--green); font-weight: 700; }
.hold-no { color: var(--muted); }
.airdrop-contest {
  margin: 0 0 14px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--panel);
}
.airdrop-contest h4 { margin: 0 0 6px; font-size: 16px; }
.airdrop-contest p { margin: 0 0 6px; color: #d5cde6; font-size: 14px; line-height: 1.45; }
.airdrop-contest .usd { color: var(--ink); font-weight: 700; }
.airdrop-contest ul { margin: 6px 0 0; padding-left: 1.2rem; color: #d5cde6; font-size: 13px; }
.airdrop-contest li { margin: 0 0 4px; word-break: break-all; }

/* Triggered eyes — ring glow only (no rays) */
.mascot-ring { position: relative; }
.mascot-hit {
  display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent;
  cursor: pointer; border-radius: 24px; position: relative; overflow: hidden;
}
.mascot-hit:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
html[data-theme] .mascot-ring.eyes-red,
.eyes-red .mascot-ring,
.mascot-ring.eyes-red {
  background: linear-gradient(145deg, rgba(255,59,74,.7), rgba(255,107,53,.3));
  box-shadow: 0 0 40px 8px rgba(255,59,74,.45), 0 30px 80px rgba(255,59,74,.22);
}
html[data-theme] .mascot-ring.eyes-green,
.mascot-ring.eyes-green {
  background: linear-gradient(145deg, rgba(57,255,136,.7), rgba(40,200,120,.3));
  box-shadow: 0 0 40px 8px rgba(57,255,136,.45), 0 30px 80px rgba(57,255,136,.22);
}
.eyes-flash .mascot { animation: eyePulse .45s ease; }
@keyframes eyePulse {
  0%,100% { filter: brightness(1); }
  40% { filter: brightness(1.35) saturate(1.3); }
}
.eye-toggle {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.eye-btn {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(18,16,26,.9); font-size: 16px; cursor: pointer; line-height: 1;
}
.eye-btn[aria-pressed="true"] {
  border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-dim);
}
.eye-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

@media (max-width: 860px) {
  .howto-buy { grid-template-columns: 1fr 1fr; }
  .burns-hero { grid-template-columns: 1fr; }
  .buy-split { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .howto-buy { grid-template-columns: 1fr; }
  .cult-track { font-size: 12px; }
}
@media (max-width: 480px) and (prefers-reduced-motion: no-preference) {
  .cult-track { animation-duration: 32s; }
}
@media (prefers-reduced-motion: reduce) {
  .cult-track { animation: none; }
}


/* Orbiting border — Buy on STON */
.btn-orbit {
  position: relative; isolation: isolate; overflow: hidden;
  color: #0a0a0a;
  border: 2px solid transparent !important;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 1px var(--accent-dim), 0 0 22px var(--accent-glow);
}
.btn-orbit::before {
  content: "";
  position: absolute;
  inset: -80%;
  z-index: 0;
  background: conic-gradient(from 0deg, transparent 0%, var(--accent) 12%, #fff8 24%, var(--accent-2) 36%, transparent 48%, transparent 58%, var(--accent) 72%, #fff8 86%, transparent 100%);
  animation: orbitSpin 2.8s linear infinite;
  pointer-events: none;
}
.btn-orbit .btn-orbit-label { position: relative; z-index: 1; }
.btn-orbit:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 0 0 1px var(--accent-soft), 0 0 32px var(--accent-glow);
  border-style: solid !important;
}
.btn-orbit:hover::before { animation-duration: 1.35s; }
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}


/* Biscuit verb-synced eat / burn / smash */
.biscuit-banner.is-chomp .biscuit-hero,
.biscuit-banner.is-eat .biscuit-hero {
  animation: dragoChew 0.7s ease-in-out 4;
}
@keyframes dragoChew {
  0%, 100% { transform: scale(1) rotate(0deg); }
  20% { transform: scale(1.08) rotate(-10deg) translateY(2px); }
  40% { transform: scale(.88) rotate(8deg) translateY(4px); }
  60% { transform: scale(1.12) rotate(-6deg); }
  80% { transform: scale(.92) rotate(4deg) translateY(2px); }
}
.biscuit-banner.is-chomp .cookie-orb,
.biscuit-banner.is-eat .cookie-orb {
  animation: cookieEaten 0.85s cubic-bezier(.4,.1,.2,1) forwards;
}
.biscuit-banner.is-chomp .cookie-orb.c1,
.biscuit-banner.is-eat .cookie-orb.c1 { animation-delay: 0s; }
.biscuit-banner.is-chomp .cookie-orb.c2,
.biscuit-banner.is-eat .cookie-orb.c2 { animation-delay: .12s; }
.biscuit-banner.is-chomp .cookie-orb.c3,
.biscuit-banner.is-eat .cookie-orb.c3 { animation-delay: .24s; }
.biscuit-banner.is-chomp .cookie-orb.c4,
.biscuit-banner.is-eat .cookie-orb.c4 { animation-delay: .36s; }
@keyframes cookieEaten {
  0% { transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
  35% { transform: translate(var(--dx, 36px), var(--dy, 24px)) scale(.7) rotate(25deg); opacity: 1; }
  70% { transform: translate(var(--dx2, 48px), var(--dy2, 36px)) scale(.25) rotate(60deg); opacity: .55; }
  100% { transform: translate(var(--dx2, 48px), var(--dy2, 36px)) scale(0) rotate(90deg); opacity: 0; }
}
.biscuit-banner .cookie-orb.c1 { --dx: 42px; --dy: 28px; --dx2: 52px; --dy2: 38px; }
.biscuit-banner .cookie-orb.c2 { --dx: -36px; --dy: 32px; --dx2: -46px; --dy2: 42px; }
.biscuit-banner .cookie-orb.c3 { --dx: 48px; --dy: -18px; --dx2: 56px; --dy2: -8px; }
.biscuit-banner .cookie-orb.c4 { --dx: -44px; --dy: -22px; --dx2: -52px; --dy2: -10px; }

.biscuit-banner.is-burn .biscuit-hero {
  animation: dragoBurnBite .6s ease-in-out 3;
}
@keyframes dragoBurnBite {
  0%,100% { transform: scale(1); filter: none; }
  40% { transform: scale(1.1); filter: drop-shadow(0 0 12px #ff3b4a); }
  60% { transform: scale(.95); }
}
.biscuit-banner.is-burn .cookie-orb {
  animation: cookieChar 1.1s ease-in forwards;
}
.biscuit-banner.is-burn .cookie-orb.c1 { animation-delay: 0s; }
.biscuit-banner.is-burn .cookie-orb.c2 { animation-delay: .1s; }
.biscuit-banner.is-burn .cookie-orb.c3 { animation-delay: .2s; }
.biscuit-banner.is-burn .cookie-orb.c4 { animation-delay: .3s; }
@keyframes cookieChar {
  0% { filter: none; transform: scale(1); opacity: 1; }
  30% { filter: brightness(1.3) sepia(1) saturate(6) hue-rotate(-25deg); transform: scale(1.05); }
  60% { filter: brightness(.45) contrast(1.4) sepia(.8) saturate(2); transform: scale(.9) rotate(8deg); }
  100% { filter: brightness(0) contrast(1); transform: scale(.55) rotate(15deg); opacity: 0; }
}
.biscuit-banner.is-burn::after {
  content: "🔥"; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  font-size: 28px; opacity: 0; animation: flamePop .9s ease-out .15s forwards; pointer-events: none;
}
@keyframes flamePop {
  0% { opacity: 0; transform: translateX(-50%) translateY(8px) scale(.6); }
  40% { opacity: 1; transform: translateX(-50%) translateY(-4px) scale(1.2); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-28px) scale(.8); }
}

.biscuit-banner.is-smash .biscuit-hero {
  animation: dragoSmashHit .55s ease-in-out 2;
}
@keyframes dragoSmashHit {
  0%,100% { transform: translateY(0) scale(1) rotate(0); }
  30% { transform: translateY(-8px) scale(1.05) rotate(-4deg); }
  55% { transform: translateY(14px) scale(1.2) rotate(2deg); }
  70% { transform: translateY(6px) scale(1.05); }
}
.biscuit-banner.is-smash .cookie-orb {
  animation: cookieSmash .7s cubic-bezier(.2,.8,.2,1) forwards;
}
.biscuit-banner.is-smash .cookie-orb.c1 { animation-delay: .05s; }
.biscuit-banner.is-smash .cookie-orb.c2 { animation-delay: .08s; }
.biscuit-banner.is-smash .cookie-orb.c3 { animation-delay: .11s; }
.biscuit-banner.is-smash .cookie-orb.c4 { animation-delay: .14s; }
@keyframes cookieSmash {
  0% { transform: translate(0,0) scale(1) rotate(0); opacity: 1; }
  25% { transform: translate(0, 6px) scale(1.1, .7); opacity: 1; }
  100% { transform: translate(var(--sx, 40px), var(--sy, -50px)) scale(.2) rotate(var(--sr, 120deg)); opacity: 0; }
}
.biscuit-banner .cookie-orb.c1 { --sx: -48px; --sy: -56px; --sr: -140deg; }
.biscuit-banner .cookie-orb.c2 { --sx: 52px; --sy: -48px; --sr: 160deg; }
.biscuit-banner .cookie-orb.c3 { --sx: -60px; --sy: 36px; --sr: -200deg; }
.biscuit-banner .cookie-orb.c4 { --sx: 58px; --sy: 42px; --sr: 190deg; }

/* Disable old generic inward fly when verb classes present */
.biscuit-banner.is-chomp.is-chomping .cookie-orb.c1,
.biscuit-banner.is-eat.is-chomping .cookie-orb.c1,
.biscuit-banner.is-burn.is-chomping .cookie-orb.c1,
.biscuit-banner.is-smash.is-chomping .cookie-orb.c1,
.biscuit-banner.is-chomp.is-chomping .cookie-orb.c2,
.biscuit-banner.is-eat.is-chomping .cookie-orb.c2,
.biscuit-banner.is-burn.is-chomping .cookie-orb.c2,
.biscuit-banner.is-smash.is-chomping .cookie-orb.c2,
.biscuit-banner.is-chomp.is-chomping .cookie-orb.c3,
.biscuit-banner.is-eat.is-chomping .cookie-orb.c3,
.biscuit-banner.is-burn.is-chomping .cookie-orb.c3,
.biscuit-banner.is-smash.is-chomping .cookie-orb.c3,
.biscuit-banner.is-chomp.is-chomping .cookie-orb.c4,
.biscuit-banner.is-eat.is-chomping .cookie-orb.c4,
.biscuit-banner.is-burn.is-chomping .cookie-orb.c4,
.biscuit-banner.is-smash.is-chomping .cookie-orb.c4 {
  /* verb keyframes own the transform — neutralize old .is-chomping transforms */
}

.biscuit-banner.is-hunting .biscuit-hero {
  z-index: 5;
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .biscuit-banner.is-chomping .biscuit-hero,
  .biscuit-banner.is-chomp .biscuit-hero,
  .biscuit-banner.is-eat .biscuit-hero,
  .biscuit-banner.is-burn .biscuit-hero,
  .biscuit-banner.is-smash .biscuit-hero,
  .biscuit-banner.is-eating .biscuit-hero {
    animation: none;
  }
  .biscuit-banner.is-chomp .cookie-orb,
  .biscuit-banner.is-eat .cookie-orb,
  .biscuit-banner.is-burn .cookie-orb,
  .biscuit-banner.is-smash .cookie-orb,
  .biscuit-banner.is-chomping .biscuit-crumbs {
    animation: none;
  }
}


/* Theme mode toggle — Trigger (red) / Chill (green) */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 4px 3px 2px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(18,16,26,.75);
  flex-shrink: 0;
}
.theme-mode-label {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: var(--muted); padding: 0 6px 0 8px; white-space: nowrap;
}
.theme-btn {
  border: 1.5px solid transparent; background: transparent; color: var(--muted);
  font: inherit; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 10px; border-radius: 999px;
  cursor: pointer; line-height: 1;
}
.theme-btn:hover { color: var(--ink); }
#themeTrigger { color: #d27880; }
#themeTrigger:hover { color: var(--red); }
#themeTrigger:not([aria-pressed="true"]) {
  animation: shake 0.5s ease-in-out infinite;
}
#themeTrigger[aria-pressed="true"] {
  color: #0a0a0a;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(255,59,74,.5);
  animation: none;
}
#themeChill { color: #4fb888; }
#themeChill:hover { color: var(--green); }
#themeChill[aria-pressed="true"] {
  color: #0a0a0a;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(57,255,136,.5);
}
@media (max-width: 720px) {
  .theme-toggle { display: none; }
}


html[data-theme="chill"] body,
html[data-theme="profit"] body {
  background: radial-gradient(1200px 600px at 80% -10%, #102a18 0%, transparent 55%),
              radial-gradient(900px 500px at -10% 20%, #241218 0%, transparent 50%),
              var(--bg);
}
html[data-theme="trigger"] body {
  background: radial-gradient(1200px 600px at 80% -10%, #2a1020 0%, transparent 55%),
              radial-gradient(900px 500px at -10% 20%, #122418 0%, transparent 50%),
              var(--bg);
}

/* T46 — mode accents: in-content underlines + chrome follow --accent */
::selection { background: var(--accent-soft); }
.panel a,
.note a,
.lede a,
.howto-buy a,
.burns-tip a,
.scam-kicker a,
#safety a,
.tg-disc-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
}
.lede a:hover,
.note a:hover,
.burns-tip a:hover,
.burns-foot a:hover,
#safety a:hover,
.tg-disc-body a:hover,
.panel a:hover:not(.btn):not(.logo-tile):not(.buy-card) {
  color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  filter: brightness(1.18);
}
.header-news[data-href]:hover {
  color: var(--accent);
}
.theme-btn:hover {
  box-shadow: 0 0 10px var(--accent-dim);
}
.panel a.btn,
.panel a.logo-tile,
.panel a.buy-card,
.panel .meme-rail a,
.panel .community-logos a,
.panel .community-grid a {
  color: inherit;
  text-decoration: none;
}
.btn:focus-visible,
.theme-btn:focus-visible,
.eye-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* T47 — Chill vs Triggered floater sets (8+8). Hide ≤860px still wins on .floater. */
.floater-set-chill,
.floater-set-trigger {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
html[data-theme="trigger"] .floater-set-chill { display: none; }
html[data-theme="chill"] .floater-set-trigger,
html[data-theme="profit"] .floater-set-trigger { display: none; }

/* T30b — keep theme Drago cursor on links/buttons (not OS pointer) */
html[data-theme="trigger"] a,
html[data-theme="trigger"] button,
html[data-theme="trigger"] .btn,
html[data-theme="trigger"] a.brand,
html[data-theme="trigger"] .theme-btn,
html[data-theme="trigger"] .mascot-hit,
html[data-theme="trigger"] .eye-btn,
html[data-theme="trigger"] .header-news[data-href],
html[data-theme="trigger"] .logo-tile,
html[data-theme="trigger"] .ca,
html[data-theme="trigger"] .tg-spoiler:not(.is-open),
html[data-theme="trigger"] #burnsSpark.is-tx {
  cursor: url("../assets/cursors/fire.png") 16 4, auto;
}
html[data-theme="chill"] a,
html[data-theme="chill"] button,
html[data-theme="chill"] .btn,
html[data-theme="chill"] a.brand,
html[data-theme="chill"] .theme-btn,
html[data-theme="chill"] .mascot-hit,
html[data-theme="chill"] .eye-btn,
html[data-theme="chill"] .header-news[data-href],
html[data-theme="chill"] .logo-tile,
html[data-theme="chill"] .ca,
html[data-theme="chill"] .tg-spoiler:not(.is-open),
html[data-theme="chill"] #burnsSpark.is-tx,
html[data-theme="profit"] a,
html[data-theme="profit"] button,
html[data-theme="profit"] .btn,
html[data-theme="profit"] a.brand,
html[data-theme="profit"] .theme-btn,
html[data-theme="profit"] .mascot-hit,
html[data-theme="profit"] .eye-btn,
html[data-theme="profit"] .header-news[data-href],
html[data-theme="profit"] .logo-tile,
html[data-theme="profit"] .ca,
html[data-theme="profit"] .tg-spoiler:not(.is-open),
html[data-theme="profit"] #burnsSpark.is-tx {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2339ff88' stroke='%23000' stroke-width='1' d='M4 2l12 8-5 1 3 9-3 1-3-9-4 4z'/%3E%3C/svg%3E") 2 2, auto;
}

/* T51 — Skyrocket / Fly. z-index 25 (header 20, toast 50, cookie 80). */
.fly-stack {
  position: fixed;
  right: 12px;
  top: 38%;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 148px;
}
.fly-stack .btn {
  white-space: normal;
  line-height: 1.25;
  text-align: center;
  background: var(--panel);
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 12px var(--accent-dim);
  color: var(--ink);
}
.fly-stack .btn:hover {
  border-style: dashed;
  background: var(--accent-dim);
  box-shadow: 0 0 18px var(--accent-glow);
  color: var(--ink);
}
.fly-sprite {
  position: fixed;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 26;
  border: 1.5px solid var(--accent);
  background: #0c0b10;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45));
}
.fly-sprite.is-up { transform: rotate(-22deg); }
.fly-sprite.is-down { transform: rotate(18deg); }
@media (max-width: 480px) {
  .fly-stack, .fly-sprite { display: none; }
}

.end-board {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 8px;
}
.end-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 14px;
  align-items: stretch;
}
.end-col {
  border: 1px solid var(--accent-dim);
  border-radius: 18px;
  padding: 18px 16px 16px;
  background: rgba(18,16,26,.45);
  box-shadow: 0 0 28px var(--accent-dim);
}
.end-col h2 { font-size: 22px; margin: 0 0 6px; }
.end-col .section-sub { margin-bottom: 12px; }
.end-col .community-logos { grid-template-columns: repeat(3, 1fr); gap: 8px; }
.end-col .logo-tile { padding: 14px 8px; }
.end-col.scam-alert {
  margin: 0;
  padding: 18px 16px 16px !important;
}
.end-col .tg-disclaimer { margin-top: 8px; }
footer.end-foot,
.end-foot {
  grid-column: 1 / -1;
  display: block;
  border: none;
  background: none;
  box-shadow: none;
  padding: 6px 2px 10px;
  text-align: center;
}
.end-foot .tiny { margin: 0; }
.social-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .02em;
}
@media (max-width: 860px) {
  .end-grid { grid-template-columns: 1fr 1fr; }
  .end-col .community-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .end-grid { grid-template-columns: 1fr; }
  .end-col .community-logos { grid-template-columns: 1fr 1fr; }
}

html[data-theme="trigger"] body {
  background:
    radial-gradient(900px 480px at 85% -8%, #4a1020 0%, transparent 55%),
    radial-gradient(700px 420px at -8% 30%, #3a0808 0%, transparent 50%),
    var(--bg);
}
html[data-theme="trigger"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,30,10,.04) 3px 4px),
    radial-gradient(ellipse at 50% 120%, rgba(255,40,0,.28), transparent 55%),
    radial-gradient(ellipse at 50% -10%, rgba(255,80,20,.18), transparent 40%);
  mix-blend-mode: screen;
  animation: heatFlicker .18s steps(2) infinite;
}
@keyframes heatFlicker {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
html[data-theme="trigger"] .floater {
  animation: floaterHeat 1.6s ease-in-out infinite;
  border-color: rgba(255,59,74,.75);
  filter: drop-shadow(0 0 10px rgba(255,59,74,.55));
}
html[data-theme="trigger"] .floater.f1 { animation-delay: 0s; }
html[data-theme="trigger"] .floater.f2 { animation-delay: .2s; }
html[data-theme="trigger"] .floater.f3 { animation-delay: .4s; }
html[data-theme="trigger"] .floater.f4 { animation-delay: .1s; }
html[data-theme="trigger"] .floater.f5 { animation-delay: .35s; }
html[data-theme="trigger"] .floater.f6 { animation-delay: .55s; }
html[data-theme="trigger"] .floater.f7 { animation-delay: .15s; }
html[data-theme="trigger"] .floater.f8 { animation-delay: .45s; }
@keyframes floaterHeat {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,59,74,.35)); opacity: .92; }
  50% { filter: drop-shadow(0 0 18px rgba(255,59,74,.95)); opacity: 1; }
}
html[data-theme="trigger"] .glow {
  opacity: .7;
  filter: blur(40px) saturate(1.6);
}
html[data-theme="trigger"] .ember-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
html[data-theme="trigger"] .cult-marquee {
  overflow: hidden;
  animation: cultRage 0.16s linear infinite;
  border-block-color: #ff3b4a;
  background: linear-gradient(90deg, #4a0810, #1a0a10, #4a0810);
  box-shadow: 0 0 24px rgba(255,59,74,.45) inset, 0 0 18px rgba(255,80,20,.4);
}
html[data-theme="trigger"] .cult-track {
  animation-duration: 14s;
  text-shadow: 2px 0 #ff3b4a, -2px 0 #39ff88, 0 0 10px #ff6b35;
  letter-spacing: .12em;
}
@keyframes cultRage {
  0% { transform: rotate(-1.6deg) skewX(-4deg); }
  20% { transform: rotate(2deg) skewX(4deg); }
  40% { transform: rotate(-1.2deg) skewX(-3deg); }
  60% { transform: rotate(1.5deg) skewX(3deg); }
  80% { transform: rotate(-1.8deg) skewX(-2deg); }
  100% { transform: rotate(-1.6deg) skewX(-4deg); }
}
html[data-theme="trigger"] .stat strong {
  display: inline-block;
  color: #ff3b4a;
  animation: numPop 1.7s ease-in-out infinite;
}
@keyframes numPop {
  0%, 100% { transform: scale(1); text-shadow: none; }
  45% { transform: scale(1.1); text-shadow: 0 0 14px rgba(255,59,74,.85); }
}
html[data-theme="trigger"] h1,
html[data-theme="trigger"] h2 {
  animation: burnText 3.8s ease-in-out infinite alternate;
}
@keyframes burnText {
  from { text-shadow: 0 0 0 transparent; }
  to { text-shadow: 0 -3px 10px #ff6b35, 0 0 18px #ff3b4a; }
}
html[data-theme="trigger"] .panel,
html[data-theme="trigger"] .end-col {
  animation: panelPulse 1.5s ease-in-out infinite;
}
html[data-theme="trigger"] .end-col:nth-child(2) { animation-duration: 1.9s; }
@keyframes panelPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,59,74,.12); }
  50% { box-shadow: 0 0 32px rgba(255,59,74,.42); }
}
html[data-theme="trigger"] .stat {
  animation: cardRage .24s linear infinite;
}
html[data-theme="trigger"] .stat:nth-child(2n) { animation-duration: .31s; }
html[data-theme="trigger"] .stat:nth-child(3n) { animation-duration: .19s; }
html[data-theme="trigger"] .stat:nth-child(4n) { animation-duration: .27s; }
@keyframes cardRage {
  0%, 100% { transform: rotate(-0.7deg); filter: contrast(1.05); }
  50% { transform: rotate(0.8deg); filter: contrast(1.25) saturate(1.35); }
}
html[data-theme="trigger"] .ca {
  animation: caGlitch .28s steps(2) infinite;
}
@keyframes caGlitch {
  0% { text-shadow: 3px 0 #ff3b4a, -3px 0 #39ff88; }
  50% { text-shadow: -3px 0 #ff3b4a, 3px 0 #39ff88; }
}
html[data-theme="trigger"] .buy-card,
html[data-theme="trigger"] .logo-tile,
html[data-theme="trigger"] .howto-step {
  animation: cardRage .36s linear infinite;
}
html[data-theme="trigger"] .buy-card:nth-child(2n),
html[data-theme="trigger"] .logo-tile:nth-child(2n) { animation-duration: .42s; }
html[data-theme="trigger"] .buy-card:nth-child(3n),
html[data-theme="trigger"] .logo-tile:nth-child(3n) { animation-duration: .3s; }
html[data-theme="trigger"] .lede,
html[data-theme="trigger"] .section-sub,
html[data-theme="trigger"] .note {
  animation: burnText 2.6s ease-in-out infinite alternate;
}
html[data-theme="trigger"] .rail img,
html[data-theme="trigger"] .face-static,
html[data-theme="trigger"] .expr img {
  animation: imgRage .45s linear infinite;
}
html[data-theme="trigger"] .rail:nth-child(2n) img { animation-duration: .55s; }
@keyframes imgRage {
  0%, 100% { filter: contrast(1.08) saturate(1.15); }
  50% { filter: contrast(1.4) saturate(1.55) hue-rotate(-10deg); }
}
html[data-theme="trigger"] .btn:not(#themeTrigger):not(#themeChill) {
  animation: btnFlicker 1.05s ease-in-out infinite;
}
@keyframes btnFlicker {
  0%, 100% { filter: brightness(1); }
  40% { filter: brightness(1.18) saturate(1.3); }
  55% { filter: brightness(.92); }
}
html[data-theme="trigger"] .top {
  animation: heatFlicker .22s steps(2) infinite;
}
.dive-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 1100px; margin: 0 auto 28px; padding: 0 20px 8px;
}
.dive-row .btn { min-width: 120px; }
body.subpage main { padding-bottom: 12px; }
body.subpage .panel { margin-bottom: 24px; }

@media (prefers-reduced-motion: reduce) {
  html[data-theme="trigger"] .cult-marquee,
  html[data-theme="trigger"] .cult-track,
  html[data-theme="trigger"] .stat,
  html[data-theme="trigger"] .stat strong,
  html[data-theme="trigger"] h1,
  html[data-theme="trigger"] h2,
  html[data-theme="trigger"] .panel,
  html[data-theme="trigger"] .end-col,
  html[data-theme="trigger"] .ca,
  html[data-theme="trigger"] .buy-card,
  html[data-theme="trigger"] .logo-tile,
  html[data-theme="trigger"] .howto-step,
  html[data-theme="trigger"] .lede,
  html[data-theme="trigger"] .section-sub,
  html[data-theme="trigger"] .note,
  html[data-theme="trigger"] .rail img,
  html[data-theme="trigger"] .btn,
  html[data-theme="trigger"] .top,
  html[data-theme="trigger"] .floater,
  html[data-theme="trigger"] body::before { animation: none; }
}
