:root {
  --lime: #ccff00;
  --lime-dark: #9acc00;
  --lime-glow: rgba(204, 255, 0, 0.55);
  --pink: #ff2d95;
  --cyan: #00f0ff;
  --purple: #9d4edd;
  --orange: #ff6b35;
  --void: #07070c;
  --panel: #111118;
  --metal: #1c1c28;
  --metal-light: #2a2a3a;
  --text: #f4f4f8;
  --muted: #8888a8;
  --font-display: "Bangers", Impact, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.no-scroll { overflow: hidden; }

code {
  color: var(--lime);
  background: rgba(204, 255, 0, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.meme-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 15% 5%, rgba(255, 45, 149, 0.18), transparent),
    radial-gradient(ellipse 60% 45% at 85% 90%, rgba(0, 240, 255, 0.14), transparent),
    radial-gradient(ellipse 50% 40% at 50% 40%, rgba(204, 255, 0, 0.07), transparent),
    var(--void);
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.5) 2px,
    rgba(255, 255, 255, 0.5) 4px
  );
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(7, 7, 12, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(204, 255, 0, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-sticker { font-size: 26px; filter: drop-shadow(0 0 10px var(--lime-glow)); }

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
}

.logo-text b { color: var(--lime); }

.nav { display: flex; gap: 22px; align-items: center; }

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color 0.2s;
}

.nav a:hover { color: var(--lime); }
.nav-x { color: var(--lime) !important; font-size: 17px !important; }

.header-actions { display: flex; gap: 12px; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--lime);
  color: var(--lime);
  font-size: 20px;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

.btn-lime {
  background: var(--lime);
  color: #0a0a0f;
  box-shadow: 0 0 24px var(--lime-glow), 4px 4px 0 #000;
}

.btn-lime:hover { box-shadow: 0 0 40px var(--lime-glow), 6px 6px 0 #000; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn.disabled, .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 60px);
  padding: 48px 24px 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--void);
  background: var(--lime);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px var(--lime-glow);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.hero-line { display: block; }

.hero-line--lime {
  color: var(--lime);
  text-shadow: 0 0 40px var(--lime-glow), 4px 4px 0 var(--pink);
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 24px;
}

.hero-desc strong { color: var(--text); }

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.stat {
  text-align: center;
  background: var(--panel);
  border: 2px solid rgba(204, 255, 0, 0.2);
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 72px;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--lime);
}

.stat span { font-size: 9px; letter-spacing: 1px; color: var(--muted); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }

.hero-note { font-size: 14px; color: var(--orange); font-weight: 600; }

.hero-machine-wrap {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

/* ===== VENDING MACHINE ===== */
.vm {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.vm--full { max-width: 680px; margin: 0 auto; }

.vm-shell {
  position: relative;
  background: linear-gradient(165deg, var(--metal-light) 0%, var(--metal) 40%, #0e0e16 100%);
  border: 5px solid var(--lime);
  border-radius: 28px;
  padding: 16px;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.8),
    0 0 80px var(--lime-glow),
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -8px 24px rgba(0, 0, 0, 0.5);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.vm--full .vm-shell { transform: none; }

.vm-shell--wide { padding: 20px 22px 24px; }

.vm:hover .vm-shell { transform: rotateY(0deg) rotateX(0deg); }

.vm-marquee {
  overflow: hidden;
  background: #000;
  border: 2px solid var(--lime);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 6px 0;
}

.vm-marquee span {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--lime);
  animation: marquee 12s linear infinite;
  text-shadow: 0 0 8px var(--lime-glow);
}

.vm-marquee--slow span { animation-duration: 18s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.vm-header, .vm-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.vm-rack-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 16px;
  color: var(--muted);
}

.vm-rack-empty p:first-child {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--lime);
  letter-spacing: 1px;
}

.vm-rack-empty-sub { font-size: 13px; margin-top: 8px; }

.vm-opened {
  margin: 0 16px 12px;
  padding: 16px;
  border: 1px solid rgba(204, 255, 0, 0.25);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
}

.vm-opened-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--lime);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.vm-opened-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.vm-opened-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

