/* XOOTICBONUS — compact, alive */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg-0: #050807;
  --bg-1: #0a1410;
  --bg-2: #0f1f1a;
  --bg-3: #142922;
  --line: rgba(34, 197, 94, 0.12);
  --line-strong: rgba(34, 197, 94, 0.30);

  --text: #e6f4ec;
  --text-dim: #8aa39a;
  --text-muted: #5a716a;

  --accent: #22c55e;
  --accent-bright: #4ade80;
  --accent-deep: #16a34a;
  --accent-glow: rgba(34, 197, 94, 0.45);

  --highlight-intensity: 1;
  --motion: 1;
  --density: 1;

  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 -1px 0 rgba(0,0,0,0.4) inset, 0 12px 30px rgba(0,0,0,0.55), 0 4px 10px rgba(0,0,0,0.35);
  --shadow-card-hi: 0 1px 0 rgba(255,255,255,0.06) inset, 0 -1px 0 rgba(0,0,0,0.5) inset, 0 22px 50px rgba(0,0,0,0.7), 0 8px 18px rgba(0,0,0,0.45), 0 0 60px var(--accent-glow);
  --shadow-soft: 0 6px 18px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.03) inset;
  --grad-card: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.35));
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at 50% 0%, #0d1f18 0%, var(--bg-0) 55%, #020403 100%) fixed;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* === Age gate === */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(13, 31, 24, 0.92) 0%, rgba(2, 4, 3, 0.96) 70%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: ageFadeIn 0.4s ease-out;
  padding: 24px;
}
@keyframes ageFadeIn { from { opacity: 0; } to { opacity: 1; } }
.age-gate.exiting {
  animation: ageFadeOut 0.32s cubic-bezier(0.4, 0, 0.6, 1) forwards;
  pointer-events: none;
}
.age-gate.exiting .age-gate-card {
  animation: ageCardOut 0.32s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
@keyframes ageFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes ageCardOut {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(-6px) scale(0.98); }
}
.age-gate-card {
  position: relative;
  width: 100%; max-width: 460px;
  padding: 40px 32px 28px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 80px var(--accent-glow);
  animation: ageCardIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes ageCardIn { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: none; } }
.age-gate-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, var(--accent-glow), transparent 50%, var(--accent-glow));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.5; pointer-events: none;
}
.age-gate-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  padding: 6px 14px; border-radius: 100px;
  background: var(--accent); color: var(--bg-0);
  margin-bottom: 18px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.age-gate-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; font-weight: 800;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 12px;
}
.age-gate-card h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(28px, 5vw, 36px);
  letter-spacing: -0.01em; line-height: 1.1;
  margin: 0 0 12px;
}
.age-gate-card h2 em { color: var(--accent); font-style: italic; }
.age-gate-card p {
  font-size: 13px; color: var(--text-dim);
  margin: 0 0 24px; line-height: 1.5;
}
.age-gate-actions {
  display: flex; gap: 10px; justify-content: center; margin-bottom: 18px;
}
.age-btn {
  flex: 1; max-width: 170px;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.age-btn.yes {
  background: var(--accent); color: var(--bg-0);
  border: 1px solid var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.age-btn.yes:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 0 30px var(--accent-glow); }
.age-btn.no {
  background: transparent; color: var(--text-dim);
  border: 1px solid var(--line);
}
.age-btn.no:hover { color: var(--text); border-color: var(--line-strong); }
.age-gate-foot {
  display: block;
  font-size: 10px; letter-spacing: 0.12em; color: var(--text-muted);
  text-transform: uppercase; font-weight: 600;
}
.age-gate-leave {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px; border-radius: 12px;
  background: var(--bg-2); color: var(--text);
  border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
}
.age-gate-leave:hover { color: var(--accent); border-color: var(--line-strong); }
.bg-stage {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgba(34, 197, 94, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 197, 94, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
}
.bg-glow {
  position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(80px);
  top: -150px; left: 50%; transform: translateX(-50%);
  animation: breathe calc(7s / var(--motion, 1)) ease-in-out infinite;
}
.bg-glow-2 {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(80px);
  bottom: -100px; right: 10%; opacity: 0.4;
  animation: breathe calc(9s / var(--motion, 1)) ease-in-out infinite reverse;
}
@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.55; transform: translateX(-50%) scale(1.08); }
}
.bg-noise {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' /></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Subtle aurora curtain — slow drift behind everything */
.bg-aurora {
  position: absolute; inset: -10% -20%;
  background:
    radial-gradient(ellipse 50% 30% at 20% 30%, rgba(34, 197, 94, 0.05), transparent 70%),
    radial-gradient(ellipse 40% 25% at 75% 60%, rgba(74, 222, 128, 0.04), transparent 70%);
  filter: blur(40px);
  animation: auroraDrift calc(40s / var(--motion, 1)) ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes auroraDrift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 2%); }
  100% { transform: translate(2%, -2%); }
}

/* Faint vertical rays — barely there */
.bg-rays {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.025) 40%, transparent 80%),
    repeating-linear-gradient(95deg, transparent 0 80px, rgba(34, 197, 94, 0.012) 80px 81px);
  mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 30%, transparent 75%);
  animation: raysFade calc(8s / var(--motion, 1)) ease-in-out infinite alternate;
}
@keyframes raysFade { 0% { opacity: 0.5; } 100% { opacity: 0.85; } }
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 1; }

/* === Layout === */
.shell {
  position: relative; z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px 60px;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

/* === Top header === */
.top-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.top-bar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow) 40%, var(--accent) 50%, var(--accent-glow) 60%, transparent);
  opacity: 0.6;
  filter: blur(0.5px);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-align: left;
}
.brand-text {
  display: flex; flex-direction: column; gap: 2px;
  align-items: flex-start;
}
.logo-mark {
  position: relative;
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center;
  color: var(--bg-0); font-weight: 800; font-size: 18px;
  font-family: 'Instrument Serif', serif; font-style: italic;
  box-shadow: 0 0 0 1px var(--accent-glow), 0 0 24px var(--accent-glow);
  animation: brandGlow calc(3s / var(--motion, 1)) ease-in-out infinite;
}
.lm-glyph {
  position: relative; z-index: 2;
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.lm-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.logo-mark::before {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  pointer-events: none;
}
.lm-corner {
  position: absolute; width: 5px; height: 5px;
  border: 1.5px solid rgba(255,255,255,0.5);
  pointer-events: none;
}
.lm-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 3px; }
.lm-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: 3px; }
.lm-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: 3px; }
.lm-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 3px; }
@keyframes brandGlow {
  0%, 100% { box-shadow: 0 0 0 1px var(--accent-glow), 0 0 18px var(--accent-glow); }
  50% { box-shadow: 0 0 0 1px var(--accent-glow), 0 0 36px var(--accent-glow); }
}
.brand-text { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.logo-text {
  font-weight: 800; letter-spacing: 0.04em; font-size: 14px;
  color: var(--text);
}
.logo-text .accent { color: var(--accent); }
.brand-tag {
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.brand-tag-em {
  color: var(--accent);
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 11px;
  font-weight: 400;
  margin-left: 2px;
}
.top-right {
  display: flex; align-items: center; gap: 8px;
}
.top-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px; color: var(--text-dim);
  font-weight: 600; letter-spacing: 0.04em;
}
.top-pill strong { color: var(--accent); font-weight: 800; }
.top-pill.subtle { color: var(--text-muted); }
.top-pill.subtle svg { color: var(--accent); opacity: 0.8; }
.tp-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse calc(1.5s / var(--motion, 1)) ease-in-out infinite;
}
@media (max-width: 640px) {
  .top-right { display: none; }
  .brand-tag { font-size: 9px; letter-spacing: 0.1em; }
}
  margin-bottom: calc(12px * var(--density));
}
.top-meta {
  display: none;
}

/* === Hero === */
.hero {
  text-align: center;
  margin-bottom: calc(10px * var(--density));
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 11px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 9px; letter-spacing: 0.18em; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-eyebrow .live-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse calc(1.5s / var(--motion, 1)) ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 6.5vw, 60px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 14px; font-weight: 400;
}
.hero h1 em {
  font-style: italic; color: var(--accent-bright);
  text-shadow: 0 0 30px var(--accent-glow);
}
.hero p {
  font-size: 13px; color: var(--text-dim);
  margin: 0 auto; max-width: 480px; line-height: 1.4;
}