.vm-opened-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.vm-opened-card:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.vm-opened-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--lime);
}

.vm-opened-id {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
}

.vm-opened-name {
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}


.vm-brand {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--lime);
  line-height: 1;
  text-shadow: 0 0 14px var(--lime-glow);
}

.vm-brand em {
  font-style: normal;
  color: var(--pink);
  font-size: 0.85em;
}

.vm-brand--lg { font-size: 26px; }

.vm-lights { display: flex; gap: 7px; padding-top: 4px; }

.vm-lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px currentColor;
  animation: blink-light 1.4s ease infinite;
}

.vm-lights span:nth-child(2) { animation-delay: 0.2s; background: var(--pink); color: var(--pink); }
.vm-lights span:nth-child(3) { animation-delay: 0.4s; background: var(--cyan); color: var(--cyan); }
.vm-lights span:nth-child(4) { animation-delay: 0.6s; background: var(--orange); color: var(--orange); }

@keyframes blink-light {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

.vm-screen {
  background: linear-gradient(180deg, #001800, #002200);
  border: 4px inset #333;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  min-height: 90px;
  box-shadow: inset 0 0 30px rgba(0, 255, 0, 0.08);
}

.vm-screen--lg { flex: 1; min-height: 110px; }

.vm-screen--warn { background: linear-gradient(180deg, #1a1000, #2a1800); }
.vm-screen--win { background: linear-gradient(180deg, #001a00, #003300); }

.vm-screen-line {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.vm-screen-line--big {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-shadow: 0 0 12px var(--lime-glow);
}

.vm-screen-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

.vm-screen-stats b { color: var(--cyan); }

.vm-window {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(20, 20, 40, 0.8));
  border: 4px solid #444;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.vm-window--lg { padding: 18px; min-height: 220px; }

.vm-window-frame {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(204, 255, 0, 0.15);
  border-radius: 12px;
  pointer-events: none;
}

.vm-window-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 35%,
    transparent 65%,
    rgba(255, 255, 255, 0.04) 100%
  );
  pointer-events: none;
  z-index: 2;
  border-radius: 10px;
}

.vm-rack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}

.vm-rack--lg { grid-template-columns: repeat(6, 1fr); gap: 10px; }

.vm-pack-slot {
  position: relative;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-pack-id {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--lime);
  background: rgba(0, 0, 0, 0.75);
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.vm-connect--live {
  background: var(--lime) !important;
  color: var(--void) !important;
  border-color: var(--lime) !important;
}

.vm-pack-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.vm-pack-slot:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--lime);
  box-shadow: 0 0 20px var(--lime-glow);
}

.vm-pack-slot.selected {
  border-color: var(--lime);
  box-shadow: 0 0 24px var(--lime-glow), inset 0 0 12px rgba(204, 255, 0, 0.15);
  transform: scale(1.06);
}

.vm-pack-slot--opening {
  animation: pack-shake 0.4s ease infinite;
  opacity: 0.5;
}

.vm-pack-slot--empty {
  cursor: default;
  opacity: 0.4;
  border-style: dashed;
}

.vm-pack-slot--empty:hover { transform: none; box-shadow: none; }

.vm-empty-slot {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
}

@keyframes pack-shake {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

.vm-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.vm-slot-label {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
}

.vm-open-btn {
  position: relative;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--void);
  background: radial-gradient(circle at 35% 30%, #e8ff80, var(--lime));
  border: 4px solid #000;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  cursor: pointer;
  box-shadow:
    0 0 30px var(--lime-glow),
    0 6px 0 #5a7000,
    inset 0 -4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s, box-shadow 0.1s;
}

.vm-open-btn--lg {
  width: 110px;
  height: 110px;
  font-size: 16px;
  line-height: 1.1;
  flex-shrink: 0;
}

.vm-open-btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--lime-glow), 0 8px 0 #5a7000;
}

.vm-open-btn:active:not(:disabled) {
  transform: scale(0.96);
  box-shadow: 0 0 20px var(--lime-glow), 0 2px 0 #5a7000;
}

.vm-open-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.vm-open-ring {
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(204, 255, 0, 0.4);
  border-radius: 50%;
  animation: spin-ring 8s linear infinite;
}

@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

.vm-chute {
  text-align: center;
}

.vm-chute-inner {
  position: relative;
  min-height: 70px;
  background: linear-gradient(180deg, #111, #000);
  border: 3px solid #333;
  border-radius: 0 0 16px 16px;
  margin-bottom: 6px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}

.vm-chute-inner--lg {
  min-height: 100px;
  width: 140px;
  border-radius: 0 0 20px 20px;
}

.vm-chute-hint { font-size: 10px; color: var(--muted); }

.vm-chute-empty {
  font-size: 11px;
  color: #444;
  padding: 20px;
}

.vm-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}

.vm-coin-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 700;
}

.vm-coin-slot {
  width: 48px;
  height: 8px;
  background: #000;
  border: 2px solid #555;
  border-radius: 4px;
}

.vm-connect { flex-shrink: 0; align-self: flex-start; }

.vm-shadow {
  height: 24px;
  margin: 8px 20px 0;
  background: radial-gradient(ellipse, rgba(204, 255, 0, 0.25), transparent 70%);
  filter: blur(8px);
}

.vm-shadow--wide { margin: 12px 40px 0; }

.vm-shake { animation: vm-shake 0.5s ease; }

@keyframes vm-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

/* Pack fly / sticker drop */
.vm-pack-fly {
  position: absolute;
  width: 60px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  transition: top 1s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.3s;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.8));
}