@keyframes feedIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Creator card (Twitch) === */
.live-feed-wrap {
  display: flex; justify-content: center;
  margin-bottom: calc(16px * var(--density));
}
.creator-card {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 12px 20px 12px 14px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: 100px;
  position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 -1px 0 rgba(0,0,0,0.4) inset, 0 10px 24px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
  animation: feedIn 0.4s ease-out;
}
.creator-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent 30%, var(--accent-glow), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.6; pointer-events: none;
}
.cc-left { display: flex; align-items: center; gap: 12px; }
.cc-avatar {
  position: relative;
  width: 40px; height: 40px;
}
.cc-avatar-inner {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center;
  color: var(--bg-0); font-weight: 800; font-size: 13px;
  border: 2px solid var(--bg-0);
  overflow: hidden;
}
.cc-avatar-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cc-live-ring {
  position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseRing calc(2s / var(--motion, 1)) ease-out infinite;
}
.cc-info { display: flex; flex-direction: column; gap: 3px; }
.cc-name-row { display: flex; align-items: center; gap: 6px; }
.cc-twitch {
  width: 14px; height: 14px;
  color: #9146ff;
}
.cc-handle {
  font-size: 13px; font-weight: 700; color: var(--text);
  letter-spacing: 0.01em;
}
.cc-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; letter-spacing: 0.18em; font-weight: 800;
  text-transform: uppercase;
}
.cc-status.live { color: var(--accent); }
.cc-status.offline { color: var(--text-muted); }
.cc-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}
.cc-status.live .cc-status-dot {
  animation: pulse calc(1.4s / var(--motion, 1)) ease-in-out infinite;
}
.cc-divider {
  width: 1px; height: 30px; background: var(--line);
}
.cc-stats { display: flex; align-items: center; gap: 18px; }
.cc-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 700; color: var(--text);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  animation: numFlash 0.4s ease-out;
}
.cc-stat-val.accent { color: var(--accent); }
@keyframes numFlash {
  0% { color: var(--accent-bright); transform: translateY(-2px); }
  100% { transform: translateY(0); }
}
.cc-stat-lbl {
  font-size: 9px; letter-spacing: 0.15em; color: var(--text-muted);
  text-transform: uppercase; font-weight: 700;
}

@media (max-width: 600px) {
  .creator-card { gap: 12px; padding: 10px 14px 10px 10px; }
  .cc-stats { gap: 12px; }
  .cc-divider { height: 24px; }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); opacity: 1; }
  70% { box-shadow: 0 0 0 8px transparent; opacity: 0.4; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

/* === TOP PICK === */
.toppick {
  position: relative;
  padding: calc(16px * var(--density)) calc(20px * var(--density));
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(34, 197, 94, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-3), var(--bg-1) 70%, #06100c);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  margin-bottom: calc(12px * var(--density));
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, calc(0.10 * var(--highlight-intensity, 1))),
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 30px 80px -20px rgba(34, 197, 94, calc(0.5 * var(--highlight-intensity, 1))),
    0 22px 50px rgba(0, 0, 0, 0.7),
    0 8px 18px rgba(0, 0, 0, 0.4);
  animation: cardIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s;
}
.toppick:hover {
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, calc(0.14 * var(--highlight-intensity, 1))),
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 28px 60px -20px rgba(34, 197, 94, calc(0.55 * var(--highlight-intensity, 1))),
    0 24px 48px rgba(0, 0, 0, 0.7),
    0 10px 20px rgba(0, 0, 0, 0.45);
}
.toppick:hover::before { opacity: 1; filter: brightness(1.15); }
@keyframes cardIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .toppick { animation: none; opacity: 1; }
}
.toppick::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent 30%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: calc(0.7 * var(--highlight-intensity, 1));
  pointer-events: none;
  animation: spin calc(8s / var(--motion, 1)) linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.toppick-shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
  animation: shimmer calc(5s / var(--motion, 1)) ease-in-out infinite;
  opacity: calc(var(--highlight-intensity, 1));
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-50%); }
  50% { transform: translateX(50%); }
}
.toppick-confetti {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  opacity: calc(0.8 * var(--highlight-intensity, 1));
}
.toppick-confetti span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  top: 100%;
  left: calc(8% + (var(--i) * 8%));
  animation: float calc((6s + (var(--i) * 0.4s)) / var(--motion, 1)) linear infinite;
  animation-delay: calc(var(--i) * -0.5s);
  opacity: 0.7;
}
@keyframes float {
  0% { top: 100%; opacity: 0; transform: translateY(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { top: -10%; opacity: 0; transform: translateY(-20px); }
}

.toppick-ribbon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px;
  background: var(--accent);
  color: var(--bg-0);
  border-radius: 100px;
  font-size: 9px; letter-spacing: 0.18em; font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 0 30px var(--accent-glow);
  position: relative;
}
.toppick-ribbon .ribbon-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bg-0);
  animation: pulse calc(1.5s / var(--motion, 1)) ease-in-out infinite;
}

.toppick-body { position: relative; }
.toppick-body-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.toppick-action-col {
  flex-direction: column;
  align-items: stretch;
  min-width: 200px;
}
@media (max-width: 720px) {
  .toppick-body-row { grid-template-columns: 1fr; gap: 14px; }
  .toppick-action-col { min-width: 0; }
}
.toppick-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.toppick-logo {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #1a3a2a, #0a1a14);
  overflow: hidden;
}
.toppick-logo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 22px; color: var(--accent-bright);
  font-style: italic;
  box-shadow: 0 0 20px rgba(34, 197, 94, calc(0.3 * var(--highlight-intensity, 1)));
}
.toppick-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; font-weight: 700;
  color: var(--accent); margin: 0 0 4px;
}
.toppick-tagline {
  font-size: 13px; color: var(--text-dim); margin: 0;
}
.toppick-bonus {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800; font-style: normal;
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1; letter-spacing: -0.025em;
  margin: 0 0 8px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
}
.toppick-bonus .num {
  color: var(--accent-bright);
  text-shadow: 0 0 40px var(--accent-glow);
  font-variant-numeric: tabular-nums;
}
.toppick-bonus .plus {
  font-family: 'Inter', sans-serif;
  font-style: normal; font-weight: 600;
  font-size: 16px; color: var(--text);
  letter-spacing: 0;
}

.toppick-meta-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 11px; color: var(--text-dim); font-weight: 500;
  margin-bottom: 0;
}
.toppick-meta-row .accent { color: var(--accent); font-weight: 700; }

.toppick-action {
  display: flex; gap: 12px; align-items: stretch;
  flex-wrap: wrap;
}

/* Code pill */
.code-pill {
  display: flex; align-items: center; gap: 0;
  background: var(--bg-0);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
  overflow: hidden;
  flex: 1; min-width: 220px;
}
.code-pill:hover { border-color: var(--accent); }
.code-pill .pill-label {
  padding: 14px 14px;
  font-size: 10px; letter-spacing: 0.15em; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  border-right: 1px dashed var(--line-strong);
}
.code-pill .pill-value {
  padding: 14px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px; font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 0.08em;
  flex: 1; text-align: left;
}
.code-pill .pill-action {
  padding: 14px 16px;
  background: rgba(34, 197, 94, 0.08);
  font-size: 10px; letter-spacing: 0.15em; font-weight: 800;
  color: var(--accent); text-transform: uppercase;
  transition: all 0.15s;
}
.code-pill:hover .pill-action { background: var(--accent); color: var(--bg-0); }
.code-pill.copied .pill-action { background: var(--accent); color: var(--bg-0); }
.code-pill.copied .pill-value { color: var(--accent); }

/* Primary button */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 26px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent) 50%, var(--accent-deep));
  color: var(--bg-0);
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative; overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 -2px 0 rgba(0,0,0,0.25) inset,
    0 8px 18px rgba(0,0,0,0.5),
    0 0 30px var(--accent-glow);
  font-family: inherit;
  white-space: nowrap;
  min-height: 52px;
  flex-shrink: 0;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 50px var(--accent-glow);
}
.btn-primary .arrow { transition: transform 0.2s; display: inline-block; }
.btn-primary:hover .arrow { transform: translateX(4px); }