.vm-pack-fly--drop { top: 30px; opacity: 0; }

.vm-sticker-drop {
  width: 72px;
  border-radius: 10px;
  box-shadow: 0 0 24px var(--drop-glow, var(--lime-glow));
  transform: translateY(-80px) scale(0.5);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

.vm-sticker-drop--landed {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Reveal overlay */
.reveal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
}

.reveal-overlay[hidden] { display: none !important; }

.reveal-flash {
  position: absolute;
  inset: 0;
  background: var(--lime);
  opacity: 0;
  animation: reveal-flash 0.6s ease forwards;
  pointer-events: none;
}

@keyframes reveal-flash {
  0% { opacity: 0.7; }
  100% { opacity: 0; }
}

.reveal-sticker {
  width: min(320px, 70vw);
  border-radius: 20px;
  box-shadow: 0 0 60px var(--lime-glow), 0 0 0 4px var(--lime);
  animation: reveal-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  position: relative;
  z-index: 1;
}

@keyframes reveal-pop {
  from { transform: scale(0.3) rotate(-10deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

.reveal-label {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--lime);
  letter-spacing: 1px;
  text-align: center;
  z-index: 1;
}

.reveal-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  max-width: 360px;
  z-index: 1;
  line-height: 1.5;
}

.reveal-element {
  z-index: 1;
  margin-top: 4px;
  font-size: 14px;
}

.reveal-sync {
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  text-align: center;
  z-index: 1;
  min-height: 1.2em;
}

.reveal-sync--live { color: #4ade80; }
.reveal-sync--wait { color: #fbbf24; }

.reveal-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  z-index: 1;
}

.reveal-overlay--common .reveal-flash { background: #888; }
.reveal-overlay--common .reveal-tier { background: #888; color: #fff; }
.reveal-overlay--common .reveal-sticker { box-shadow: 0 0 50px rgba(136, 136, 136, 0.6), 0 0 0 4px #888; }

.reveal-overlay--uncommon .reveal-flash { background: #4ade80; }
.reveal-overlay--uncommon .reveal-tier { background: #4ade80; color: #000; }
.reveal-overlay--uncommon .reveal-sticker { box-shadow: 0 0 50px rgba(74, 222, 128, 0.6), 0 0 0 4px #4ade80; }

.reveal-overlay--rare .reveal-flash { background: #60a5fa; }
.reveal-overlay--rare .reveal-tier { background: #60a5fa; color: #000; }
.reveal-overlay--rare .reveal-sticker { box-shadow: 0 0 50px rgba(96, 165, 250, 0.6), 0 0 0 4px #60a5fa; }

.reveal-overlay--epic .reveal-flash { background: #9d4edd; }
.reveal-overlay--epic .reveal-tier { background: #9d4edd; color: #fff; }
.reveal-overlay--epic .reveal-sticker { box-shadow: 0 0 50px rgba(157, 78, 221, 0.7), 0 0 0 4px #9d4edd; }

.reveal-overlay--gold .reveal-flash { background: #ffd700; }
.reveal-overlay--gold .reveal-tier { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; }
.reveal-overlay--gold .reveal-sticker { box-shadow: 0 0 60px rgba(255, 215, 0, 0.8), 0 0 0 4px #ffd700; }

.reveal-overlay--plat .reveal-flash { background: #00f0ff; }
.reveal-overlay--plat .reveal-tier { background: linear-gradient(135deg, #e8e8ff, #00f0ff); color: #000; }
.reveal-overlay--plat .reveal-sticker { box-shadow: 0 0 70px rgba(0, 240, 255, 0.9), 0 0 0 4px #00f0ff; }

/* Packs showcase */
.packs { padding: 80px 0; }

.packs-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pack-product {
  position: relative;
  display: flex;
  justify-content: center;
}

.pack-product-img {
  width: min(380px, 90%);
  border-radius: 20px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
  animation: pack-float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.pack-product-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, var(--lime-glow), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

@keyframes pack-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.packs-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--lime);
  margin-bottom: 16px;
}

.packs-list {
  list-style: none;
  margin-bottom: 24px;
}

.packs-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 15px;
}

.packs-list b { color: var(--text); }

.packs-demo { margin-bottom: 24px; }

.packs-demo-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}

.packs-demo-gif {
  border-radius: 16px;
  border: 3px solid var(--lime);
  box-shadow: 0 0 30px var(--lime-glow);
  max-width: 280px;
}

/* Machine section */
.machine { padding: 80px 0; background: rgba(204, 255, 0, 0.03); }

.machine-stage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.machine-sidebar h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--lime);
  margin-bottom: 18px;
}

.machine-steps {
  padding-left: 20px;
  margin-bottom: 20px;
}

.machine-steps li {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
}

.machine-steps b { color: var(--text); }

.machine-note {
  font-size: 14px;
  color: var(--cyan);
  padding: 16px;
  background: rgba(0, 240, 255, 0.08);
  border-radius: 12px;
  border-left: 4px solid var(--cyan);
  margin-bottom: 20px;
}

.machine-tiers-mini {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  align-items: center;
}

.tier-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
}

.tier-dot--common { background: #666; }
.tier-dot--gold { background: #ffd700; }
.tier-dot--plat { background: var(--cyan); }

/* Sections */
section { padding: 72px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 50px);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 10px;
  color: var(--lime);
  text-shadow: 3px 3px 0 var(--pink);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 16px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--panel);
  border-radius: 20px;
  padding: 28px 22px;
  border: 3px solid var(--lime);
  position: relative;
}

.burst::before {
  content: "POW!";
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--void);
  background: var(--lime);
  padding: 2px 10px;
  border-radius: 4px;
  transform: rotate(8deg);
}

.burst--pink { border-color: var(--pink); }
.burst--pink::before { content: "WOW!"; background: var(--pink); color: #fff; }
.burst--cyan { border-color: var(--cyan); }
.burst--cyan::before { content: "WAGMI"; background: var(--cyan); color: var(--void); }

.about-emoji { font-size: 36px; display: block; margin-bottom: 10px; }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}

.about-card p { color: var(--muted); font-size: 14px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-item {
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(204, 255, 0, 0.15);
  transition: transform 0.2s, border-color 0.2s;
}

.gallery-item:hover {
  transform: scale(1.04) rotate(-1deg);
  border-color: var(--lime);
  box-shadow: 0 0 30px var(--lime-glow);
}

.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

.gallery-meta {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.gallery-meta b { color: var(--lime); }

.tier-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.tier-pill--gold { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; }
.tier-pill--plat { background: linear-gradient(135deg, #e8e8ff, #9d4edd, #00f0ff); color: #000; }
.tier-pill--epic { background: linear-gradient(135deg, #9d4edd, #ff2d95); color: #fff; }
.tier-pill--rare { background: linear-gradient(135deg, #60a5fa, #3b82f6); color: #000; }
.tier-pill--uncommon { background: linear-gradient(135deg, #4ade80, #22c55e); color: #000; }
.tier-pill--common { background: rgba(255, 255, 255, 0.15); color: #ccc; }

/* Tiers */
.tier-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tier {
  flex: 1;
  min-width: 96px;
  text-align: center;
  padding: 14px 8px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.tier span { display: block; font-size: 10px; text-transform: uppercase; color: var(--muted); }
.tier b { font-family: var(--font-display); font-size: 20px; }

.tier--common { border-color: #666; }
.tier--uncommon { border-color: #4ade80; }
.tier--rare { border-color: #60a5fa; }
.tier--epic { border-color: var(--purple); }
.tier--gold { border-color: #ffd700; background: rgba(255, 215, 0, 0.08); }
.tier--plat { border-color: var(--cyan); background: rgba(0, 240, 255, 0.08); }

/* Roadmap */
.roadmap-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.road-card {
  display: flex;
  gap: 18px;
  background: var(--panel);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
}

.road-card--done { border-color: rgba(74, 222, 128, 0.4); }
.road-card--active {
  border-color: var(--lime);
  box-shadow: 0 0 30px var(--lime-glow);
}

.road-card--collab {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--panel), rgba(255, 107, 53, 0.1));
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.15);
}

.road-tag--collab { background: var(--orange); color: #000; }

.road-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--lime);
  min-width: 44px;
}

.road-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 6px;
}

.road-tag--now { background: var(--lime); color: var(--void); }

.road-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 6px;
}

.road-body p { color: var(--muted); font-size: 14px; }

/* CTA & Footer */
.cta-final {
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.1), rgba(255, 45, 149, 0.06));
  border-top: 2px solid rgba(204, 255, 0, 0.2);
}

.cta-inner { text-align: center; }

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.cta-inner p { color: var(--muted); margin-bottom: 24px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.footer a { color: var(--lime); text-decoration: none; }

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: 32px;
  }

  .hero-desc { margin-inline: auto; }
  .hero-stats, .hero-cta { justify-content: center; }
  .hero-machine-wrap { order: -1; }
  .vm { max-width: 360px; }

  .packs-showcase { grid-template-columns: 1fr; text-align: center; }
  .packs-list { text-align: left; }
  .packs-demo-gif { margin-inline: auto; display: block; }

  .machine-stage { grid-template-columns: 1fr; }
  .vm-bottom-row { flex-wrap: wrap; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--void);
    padding: 20px;
    border-bottom: 2px solid var(--lime);
  }

  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header { position: relative; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .vm-rack--lg { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { gap: 10px; }
}

/* Big event modal */
.nav-event {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.nav-event:hover {
  background: rgba(204, 255, 0, 0.18);
  transform: translateY(-1px);
}

.event-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.event-overlay[hidden] { display: none !important; }

.event-modal {
  position: relative;
  max-width: 480px;
  width: 100%;
  padding: 36px 32px 28px;
  background: linear-gradient(145deg, #14141f 0%, #0a0a12 100%);
  border: 2px solid var(--lime);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(204, 255, 0, 0.15), 0 24px 80px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.event-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
}

.event-close:hover { color: var(--text); }

.event-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #000;
  background: var(--lime);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.event-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.75rem);
  letter-spacing: 0.04em;
  color: var(--lime);
  margin-bottom: 12px;
}

.event-lead {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.event-list {
  text-align: left;
  list-style: none;
  margin: 0 0 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.event-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 0.65rem;
  top: 10px;
}

.event-secret {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.event-secret a { color: var(--cyan); }

.event-ok { min-width: 140px; }