/* === DEAL ROWS === */
.more-label {
  font-size: 10px; letter-spacing: 0.2em; color: var(--text-muted);
  text-transform: uppercase; font-weight: 700;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.more-label::before, .more-label::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

.deal-list { display: flex; flex-direction: column; gap: calc(6px * var(--density)); }

.deal-row {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: calc(12px * var(--density)) calc(14px * var(--density));
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 -1px 0 rgba(0,0,0,0.35) inset, 0 6px 14px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.25);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s, box-shadow 0.25s, background 0.25s;
  animation: rowIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
  gap: 12px;
  align-items: center;
  padding: calc(8px * var(--density)) calc(14px * var(--density));
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: rowIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes rowIn {
  0% { opacity: 0; transform: translateX(-12px); }
  100% { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .deal-row { animation: none; opacity: 1; }
}
.deal-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.deal-row:hover {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  transform: translateX(4px) translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 -1px 0 rgba(0,0,0,0.4) inset, 0 14px 28px rgba(0,0,0,0.55), 0 4px 8px rgba(0,0,0,0.3), 0 0 24px rgba(34,197,94,0.12);
}
.deal-row:hover::before { transform: scaleY(1); }

.deal-row-logo {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center;
  overflow: hidden;
}
.deal-row-logo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
  font-family: 'Instrument Serif', serif;
  font-size: 20px; font-style: italic;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 -1px 0 rgba(0,0,0,0.3) inset, 0 4px 10px rgba(0,0,0,0.4);
}
.deal-row-main { min-width: 0; }
.deal-row-name {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin-bottom: 2px;
}
.deal-row-bonus {
  font-size: 12px; color: var(--text-dim);
}
.deal-row-bonus strong { color: var(--text); font-weight: 600; }

.deal-row-code {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 6px 12px;
  background: var(--bg-0);
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 100px;
}
.deal-row-code:hover { border-color: var(--accent); background: rgba(34, 197, 94, 0.05); }
.deal-row-code.copied { background: var(--accent); border-color: var(--accent); }
.deal-row-code.copied .lbl, .deal-row-code.copied .code { color: var(--bg-0); }
.deal-row-code .lbl {
  font-size: 8px; letter-spacing: 0.15em; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
}
.deal-row-code .code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700; color: var(--accent-bright);
  letter-spacing: 0.05em;
}

.deal-row-cta {
  font-size: 11px; letter-spacing: 0.15em; font-weight: 800;
  color: var(--text-muted); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
  padding: 0 6px;
}
.deal-row:hover .deal-row-cta { color: var(--accent); }
.deal-row-cta .arrow { transition: transform 0.2s; }
.deal-row:hover .deal-row-cta .arrow { transform: translateX(4px); }

/* === Footer === */
.foot {
  margin-top: calc(28px * var(--density));
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.socials { display: flex; gap: 14px; }
.socials-lg .social-btn {
  width: 52px; height: 52px; border-radius: 14px;
  animation: socialFloat calc(4s / var(--motion, 1)) ease-in-out infinite;
}
.socials-lg .social-btn svg { width: 22px; height: 22px; }
@keyframes socialFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.social-btn {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--bg-1); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--text-dim);
  cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(34,197,94,0.08); border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}
.social-btn svg { width: 12px; height: 12px; }

.disclaimer {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.disclaimer:hover { opacity: 1; }
.disclaimer .badge {
  padding: 3px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--bg-1);
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--text-dim);
}
.disclaimer .dot-sep {
  color: var(--text-muted); opacity: 0.5;
}
.affiliate-disclosure {
  margin: 12px auto 0;
  max-width: 520px;
  padding: 0 16px;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.55;
  letter-spacing: 0.01em;
}

/* === Toast === */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent); color: var(--bg-0);
  padding: 12px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  z-index: 100; opacity: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 40px var(--accent-glow);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 600px) {
  .toppick-action { flex-direction: column; }
  .code-pill { min-width: 0; }
  .btn-primary { width: 100%; padding: 16px; }
  .deal-row { grid-template-columns: 40px 1fr auto; gap: 10px; padding: 12px; }
  .deal-row-cta { display: none; }
  .deal-row-code { min-width: 0; }
}
