/* =================================================================
   SMOB — slop is the game
   ================================================================= */

:root {
  --bg-0:        #07070a;
  --bg-1:        #0d0d12;
  --bg-2:        #16161e;
  --bg-3:        #1f1f2c;
  --line:        rgba(192, 38, 211, 0.18);
  --line-2:      rgba(255, 255, 255, 0.06);

  --slop:        #c026d3;
  --slop-2:      #a855f7;
  --slop-3:      #e879f9;
  --slop-hot:    #ff2090;
  --slop-glow:   #d946ef;
  --acid:        #aaff00;
  --lime:        #aaff00;
  --gold:        #ffcc28;
  --cyan:        #00e0ff;
  --red:         #ff2244;

  --ink:         #f6f6fa;
  --ink-dim:     #a8a8b8;
  --ink-muted:   #5a5a6e;

  --ff-graffiti: "Permanent Marker", "Bungee", cursive;
  --ff-display:  "Rubik Mono One", "Bungee", sans-serif;
  --ff-mono:     "JetBrains Mono", ui-monospace, monospace;

  --shadow-glow: 0 0 32px rgba(217, 70, 239, 0.35);
  --shadow-hot:  0 0 48px rgba(255, 32, 144, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
canvas { display: block; image-rendering: pixelated; image-rendering: crisp-edges; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--slop); color: #fff; }

/* =================== BG LAYERS =================== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(192, 38, 211, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 38, 211, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.bg-blobs { position: fixed; inset: 0; z-index: -4; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.blob-1 { width: 600px; height: 600px; background: #6a0d8a; top: -180px; left: -180px; }
.blob-2 { width: 700px; height: 700px; background: #2a0d6b; bottom: -240px; right: -200px; }
.blob-3 { width: 500px; height: 500px; background: #b30d6b; top: 40%; left: 50%; transform: translate(-50%, -50%); opacity: 0.18; }

/* =================== NAV =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 7, 10, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-graffiti);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--slop-3);
  text-shadow: 0 0 12px rgba(217, 70, 239, 0.6);
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  box-shadow: 0 0 0 1px rgba(217, 70, 239, 0.35), 0 0 14px rgba(217, 70, 239, 0.35);
}
.nav-links {
  justify-self: center;
  display: flex;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav-links a {
  color: var(--ink-dim);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--slop-3); }
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--slop);
  box-shadow: 0 0 12px var(--slop);
}
.nav-balance {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.18), rgba(168, 85, 247, 0.08));
  border: 1px solid var(--slop);
  border-radius: 4px;
  box-shadow: inset 0 0 12px rgba(192, 38, 211, 0.2);
}
.bal-label { font-size: 9px; letter-spacing: 2px; color: var(--ink-dim); }
.bal-value { font-size: 18px; font-weight: 800; color: var(--slop-3); text-shadow: 0 0 10px var(--slop); font-variant-numeric: tabular-nums; }

@media (max-width: 880px) {
  .nav-inner { grid-template-columns: auto auto; }
  .nav-links { display: none; }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 28px 60px;
  text-align: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--slop);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--slop-3);
  margin-bottom: 32px;
  background: rgba(192, 38, 211, 0.08);
  text-transform: uppercase;
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--slop-3);
  box-shadow: 0 0 12px var(--slop-3);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
  font-family: var(--ff-graffiti);
  font-weight: 400;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: -3px;
  margin: 0;
  color: var(--slop-3);
  text-shadow:
    0 0 40px rgba(217, 70, 239, 0.6),
    4px 4px 0 #000,
    8px 8px 0 rgba(192, 38, 211, 0.4);
}
.hero-line { display: block; }
.hero-line.hero-sub {
  font-size: clamp(24px, 4vw, 56px);
  letter-spacing: -1px;
  margin-top: 8px;
  color: var(--ink);
  text-shadow: 2px 2px 0 #000;
}
.hero-accent {
  color: var(--slop-3);
  text-shadow: 0 0 24px var(--slop);
}
.strike {
  text-decoration: line-through;
  text-decoration-color: var(--slop);
  text-decoration-thickness: 6px;
  color: var(--ink-muted);
  text-shadow: none;
}
.drip {
  display: inline-block;
  position: relative;
}
.drip::after {
  content: "";
  position: absolute;
  left: 35%;
  bottom: -8px;
  width: 14px;
  height: 28px;
  background: var(--slop);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  filter: blur(0.5px);
  box-shadow: 0 0 14px var(--slop);
  animation: drip 3s ease-in-out infinite;
}
@keyframes drip {
  0%   { transform: translateY(0)     scaleY(1);   opacity: 1; }
  60%  { transform: translateY(40px)  scaleY(1.4); opacity: 0.9; }
  100% { transform: translateY(70px)  scaleY(0.4); opacity: 0; }
}

.hero-desc {
  max-width: 700px;
  margin: 32px auto 36px;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--slop-3); }

.hero-ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-chips {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.chip {
  position: absolute;
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 10px 30px rgba(192, 38, 211, 0.4));
  animation: float 8s ease-in-out infinite;
}
.chip-a { top: 80px; left: 6%; transform: rotate(-18deg); animation-delay: 0s; }
.chip-b { top: 200px; right: 8%; width: 110px; height: 110px; transform: rotate(22deg); animation-delay: -2s; }
.chip-c { bottom: 40px; left: 14%; width: 90px; height: 90px; transform: rotate(-8deg); animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}
@media (max-width: 900px) { .hero-chips { display: none; } }

/* =================== BUTTONS =================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--ff-mono);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--slop);
  border-radius: 4px;
  background: var(--bg-1);
  color: var(--ink);
  transition: transform 0.12s, box-shadow 0.2s, background 0.2s;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--slop) 0%, var(--slop-2) 100%);
  border-color: var(--slop-3);
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 24px rgba(192, 38, 211, 0.5), inset 0 0 16px rgba(255, 255, 255, 0.15);
}
.btn-primary:hover { box-shadow: var(--shadow-hot); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-dim);
}
.btn-ghost:hover { color: var(--slop-3); border-color: var(--slop); }

.btn-flash {
  position: absolute;
  top: 0; left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: flash 3s infinite;
}
@keyframes flash {
  0% { left: -120%; }
  60% { left: 130%; }
  100% { left: 130%; }
}

/* =================== TICKER =================== */
.ticker {
  margin-top: 40px;
  border-top: 1px solid var(--slop);
  border-bottom: 1px solid var(--slop);
  background: linear-gradient(90deg, rgba(192, 38, 211, 0.08), rgba(168, 85, 247, 0.04));
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--slop-3);
  text-shadow: 0 0 10px var(--slop);
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================== STATS =================== */
.stats {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 0 28px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 13, 18, 0.6);
  padding: 4px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  position: relative;
  border-right: 1px solid var(--line-2);
  background: var(--bg-1);
  transition: background 0.2s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--bg-2); }
.stat-greek {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--slop);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
  line-height: 1;
}
.live-num { color: var(--slop-3); text-shadow: 0 0 10px var(--slop); }
.stat-label {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.stat-of { font-size: 11px; color: var(--ink-muted); margin-top: 2px; }
.pulsing { color: var(--slop-3); animation: pulse 1.4s ease-in-out infinite; }

@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--line-2); }
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* =================== SECTION HEAD =================== */
.section-head {
  max-width: 800px;
  margin: 100px auto 50px;
  padding: 0 28px;
  text-align: center;
}
.section-pre {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--slop);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--slop);
  border-radius: 3px;
  background: rgba(192, 38, 211, 0.08);
}
.section-title {
  font-family: var(--ff-graffiti);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
  text-shadow: 3px 3px 0 #000;
  letter-spacing: -1px;
}
.section-title .muted { color: var(--ink-muted); font-size: 0.75em; }
.section-lead {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}

.section-head.section-head-ach {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  gap: 32px 40px;
  align-items: center;
  text-align: left;
}
.section-head.section-head-ach .ach-head-copy .section-pre {
  margin-left: 0;
}
.section-head.section-head-ach .section-title {
  margin-bottom: 16px;
}
.section-head.section-head-ach .section-lead {
  margin: 0;
  max-width: none;
}
.ach-hero-slot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(217, 70, 239, 0.35);
  box-shadow:
    0 0 32px rgba(255, 32, 144, 0.18),
    0 0 48px rgba(255, 204, 40, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: var(--bg-0);
}
.ach-hero-slot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
@media (max-width: 840px) {
  .section-head.section-head-ach {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .section-head.section-head-ach .ach-head-copy .section-pre {
    margin-left: auto;
    margin-right: auto;
  }
  .section-head.section-head-ach .section-lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .ach-hero-slot {
    max-width: 380px;
    width: 100%;
  }
}
.hot { color: var(--slop-3); font-weight: 800; }

/* =================== CONCEPT =================== */
.concept { max-width: 1300px; margin: 0 auto; padding: 0 28px 60px; }
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card-tilt:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--slop);
  box-shadow: var(--shadow-glow);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--slop), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card-tilt:hover::before { opacity: 1; }
.card-num {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--slop);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 20px var(--slop);
}
.card h3 {
  font-family: var(--ff-graffiti);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.card p { color: var(--ink-dim); margin: 0 0 18px; }
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.card-meta span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

@media (max-width: 900px) { .concept-grid { grid-template-columns: 1fr; } }

/* =================== SLOT MACHINE =================== */
.slot { max-width: 1100px; margin: 0 auto; padding: 0 28px 60px; }

.slot-frame {
  position: relative;
  margin: 40px auto 30px;
  max-width: 720px;
  padding: 28px 24px 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217, 70, 239, 0.25), transparent 65%),
    linear-gradient(180deg, #2a0d3a 0%, #1a0820 50%, #0d0d18 100%);
  border: 3px solid var(--slop);
  border-radius: 16px;
  box-shadow:
    0 0 60px rgba(192, 38, 211, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.04),
    inset 0 2px 0 rgba(255, 255, 255, 0.1);
}
.slot-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  pointer-events: none;
}

.slot-marquee {
  display: flex;
  justify-content: space-around;
  padding: 0 8px;
  margin-bottom: 14px;
}
.slot-marquee.bottom { margin-top: 14px; margin-bottom: 0; }
.bulb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--gold) 50%, #8a5a08 100%);
  box-shadow: 0 0 12px var(--gold), 0 0 4px #fff;
  animation: bulb 1s ease-in-out infinite;
}
.bulb:nth-child(2n) { animation-delay: 0.2s; background: radial-gradient(circle at 30% 30%, #fff 0%, var(--slop-3) 50%, #6a0a8a 100%); box-shadow: 0 0 12px var(--slop-3); }
.bulb:nth-child(3n) { animation-delay: 0.4s; }
.bulb:nth-child(4n) { animation-delay: 0.6s; background: radial-gradient(circle at 30% 30%, #fff 0%, var(--cyan) 50%, #0a4a6b 100%); box-shadow: 0 0 12px var(--cyan); }
@keyframes bulb {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.slot-screen {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 16px;
  background: #050507;
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.9),
    0 4px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.reel {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--bg-3);
  border-radius: 6px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}
.reel-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  will-change: transform;
  transition: transform 3.5s cubic-bezier(0.15, 0.85, 0.25, 1);
}
.reel-item {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-1);
}
.reel-item canvas { width: 160px; height: 160px; }
.reel-item .tier-tag {
  position: absolute;
  bottom: 8px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--ink-dim);
}
.tier-COMMON   { color: var(--ink-dim) !important; }
.tier-RARE     { color: var(--cyan) !important; text-shadow: 0 0 6px var(--cyan); }
.tier-EPIC     { color: var(--slop-3) !important; text-shadow: 0 0 8px var(--slop); }
.tier-LEGENDARY{ color: var(--gold) !important; text-shadow: 0 0 10px var(--gold); }
.tier-MYTHIC   { color: var(--slop-hot) !important; text-shadow: 0 0 12px var(--slop-hot); animation: pulse 0.8s ease-in-out infinite; }

.slot-line {
  position: absolute;
  left: 16px; right: 16px;
  top: 50%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--slop) 20%, var(--slop-3) 50%, var(--slop) 80%, transparent);
  transform: translateY(-2px);
  pointer-events: none;
  box-shadow: 0 0 14px var(--slop), 0 0 4px var(--slop-3);
  opacity: 0.85;
}

.slot-readout {
  margin-top: 16px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #050507;
  border: 1px solid var(--bg-3);
  border-radius: 6px;
  text-align: center;
  min-height: 64px;
  justify-content: center;
}
.readout-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--ink-muted);
}
.readout-text {
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--slop-3);
  text-shadow: 0 0 10px var(--slop);
  letter-spacing: 1px;
}
.slot-readout.win .readout-text { color: var(--gold); text-shadow: 0 0 14px var(--gold); }
.slot-readout.jackpot .readout-text { color: var(--slop-hot); text-shadow: 0 0 18px var(--slop-hot); animation: pulse 0.4s ease-in-out infinite; }

.slot-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.slot-bet {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--ink-dim);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-1);
}
.slot-bet span { color: var(--slop-3); font-weight: 800; }
.btn-pull {
  min-width: 140px;
  font-size: 16px;
  padding: 14px 28px;
}

/* paytable */
.slot-paytable {
  margin: 30px auto 0;
  max-width: 720px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.paytable-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 10px 18px;
  background: rgba(192, 38, 211, 0.1);
  border-bottom: 1px solid var(--slop);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--slop-3);
  text-transform: uppercase;
}
.paytable-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
  align-items: center;
}
.paytable-row:last-child { border-bottom: none; }
.paytable-row em { color: var(--ink-muted); font-style: normal; font-size: 11px; }
.paytable-row .hot { color: var(--gold); font-weight: 800; }
.gold-row { background: rgba(255, 204, 40, 0.05); }
.gold-row .hot { color: var(--gold); }
.jackpot-row {
  background: linear-gradient(90deg, rgba(255, 32, 144, 0.12), rgba(192, 38, 211, 0.08));
}
.jackpot-row .hot { color: var(--slop-hot); text-shadow: 0 0 8px var(--slop-hot); }

/* =================== INVENTORY =================== */
.inventory { max-width: 1300px; margin: 0 auto; padding: 0 28px 60px; }

.vault-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 30px 0 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.08), rgba(168, 85, 247, 0.04));
  border: 1px solid var(--slop);
  border-radius: 10px;
  box-shadow: inset 0 0 30px rgba(192, 38, 211, 0.08);
}
.vault-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
}
.vault-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vs-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.vs-value {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--slop-3);
  text-shadow: 0 0 10px var(--slop);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.crack-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-crack {
  font-size: 14px;
  padding: 14px 22px;
  letter-spacing: 1.5px;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  min-height: 200px;
  position: relative;
  transition: background 0.3s;
  border-radius: 8px;
  padding: 4px;
}
.inventory-grid.reveal-flash {
  background: radial-gradient(ellipse at center, rgba(217, 70, 239, 0.15), transparent 70%);
}

.empty-vault {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  background: var(--bg-1);
}
.ev-line { color: var(--slop-3); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.ev-sub  { color: var(--ink-muted); font-size: 12px; letter-spacing: 1px; }

.inv-tile {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.inv-tile:hover {
  transform: translateY(-4px);
  border-color: var(--slop);
  box-shadow: var(--shadow-glow);
}
.inv-tile.just-cracked {
  animation: justCracked 1.2s ease;
  z-index: 1;
}
@keyframes justCracked {
  0%   { transform: scale(0.4) rotate(-12deg); opacity: 0; box-shadow: 0 0 0 var(--slop-hot); }
  60%  { transform: scale(1.12) rotate(2deg); opacity: 1; box-shadow: 0 0 50px var(--slop-hot); }
  100% { transform: scale(1) rotate(0); box-shadow: 0 0 0 transparent; }
}

.inv-tile canvas { width: 100%; aspect-ratio: 1; display: block; }
.tile-level {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--gold);
  border-radius: 3px;
  text-shadow: 0 0 6px var(--gold);
}

.tile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.ta-btn {
  background: var(--bg-1);
  border: none;
  padding: 7px 0;
  color: var(--ink-dim);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.ta-btn:hover { color: var(--slop-3); background: var(--bg-2); }
.ta-btn[data-act="survivor"]:hover { color: var(--cyan); }
.ta-btn[data-act="donor"]:hover    { color: var(--slop-hot); }

/* =================== MERGE LAB =================== */
.merge-lab { max-width: 1300px; margin: 0 auto; padding: 0 28px 60px; }

.merge-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 800px;
}
.merge-rules span {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-dim);
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-1);
  text-transform: uppercase;
}

.merge-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.merge-slot {
  padding: 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slot-survivor { border-color: rgba(0, 224, 255, 0.4); }
.slot-donor    { border-color: rgba(255, 32, 144, 0.4); }
.merge-slot header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.merge-slot h4 {
  margin: 0;
  font-family: var(--ff-graffiti);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.slot-survivor h4 { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }
.slot-donor    h4 { color: var(--slop-hot); text-shadow: 0 0 10px var(--slop-hot); }

.slot-tag {
  font-size: 9px;
  letter-spacing: 2px;
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--bg-0);
  font-weight: 800;
}
.slot-tag.keeps { color: var(--cyan); border: 1px solid var(--cyan); }
.slot-tag.burns { color: var(--slop-hot); border: 1px solid var(--slop-hot); }

.slot-card {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-0);
  border: 2px dashed var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.slot-card.has-item {
  border-style: solid;
  padding: 0;
}
.slot-survivor .slot-card.has-item { border-color: var(--cyan); box-shadow: 0 0 24px rgba(0, 224, 255, 0.3); }
.slot-donor    .slot-card.has-item { border-color: var(--slop-hot); box-shadow: 0 0 24px rgba(255, 32, 144, 0.3); }

.slot-card canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.slot-card-meta {
  position: absolute;
  bottom: 6px; left: 6px; right: 6px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1px;
}
.slot-card-meta span {
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.slot-card-lvl { color: var(--gold); text-shadow: 0 0 4px var(--gold); }

.empty-slot {
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.5;
}

.slot-actions { display: flex; gap: 8px; }
.slot-actions .btn { flex: 1; font-size: 11px; padding: 10px; }

.merge-center {
  padding: 16px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217, 70, 239, 0.25), transparent 70%),
    linear-gradient(180deg, #2a0d3a 0%, #16081f 100%);
  border: 2px solid var(--slop);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 0 36px rgba(192, 38, 211, 0.3);
}
.merge-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ink-dim);
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  font-family: var(--ff-mono);
}
.merge-formula b { color: var(--slop-3); }
.merge-formula .op { color: var(--gold); font-size: 16px; }

.result-card {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-0);
  border: 2px solid var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(255, 204, 40, 0.1), 0 0 20px rgba(255, 204, 40, 0.2);
}
.result-card.empty { border-style: dashed; border-color: var(--line); box-shadow: none; }
.result-card.warn  { border-color: var(--red); box-shadow: 0 0 24px rgba(255, 34, 68, 0.3); }
.result-card.has-item { padding: 0; }
.result-card canvas { width: 100%; height: 100%; display: block; }

.result-burst {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--gold);
  text-shadow: 0 0 14px var(--gold);
  letter-spacing: 6px;
  z-index: 1;
}
.result-card.warn .result-burst { color: var(--red); text-shadow: 0 0 14px var(--red); }

.result-meta {
  position: absolute;
  bottom: 8px; left: 8px; right: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.rm-pill {
  padding: 4px 9px;
  font-size: 10px;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 3px;
  backdrop-filter: blur(4px);
  color: var(--ink);
}
.rm-pill.rm-lvl  { color: var(--gold); text-shadow: 0 0 4px var(--gold); }
.rm-pill.rm-slop { color: var(--slop-3); text-shadow: 0 0 4px var(--slop); }
.rm-pill.tier-COMMON    { color: var(--ink-dim); }
.rm-pill.tier-RARE      { color: var(--cyan); }
.rm-pill.tier-EPIC      { color: var(--slop-3); }
.rm-pill.tier-LEGENDARY { color: var(--gold); }
.rm-pill.tier-MYTHIC    { color: var(--slop-hot); }

.result-info {
  text-align: center;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 1px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-info.ready { color: var(--gold); text-shadow: 0 0 8px var(--gold); }
.result-info.warn  { color: var(--red); }
.result-info.flash { color: var(--slop-3); animation: pulse 0.5s ease 2; }

.btn-fuse {
  font-size: 18px;
  padding: 16px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--slop-hot), var(--slop));
  border-color: var(--slop-3);
}
.btn-fuse:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--bg-2);
  box-shadow: none;
}
.btn-fuse:disabled:hover { transform: none; }

.fuse-pulse { animation: fusePulse 1.1s ease; }
@keyframes fusePulse {
  0%   { transform: scale(1); box-shadow: 0 0 20px var(--gold); }
  20%  { transform: scale(1.06); box-shadow: 0 0 80px var(--slop-hot); }
  60%  { transform: scale(0.98); box-shadow: 0 0 40px var(--slop); }
  100% { transform: scale(1); box-shadow: 0 0 20px var(--gold); }
}

.merge-paytable {
  margin: 16px auto 0;
  max-width: 900px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

/* Info card that replaces the old paytable. Fusions don't pay tokens — */
/* this card explains where rewards actually come from. */
.merge-info {
  margin: 18px auto 0;
  max-width: 900px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.08), rgba(0, 0, 0, 0));
  border: 1px solid rgba(217, 70, 239, 0.28);
  border-radius: 10px;
  position: relative;
}
.merge-info::before {
  content: '⚡';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 22px;
  color: var(--slop-3);
  filter: drop-shadow(0 0 6px var(--slop));
  opacity: 0.7;
}
.merge-info .mi-head {
  margin-bottom: 8px;
}
.merge-info .mi-pre {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--slop-3);
  border: 1px solid rgba(217, 70, 239, 0.35);
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.merge-info h4 {
  margin: 4px 0 0;
  font-family: var(--ff-display);
  font-size: 17px;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.merge-info p {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.merge-info strong { color: var(--gold); }
.merge-info .mi-foot { margin-top: 12px; }
.merge-info .mi-link {
  color: var(--slop-3);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 12px;
  border-bottom: 1px dashed rgba(217, 70, 239, 0.4);
}
.merge-info .mi-link:hover { color: var(--slop-hot); }

@media (max-width: 1000px) {
  .merge-panel { grid-template-columns: 1fr; }
  .vault-controls { grid-template-columns: 1fr; }
  .vault-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =================== PICKER MODAL =================== */
.modal-picker .modal-body { max-width: 900px; }
.modal-body-wide { max-width: 900px; width: 100%; }
.picker-hint {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 4px;
}
.picker-tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.picker-tile:hover {
  transform: translateY(-3px);
  border-color: var(--slop);
  box-shadow: var(--shadow-glow);
}
.picker-tile canvas { width: 100%; aspect-ratio: 1; display: block; }
.picker-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  border-top: 1px solid var(--line-2);
}
.picker-lvl { color: var(--gold); font-weight: 700; }
.picker-tier.tier-COMMON    { color: var(--ink-dim); }
.picker-tier.tier-RARE      { color: var(--cyan); }
.picker-tier.tier-EPIC      { color: var(--slop-3); }
.picker-tier.tier-LEGENDARY { color: var(--gold); }
.picker-tier.tier-MYTHIC    { color: var(--slop-hot); }

/* modal extras for new buttons */
.modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: flex-end;
}
.modal-actions .btn { font-size: 11px; padding: 10px 16px; }

/* =================== HOW IT WORKS =================== */
.how-section { max-width: 1300px; margin: 0 auto; padding: 30px 28px 60px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.step-card {
  position: relative;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.0), rgba(217, 70, 239, 0.06));
  pointer-events: none;
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--slop);
  box-shadow: 0 0 30px rgba(192, 38, 211, 0.25);
}
.step-num {
  font-family: var(--ff-display);
  font-size: 38px;
  color: var(--slop);
  text-shadow: 0 0 12px var(--slop);
  line-height: 1;
  opacity: 0.85;
}
.step-icon {
  font-size: 28px;
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold);
  letter-spacing: 1px;
}
.step-card h3 {
  margin: 4px 0 0;
  font-family: var(--ff-graffiti);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
}
.step-card p {
  flex: 1;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-muted);
}
.step-card p strong { color: var(--slop-3); }
.step-cta {
  margin-top: 8px;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s, text-shadow 0.2s;
}
.step-cta:hover { color: var(--gold); border-color: var(--gold); text-shadow: 0 0 8px var(--gold); }

.how-meta {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 1px;
}

@media (max-width: 1000px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .steps-grid { grid-template-columns: 1fr; } }

/* =================== LIVE TOAST =================== */
.slob-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 12px);
  z-index: 9999;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 16, 0.95));
  border: 1px solid rgba(0, 224, 255, 0.55);
  border-radius: 8px;
  color: var(--cyan);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(0, 224, 255, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55), 0 0 24px rgba(0, 224, 255, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.slob-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =================== CASINO HERO BANNER =================== */
.casino-hero {
  max-width: 1300px;
  margin: 60px auto 40px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
}
.casino-hero-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.casino-hero-pre {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--slop-3);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(217, 70, 239, 0.55);
  border-radius: 3px;
  background: rgba(192, 38, 211, 0.08);
  margin-bottom: 16px;
}
.casino-hero-title {
  font-family: var(--ff-graffiti);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -1px;
  margin: 0 0 14px;
  color: var(--ink);
  text-shadow:
    3px 3px 0 #000,
    0 0 28px rgba(255, 204, 40, 0.22);
}
.casino-hero-lead {
  margin: 0 auto;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
}
.casino-hero-lead strong { color: var(--gold); }

.casino-hero-art {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #050507;
  border: 1px solid rgba(217, 70, 239, 0.35);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 28px 70px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(255, 32, 144, 0.18);
}
.casino-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.casino-hero-art:hover img {
  transform: scale(1.015);
  filter: saturate(1.15) contrast(1.05);
}
.casino-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 120px rgba(255, 32, 144, 0.18),
    inset 0 0 40px rgba(255, 204, 40, 0.12);
}

.casino-hero-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 4px auto 0;
  max-width: 920px;
}
.casino-hero-bullets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}
.chb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.45);
}
.chb .chb-k {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.chb .chb-v {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--ink);
}
.chb-burn { border-color: rgba(255, 140, 40, 0.55); background: rgba(255, 80, 20, 0.06); }
.chb-burn .chb-k { color: #ffb070; }
.chb-burn .chb-v { color: #ff8a3a; text-shadow: 0 0 8px rgba(255, 140, 40, 0.55); }
.chb-pool { border-color: rgba(0, 224, 255, 0.45); background: rgba(0, 140, 255, 0.06); }
.chb-pool .chb-k { color: var(--cyan); }
.chb-pool .chb-v { color: var(--cyan); text-shadow: 0 0 8px rgba(0, 224, 255, 0.5); }

.casino-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: rgba(255, 204, 40, 0.08);
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255, 204, 40, 0.18);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s, background 0.2s;
}
.casino-hero-cta:hover {
  background: rgba(255, 204, 40, 0.16);
  box-shadow: 0 0 28px rgba(255, 204, 40, 0.55);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .casino-hero-bullets { grid-template-columns: repeat(2, 1fr); }
  .casino-hero { margin: 40px auto 30px; gap: 22px; }
}

/* =================== NAV WALLET =================== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* X (Twitter) — top nav */
.btn-nav-x {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 14, 0.9);
  color: #f5f5f5;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s, color 0.15s;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 0 14px rgba(255, 255, 255, 0.06);
}
.btn-nav-x:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}
.btn-nav-x-icon { flex-shrink: 0; opacity: 0.95; }
.btn-nav-x-text { line-height: 1; }

@media (max-width: 520px) {
  .btn-nav-x-text { display: none; }
  .btn-nav-x { padding: 9px 11px; }
}

.btn-wallet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: linear-gradient(135deg, var(--slop), var(--slop-2));
  border: 1px solid var(--slop-3);
  border-radius: 6px;
  color: #fff;
  font-family: var(--ff-mono);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 18px rgba(217, 70, 239, 0.4);
}
.btn-wallet:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(217, 70, 239, 0.6); }
.btn-wallet.connected {
  background: linear-gradient(135deg, #0a3a2a, #0a2a3a);
  border-color: #2ee08a;
  color: #2ee08a;
  box-shadow: 0 0 18px rgba(46, 224, 138, 0.3);
}
.wallet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff5050;
  box-shadow: 0 0 8px #ff5050;
  animation: pulse 1.4s ease-in-out infinite;
}
.btn-wallet.connected .wallet-dot {
  background: #2ee08a;
  box-shadow: 0 0 8px #2ee08a;
}

/* =================== WALLET MODAL =================== */
.modal-body-small { max-width: 420px; width: 100%; }
.wallet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.wallet-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.wallet-option:hover {
  transform: translateX(4px);
  border-color: var(--slop);
  background: linear-gradient(90deg, var(--bg-2), rgba(192, 38, 211, 0.1));
}
.wo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--ff-display);
  font-size: 14px;
}
.wo-name { flex: 1; letter-spacing: 1px; }
.wo-tag {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.wallet-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(255, 204, 40, 0.08);
  border: 1px solid rgba(255, 204, 40, 0.25);
  border-radius: 6px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1.5;
}

/* wallet profile */
.wp-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.wp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 1px;
}
.wp-row > span:first-child { color: var(--ink-dim); }
.wp-row .mono { font-family: var(--ff-mono); font-size: 11px; word-break: break-all; text-align: right; max-width: 60%; color: var(--cyan); }

/* =================== WALLET GATE =================== */
.section-gated { position: relative; }
.wallet-gate-overlay { display: none; }
.section-gated.locked > *:not(.wallet-gate-overlay) {
  filter: blur(2px) brightness(0.7);
  pointer-events: none;
  user-select: none;
  opacity: 0.75;
  transition: filter 0.4s, opacity 0.4s;
}
.section-gated.locked .wallet-gate-overlay {
  display: flex;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 50px 40px;
  z-index: 5;
  background:
    radial-gradient(ellipse at center, rgba(7, 7, 10, 0.55) 0%, rgba(7, 7, 10, 0.25) 55%, transparent 80%),
    radial-gradient(ellipse at center, rgba(192, 38, 211, 0.16), transparent 70%);
  border-radius: 18px;
  animation: gateFadeIn 0.4s ease-out;
}
@keyframes gateFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.wgo-icon {
  font-size: 56px;
  filter: drop-shadow(0 0 16px var(--slop-hot));
  animation: float 2.4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.wgo-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 1px;
  color: var(--ink);
  margin: 0;
  text-shadow: 0 0 20px rgba(255, 32, 144, 0.5);
}
.wgo-sub {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 1px;
  max-width: 420px;
  margin: 0;
}
.wallet-gate-overlay .btn {
  margin-top: 10px;
  font-size: 15px;
  padding: 14px 32px;
  letter-spacing: 2.5px;
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
}
.wallet-gate-overlay .btn:hover {
  box-shadow: 0 0 48px rgba(217, 70, 239, 0.75);
  transform: translateY(-2px);
}

/* =================== CASINO SLOT MACHINE =================== */
.casino-section { max-width: 1300px; margin: 0 auto; padding: 30px 28px 60px; }
.casino-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
}

.slot-machine {
  position: relative;
  --cabinet-bg0: #16161e;
  --cabinet-bg1: #0c0c12;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    radial-gradient(ellipse 90% 55% at 50% 25%, rgba(255, 204, 40, 0.08), transparent 55%),
    linear-gradient(180deg, var(--cabinet-bg0) 0%, var(--cabinet-bg1) 100%);
  border: none;
  border-radius: 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -22px 48px rgba(0, 0, 0, 0.55),
    0 28px 56px rgba(0, 0, 0, 0.65),
    0 0 0 3px #2a2a32,
    0 0 0 6px #0a0a0e,
    0 0 48px rgba(255, 204, 40, 0.18),
    0 0 96px rgba(255, 32, 144, 0.08);
  overflow: visible;
  animation: cabinetNeonHum 4.2s ease-in-out infinite;
}
.slot-machine::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--cabinet-bg1), var(--cabinet-bg1)) padding-box,
    linear-gradient(135deg, rgba(255, 204, 40, 0.55), rgba(255, 32, 144, 0.35), rgba(0, 224, 255, 0.45)) border-box;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}
.slot-machine::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.arcade-screen {
  position: relative;
  z-index: 2;
  padding: 38px 26px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.screen-neon-rim {
  position: absolute;
  inset: 16px 18px auto;
  height: calc(100% - 138px);
  max-height: 78%;
  border-radius: 18px;
  pointer-events: none;
  box-shadow:
    0 0 24px rgba(255, 204, 40, 0.35),
    0 0 2px rgba(255, 230, 140, 0.9),
    inset 0 0 22px rgba(255, 204, 40, 0.06);
  opacity: 0.9;
  animation: rimPulse 3s ease-in-out infinite;
}

.reels-neon-wrap {
  width: 100%;
  max-width: 460px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 12, 28, 0.95), rgba(6, 6, 12, 0.98));
  box-shadow:
    0 0 28px rgba(255, 32, 144, 0.55),
    0 0 4px rgba(255, 160, 220, 0.95),
    inset 0 0 22px rgba(255, 32, 144, 0.12);
  border: 3px solid rgba(255, 32, 144, 0.85);
}

.machine-ticker-outer {
  width: 100%;
  max-width: 460px;
  margin-top: 4px;
}

.arcade-deck {
  position: relative;
  z-index: 2;
  margin: 8px 22px 22px;
  padding: 18px 20px 22px 22px;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(180deg, #24242e 0%, #121218 38%, #0a0a10 100%);
  box-shadow:
    inset 0 12px 22px rgba(0, 0, 0, 0.65),
    inset 0 2px 0 rgba(255, 255, 255, 0.06);
  border-top: 2px solid rgba(0, 0, 0, 0.5);
}

.deck-metal {
  position: absolute;
  left: 12px;
  right: 72px;
  top: 10px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.deck-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 56px;
}

.deck-coin-slot {
  flex: 0 0 52px;
  height: 56px;
  border-radius: 6px;
  background: linear-gradient(180deg, #050508, #101018);
  box-shadow:
    inset 0 3px 10px rgba(0, 0, 0, 0.95),
    inset 0 0 0 2px #1e1e26,
    0 1px 0 rgba(255, 255, 255, 0.04);
  border: 2px solid #0a0a10;
}

.deck-pull {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 18px;
  font-family: var(--ff-display), system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer;
  background: linear-gradient(180deg, #ff3348 0%, #b00818 48%, #7a0610 100%) !important;
  box-shadow:
    0 0 28px rgba(255, 55, 65, 0.85),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -14px 28px rgba(0, 0, 0, 0.45) !important;
  transition: transform 0.08s ease, box-shadow 0.15s ease;
}
.deck-pull .deck-pull-glow {
  position: absolute;
  inset: 4px;
  border-radius: 8px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.35), transparent 62%);
  pointer-events: none;
  opacity: 0.55;
}
.deck-pull .spin-emoji {
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
.deck-pull .spin-label {
  font-size: 17px;
  line-height: 1.15;
  text-align: left;
  letter-spacing: 0.18em;
}
.deck-pull .spin-label small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.92;
  font-weight: 600;
}
.deck-pull:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 0 42px rgba(255, 55, 65, 1),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -14px 28px rgba(0, 0, 0, 0.45) !important;
}
.slot-machine.spinning .deck-pull {
  transform: translateY(4px) scale(0.98);
  box-shadow:
    0 0 14px rgba(255, 55, 65, 0.55),
    inset 0 18px 36px rgba(0, 0, 0, 0.55) !important;
}
.deck-pull:active:not(:disabled) {
  transform: translateY(3px) scale(0.99);
}
.deck-pull:disabled {
  opacity: 0.48 !important;
  cursor: not-allowed;
  transform: none;
}

.deck-chip-btn {
  flex: 0 0 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px;
  font-size: 16px;
  line-height: 1;
  border-radius: 10px;
  border: 2px solid rgba(255, 204, 40, 0.65);
  background: linear-gradient(180deg, #3a3820, #1e1c10);
  color: var(--gold);
  cursor: pointer;
  box-shadow:
    0 0 18px rgba(255, 204, 40, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}
.deck-chip-btn .deck-chip-lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.deck-chip-btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 26px rgba(255, 204, 40, 0.65);
}
.deck-chip-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.deck-chip-btn.on-cooldown {
  color: var(--slop-hot);
  border-color: rgba(255, 32, 144, 0.75);
  box-shadow: 0 0 22px rgba(255, 32, 144, 0.45);
}

.deck-lever {
  position: absolute;
  right: 12px;
  bottom: 22px;
  width: 44px;
  height: 112px;
  pointer-events: none;
}
.deck-lever .lever-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(90deg, #2a2a32, #151518);
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.65);
}
.deck-lever .lever-arm {
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 10px;
  height: 72px;
  margin-left: -5px;
  border-radius: 5px;
  background: linear-gradient(90deg, #555560, #8e8e98 45%, #3a3a44);
  transform-origin: bottom center;
  transform: rotate(-14deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.55);
}
.deck-lever .lever-knob {
  position: absolute;
  bottom: 88px;
  left: 50%;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  margin-bottom: -4px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #ff5560, #c00818 55%, #400810);
  box-shadow:
    0 0 18px rgba(255, 45, 55, 0.95),
    inset 0 -4px 8px rgba(0, 0, 0, 0.45);
  transform: rotate(-14deg);
  transform-origin: bottom center;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.slot-machine.spinning .deck-lever .lever-arm {
  transform: rotate(22deg);
}
.slot-machine.spinning .deck-lever .lever-knob {
  transform: rotate(22deg) translate(10px, 14px);
}

.machine-result.machine-ticker {
  padding: 0;
  overflow: hidden;
  min-height: 44px;
  border-radius: 8px;
  border: 2px solid rgba(180, 255, 80, 0.65);
  background: rgba(0, 8, 4, 0.92);
  box-shadow:
    0 0 18px rgba(130, 255, 60, 0.35),
    inset 0 0 20px rgba(0, 40, 10, 0.35);
  display: block;
  width: 100%;
}
.ticker-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ticker-track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: tickerScroll 14s linear infinite;
}
.ticker-chunk {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #b8ff55;
  text-shadow: 0 0 8px rgba(130, 255, 80, 0.65);
  padding: 12px 0;
}
.ticker-sep {
  color: rgba(130, 255, 80, 0.35);
  padding: 0 10px;
}

.machine-result.machine-ticker.spinning .ticker-chunk {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 204, 40, 0.65);
  animation: tickerGlow 0.9s ease-in-out infinite;
}
.machine-result.machine-ticker.win .ticker-chunk {
  color: var(--lime);
}
.machine-result.machine-ticker.big-win .ticker-chunk,
.machine-result.machine-ticker.jackpot .ticker-chunk {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 204, 40, 0.85);
}
.machine-result.machine-ticker.jackpot .ticker-chunk {
  animation: tickerGlow 0.65s ease-in-out infinite;
}
.machine-result.machine-ticker.lose .ticker-chunk {
  color: var(--red);
  text-shadow: 0 0 8px rgba(255, 60, 90, 0.55);
}
.machine-result.machine-ticker.flash .ticker-chunk {
  color: var(--gold);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes tickerGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
@keyframes cabinetNeonHum {
  0%, 100% { filter: brightness(1); }
  48% { filter: brightness(1.03); }
  52% { filter: brightness(0.97); }
}
@keyframes rimPulse {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .slot-machine { animation: none; }
  .screen-neon-rim { animation: none; }
  .ticker-track { animation: none; }
  .casino-marquee .marquee-bar { animation: none; }
  .slot-machine.spinning .machine-frame { animation: none; }
  .slot-machine.spinning .reel-window { filter: none !important; }
  .deck-lever .lever-arm,
  .deck-lever .lever-knob { transition: none; }
  .slot-machine.spinning .deck-lever .lever-arm { transform: rotate(-14deg); }
  .slot-machine.spinning .deck-lever .lever-knob { transform: rotate(-14deg); }
}

.machine-bulbs {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  flex-shrink: 0;
}
.machine-bulbs span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--slop-hot) 45%, #5a1040 100%);
  box-shadow: 0 0 10px var(--slop-hot), 0 0 3px #fff;
  animation: bulbChase 1.8s ease-in-out infinite;
}
.machine-bulbs span:nth-child(2n) {
  background: radial-gradient(circle at 30% 30%, #fff, var(--cyan) 45%, #084050 100%);
  box-shadow: 0 0 10px var(--cyan);
}
.machine-bulbs span:nth-child(3n) {
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold) 45%, #8a5a08 100%);
  box-shadow: 0 0 10px var(--gold);
}
.machine-bulbs span:nth-child(1) { animation-delay: 0s; }
.machine-bulbs span:nth-child(2) { animation-delay: 0.12s; }
.machine-bulbs span:nth-child(3) { animation-delay: 0.24s; }
.machine-bulbs span:nth-child(4) { animation-delay: 0.36s; }
.machine-bulbs span:nth-child(5) { animation-delay: 0.48s; }
.machine-bulbs span:nth-child(6) { animation-delay: 0.6s; }
.machine-bulbs span:nth-child(7) { animation-delay: 0.72s; }
.machine-bulbs span:nth-child(8) { animation-delay: 0.84s; }
.machine-bulbs span:nth-child(9) { animation-delay: 0.96s; }
.machine-bulbs span:nth-child(10) { animation-delay: 1.08s; }
@keyframes bulbChase {
  0%, 100% { opacity: 0.45; transform: scale(0.88); filter: brightness(0.85); }
  35% { opacity: 1; transform: scale(1.12); filter: brightness(1.25); }
  70% { opacity: 0.65; transform: scale(0.95); }
}

.machine-frame {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 14px 18px;
  margin-top: 0;
  background: linear-gradient(180deg, #120818, #06060c);
  border: 2px solid rgba(255, 32, 144, 0.35);
  border-radius: 12px;
  box-shadow: inset 0 4px 22px rgba(0, 0, 0, 0.85);
  width: 100%;
  max-width: none;
}

.reel-window {
  width: 100%;
  height: 130px;
  overflow: hidden;
  background: linear-gradient(180deg, #030305, #101018 50%, #030305);
  border: 2px solid rgba(255, 32, 144, 0.55);
  border-radius: 10px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 224, 255, 0.12),
    inset 0 8px 14px rgba(0, 0, 0, 0.88);
  position: relative;
  transition: filter 0.25s ease;
}
.slot-machine.spinning .reel-window {
  filter: blur(3px) saturate(1.15);
}
.reel-window::before, .reel-window::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 22px;
  pointer-events: none;
  z-index: 2;
}
.reel-window::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
}
.reel-window::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
}

.reel-strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.reel-sym {
  height: 130px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #0a0a14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.reel-sym canvas.reel-art {
  width: 110px;
  height: 110px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  border-radius: 4px;
}
.reel-tier {
  position: absolute;
  left: 10px; bottom: 8px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 1.2px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
}
.tier-COMMON    { color: #d5d5d5; border-color: rgba(255, 255, 255, 0.2); }
.tier-RARE      { color: var(--cyan);     border-color: rgba(0, 224, 255, 0.5); text-shadow: 0 0 6px rgba(0, 224, 255, 0.6); }
.tier-EPIC      { color: var(--slop-3);   border-color: rgba(168, 85, 247, 0.6); text-shadow: 0 0 6px rgba(168, 85, 247, 0.7); }
.tier-LEGENDARY { color: var(--gold);     border-color: rgba(255, 204, 40, 0.7); text-shadow: 0 0 8px rgba(255, 204, 40, 0.7); }
.tier-MYTHIC    { color: var(--slop-hot); border-color: rgba(255, 32, 144, 0.8); text-shadow: 0 0 8px rgba(255, 32, 144, 0.8); }

.tier-bg-COMMON    { background: radial-gradient(circle at 50% 45%, rgba(120, 120, 140, 0.15), #0a0a14 65%); }
.tier-bg-RARE      { background: radial-gradient(circle at 50% 45%, rgba(0, 224, 255, 0.18), #0a0a14 65%); }
.tier-bg-EPIC      { background: radial-gradient(circle at 50% 45%, rgba(168, 85, 247, 0.22), #0a0a14 65%); }
.tier-bg-LEGENDARY { background: radial-gradient(circle at 50% 45%, rgba(255, 204, 40, 0.28), #0a0a14 65%); }
.tier-bg-MYTHIC    { background: radial-gradient(circle at 50% 45%, rgba(255, 32, 144, 0.3), #0a0a14 65%); }

.win-line {
  position: absolute;
  top: calc(50% - 1px);
  left: 6px; right: 6px;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 204, 40, 0.05) 8%, var(--slop-hot) 50%, rgba(255, 204, 40, 0.05) 92%, transparent 100%);
  box-shadow: 0 0 18px rgba(255, 32, 144, 0.65);
  pointer-events: none;
  z-index: 3;
  margin-top: 61px;
}

.machine-result:not(.machine-ticker) {
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.machine-result:not(.machine-ticker).spinning { color: var(--gold); animation: pulse 0.8s ease-in-out infinite; }
.machine-result:not(.machine-ticker).win      { color: var(--lime); text-shadow: 0 0 8px var(--lime); border-color: var(--lime); }
.machine-result:not(.machine-ticker).big-win  { color: var(--gold); text-shadow: 0 0 12px var(--gold); border-color: var(--gold); }
.machine-result:not(.machine-ticker).jackpot  { color: var(--slop-hot); text-shadow: 0 0 14px var(--slop-hot); border-color: var(--slop-hot); animation: pulse 0.6s ease-in-out infinite; }
.machine-result:not(.machine-ticker).lose     { color: var(--red); border-color: rgba(255, 34, 68, 0.4); }
.machine-result:not(.machine-ticker).flash    { color: var(--gold); }

.machine-controls {
  display: flex;
  gap: 10px;
  width: 100%;
}
.machine-controls .spin-btn {
  flex: 1;
  font-size: 16px;
  padding: 14px 18px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold), var(--slop-hot));
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 24px rgba(255, 204, 40, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.machine-controls .spin-btn .spin-emoji {
  font-size: 34px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 6px rgba(255, 32, 144, 0.55));
  animation: spinIconPulse 1.4s ease-in-out infinite;
}
.machine-controls .spin-btn .spin-label {
  font-family: var(--ff-display);
  letter-spacing: 2px;
}
@keyframes spinIconPulse {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 6px rgba(255, 32, 144, 0.55)); }
  50%      { transform: scale(1.08) rotate(-3deg); filter: drop-shadow(0 0 14px rgba(255, 204, 40, 0.85)); }
}
.machine-controls .spin-btn:hover:not(:disabled) { box-shadow: 0 0 38px rgba(255, 204, 40, 0.6); transform: translateY(-2px); }
.machine-controls .spin-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.machine-controls .btn-ghost { white-space: nowrap; font-variant-numeric: tabular-nums; }
.machine-controls .btn-ghost.on-cooldown {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(255, 204, 40, 0.35);
}

/* big standalone casino marquee at the top of the slot machine */
.casino-marquee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
  padding: 10px 14px 14px;
  border-radius: 10px;
  background: radial-gradient(ellipse at center, rgba(255, 204, 40, 0.18), transparent 70%);
  position: relative;
}
.casino-marquee .marquee-bar {
  width: min(340px, 72vw);
  height: 10px;
  margin-top: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff6a00, #ffb040 45%, #ff8500);
  box-shadow:
    0 0 18px rgba(255, 140, 40, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: marqueeBarPulse 2.8s ease-in-out infinite;
}
@keyframes marqueeBarPulse {
  0%, 100% { opacity: 0.92; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.12); }
}
.casino-marquee .marquee-icon {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 0 18px rgba(255, 204, 40, 0.6)) drop-shadow(0 0 32px rgba(255, 32, 144, 0.4));
  animation: marqueeBounce 2.4s ease-in-out infinite;
}
.casino-marquee .marquee-text {
  font-family: var(--ff-display);
  font-size: 26px;
  letter-spacing: 5px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--slop-hot) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 32, 144, 0.5));
  margin-top: 4px;
}
.casino-marquee .marquee-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--ink-muted);
  text-transform: uppercase;
}
@keyframes marqueeBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-4px) rotate(-4deg); }
}
@media (max-width: 600px) {
  .casino-marquee .marquee-icon { font-size: 56px; }
  .casino-marquee .marquee-text { font-size: 20px; letter-spacing: 3px; }
  .deck-pull .spin-emoji { font-size: 24px; }
  .deck-row { flex-wrap: wrap; gap: 10px; }
}

#wallet-btn.pulse {
  animation: walletPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(217, 70, 239, 0.5);
}
@keyframes walletPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(217, 70, 239, 0.4); }
  50%      { box-shadow: 0 0 32px rgba(217, 70, 239, 0.8); }
}

.slot-machine.spinning .machine-frame {
  animation: machineShake 0.08s linear infinite;
}
@keyframes machineShake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-1px); }
  75%      { transform: translateX(1px); }
}

.casino-side { display: flex; flex-direction: column; gap: 14px; }

.odds-note {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.5px;
  margin: -4px 0 10px;
  line-height: 1.5;
}
.odds-note strong { color: var(--gold); }
.odds-sym {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 1px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}
.odds-sym.sym-common    { color: #ddd; }
.odds-sym.sym-rare      { color: var(--cyan);     text-shadow: 0 0 6px rgba(0, 224, 255, 0.4); }
.odds-sym.sym-epic      { color: var(--slop-3);   text-shadow: 0 0 6px rgba(168, 85, 247, 0.5); }
.odds-sym.sym-legendary { color: var(--gold);     text-shadow: 0 0 8px rgba(255, 204, 40, 0.5); }
.odds-sym.sym-mythic    { color: var(--slop-hot); text-shadow: 0 0 8px rgba(255, 32, 144, 0.6); }
.odds-sym.sym-jackpot {
  background: linear-gradient(135deg, #ffcc28 0%, #ff2090 45%, #00e0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px var(--slop-hot));
}

.pool-card {
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 204, 40, 0.08), rgba(255, 32, 144, 0.05));
  border: 1px solid var(--gold);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.pool-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 204, 40, 0.2), transparent);
  animation: poolShine 3.5s linear infinite;
  pointer-events: none;
}
@keyframes poolShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.pool-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 6px var(--gold);
}
.pool-value {
  font-family: var(--ff-display);
  font-size: 38px;
  color: var(--gold);
  text-shadow: 0 0 16px var(--gold);
  line-height: 1.1;
  margin: 6px 0;
  font-variant-numeric: tabular-nums;
  word-break: break-all;
}
.pool-sub {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pool-feeds {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10.5px;
  letter-spacing: 0.5px;
  color: var(--ink-dim);
  font-family: var(--ff-mono);
}
.pool-feeds span { padding-left: 4px; border-left: 2px solid var(--slop); }

.odds-card, .spin-history {
  padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.odds-card h4, .spin-history h4 {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--slop-3);
  font-weight: 800;
  text-transform: uppercase;
}
.odds-table { width: 100%; border-collapse: collapse; font-size: 11.5px; font-family: var(--ff-mono); }
.odds-table th {
  text-align: left;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink-dim);
  text-transform: uppercase;
  padding: 4px 6px;
  border-bottom: 1px solid var(--line);
}
.odds-table td {
  padding: 6px;
  border-bottom: 1px dashed var(--line);
  letter-spacing: 0.5px;
}
.odds-table tr:last-child td { border-bottom: none; }
.odds-num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-weight: 700;
  font-size: 11px;
}
.odds-table-rarity th:not(:first-child) { text-align: right; }

/* tier pills in the paytable + recent pulls */
.tier-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--ff-mono);
  border: 1px solid currentColor;
}
.tier-pill.tier-COMMON    { color: #ddd; background: rgba(255, 255, 255, 0.04); }
.tier-pill.tier-RARE      { color: var(--cyan);     background: rgba(0, 224, 255, 0.08);   text-shadow: 0 0 4px rgba(0, 224, 255, 0.4); }
.tier-pill.tier-EPIC      { color: var(--slop-3);   background: rgba(168, 85, 247, 0.1);   text-shadow: 0 0 4px rgba(168, 85, 247, 0.5); }
.tier-pill.tier-LEGENDARY { color: var(--gold);     background: rgba(255, 204, 40, 0.08);  text-shadow: 0 0 5px rgba(255, 204, 40, 0.55); }
.tier-pill.tier-MYTHIC    { color: var(--slop-hot); background: rgba(255, 32, 144, 0.12);  text-shadow: 0 0 6px rgba(255, 32, 144, 0.6); animation: mythicShimmer 2s ease-in-out infinite; }
@keyframes mythicShimmer { 0%, 100% { filter: drop-shadow(0 0 2px var(--slop-hot)); } 50% { filter: drop-shadow(0 0 8px var(--gold)); } }

.tier-row-COMMON    td.odds-num { color: #ddd; }
.tier-row-RARE      td.odds-num { color: var(--cyan); }
.tier-row-EPIC      td.odds-num { color: var(--slop-3); }
.tier-row-LEGENDARY td.odds-num { color: var(--gold); text-shadow: 0 0 4px rgba(255, 204, 40, 0.35); }
.tier-row-MYTHIC    td.odds-num { color: var(--slop-hot); text-shadow: 0 0 4px var(--slop-hot); font-weight: 800; }

.spin-history ul { list-style: none; padding: 0; margin: 0; }
.spin-history li {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 8px;
  padding: 5px 0;
  font-size: 10.5px;
  letter-spacing: 0.5px;
  font-family: var(--ff-mono);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.spin-history li:last-child { border-bottom: none; }
.sh-when { color: var(--ink-dim); font-size: 9px; }
.sh-who { color: var(--ink-muted); }
.sh-result { font-weight: 700; padding: 1px 5px; border-radius: 3px; font-size: 9.5px; }
.sh-result.common  { color: var(--ink-dim); background: rgba(255, 255, 255, 0.04); }
.sh-result.win     { color: var(--lime); background: rgba(170, 255, 0, 0.1); }
.sh-result.jackpot { color: var(--slop-hot); background: rgba(255, 32, 144, 0.15); text-shadow: 0 0 4px var(--slop-hot); }
.sh-amt { font-variant-numeric: tabular-nums; text-align: right; font-size: 9.5px; font-weight: 800; letter-spacing: 1px; }
.sh-amt.top-COMMON    { color: #ddd; }
.sh-amt.top-RARE      { color: var(--cyan); }
.sh-amt.top-EPIC      { color: var(--slop-3); }
.sh-amt.top-LEGENDARY { color: var(--gold); text-shadow: 0 0 4px rgba(255, 204, 40, 0.35); }
.sh-amt.top-MYTHIC    { color: var(--slop-hot); text-shadow: 0 0 4px var(--slop-hot); }

@media (max-width: 900px) {
  .casino-layout { grid-template-columns: 1fr; }
  .machine-frame { max-width: 100%; }
  .reel-sym canvas.reel-art { width: 90px; height: 90px; }
}

/* =================== ACHIEVEMENTS =================== */
.achievements { max-width: 1300px; margin: 0 auto; padding: 30px 28px 60px; }

.ach-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 24px 0 22px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 204, 40, 0.06), rgba(192, 38, 211, 0.06));
  border: 1px solid var(--gold);
  border-radius: 10px;
}
.ach-sum-card { display: flex; flex-direction: column; gap: 3px; }
.ach-sum-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.ach-sum-value {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--slop-3);
  text-shadow: 0 0 10px var(--slop);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ach-sum-value.gold-text {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold);
}
.gold-text { color: var(--gold) !important; }

.ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  grid-auto-rows: 1fr;
}
.ach-tile {
  position: relative;
  padding: 14px 14px 12px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.55;
  height: 100%;
}
.ach-tile .ach-desc { flex-shrink: 0; }
.ach-tile .ach-row2 { margin-top: auto; padding-top: 6px; }
.ach-tile.unlocked { opacity: 1; }
.ach-tile.unlocked:hover {
  transform: translateY(-3px);
  border-color: var(--slop);
  box-shadow: 0 0 18px rgba(192, 38, 211, 0.25);
}
.ach-tile.claimed {
  border-color: var(--lime);
  background: linear-gradient(135deg, rgba(170, 255, 0, 0.04), var(--bg-1));
}
.ach-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ach-preview {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.ach-art {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
.ach-canvas {
  width: 96px;
  height: 96px;
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a10;
  filter: saturate(0.6) brightness(0.85);
  transition: filter 220ms ease, transform 220ms ease;
}
.ach-tile.unlocked .ach-canvas {
  filter: saturate(1.15) brightness(1.05) drop-shadow(0 0 12px rgba(217, 70, 239, 0.5));
  border-color: rgba(217, 70, 239, 0.4);
}
.ach-tile.claimed .ach-canvas {
  filter: saturate(1.1) brightness(1.05) drop-shadow(0 0 12px rgba(170, 255, 0, 0.45));
  border-color: rgba(170, 255, 0, 0.45);
}
.ach-tile:hover .ach-canvas { transform: scale(1.04); }
.ach-icon {
  font-size: 22px;
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold);
  line-height: 1;
}
.ach-tile.unlocked .ach-icon { color: var(--slop-3); text-shadow: 0 0 10px var(--slop); }
.ach-tile.claimed .ach-icon { color: var(--lime); text-shadow: 0 0 10px var(--lime); }
.ach-cat {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--ink-dim);
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(8, 8, 12, 0.92);
}
.ach-title {
  margin: 0;
  font-family: var(--ff-graffiti);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.ach-desc {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-muted);
}
.ach-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 4px 0 2px;
}
.ach-chips .chip {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.6px;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  background: var(--bg-0);
  text-transform: uppercase;
  white-space: nowrap;
}
.ach-chips .chip-trait { color: var(--cyan); border-color: rgba(0, 224, 255, 0.3); }
.ach-chips .chip-level { color: var(--gold); border-color: rgba(255, 204, 40, 0.5); }
.ach-tile.unlocked .ach-chips .chip { background: rgba(192, 38, 211, 0.08); border-color: rgba(217, 70, 239, 0.4); color: var(--slop-3); }
.ach-tile.claimed  .ach-chips .chip { background: rgba(170, 255, 0, 0.06); border-color: rgba(170, 255, 0, 0.4); color: var(--lime); }

/* Tier-coded card borders & badges */
.ach-tile.rcp-tier-I    { border-color: rgba(0, 224, 255, 0.22); }
.ach-tile.rcp-tier-II   { border-color: rgba(168, 85, 247, 0.28); }
.ach-tile.rcp-tier-III  { border-color: rgba(255, 204, 40, 0.32); box-shadow: inset 0 0 0 1px rgba(255, 204, 40, 0.08); }
.ach-tile.rcp-tier-IV   { border-color: rgba(255, 32, 144, 0.45); box-shadow: 0 0 18px rgba(255, 32, 144, 0.2), inset 0 0 0 1px rgba(255, 32, 144, 0.1); }
.ach-tile.rcp-tier-META { border-color: rgba(170, 255, 0, 0.28); }

.ach-tile.unlocked.rcp-tier-IV  { box-shadow: 0 0 24px rgba(255, 32, 144, 0.4); }
.ach-tile.unlocked.rcp-tier-III { box-shadow: 0 0 18px rgba(255, 204, 40, 0.3); }

.ach-tile.rcp-tier-I    .ach-cat { color: var(--cyan); border-color: rgba(0, 224, 255, 0.35); }
.ach-tile.rcp-tier-II   .ach-cat { color: var(--slop-3); border-color: rgba(168, 85, 247, 0.4); }
.ach-tile.rcp-tier-III  .ach-cat { color: var(--gold); border-color: rgba(255, 204, 40, 0.55); }
.ach-tile.rcp-tier-IV   .ach-cat { color: var(--slop-hot); border-color: rgba(255, 32, 144, 0.55); text-shadow: 0 0 6px var(--slop-hot); }
.ach-tile.rcp-tier-META .ach-cat { color: var(--lime); border-color: rgba(170, 255, 0, 0.4); }

.ach-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.ach-reward {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 5px var(--gold);
  letter-spacing: 0.5px;
}
.ach-status {
  font-size: 9.5px;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-weight: 800;
}
.ach-status.locked { color: var(--ink-dim); background: var(--bg-2); }
.ach-status.claimed { color: var(--lime); background: rgba(170, 255, 0, 0.1); border: 1px solid var(--lime); }
.ach-claim {
  background: linear-gradient(135deg, var(--slop), var(--slop-2));
  border: 1px solid var(--slop-3);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.35);
  animation: claimPulse 1.6s ease-in-out infinite;
}
.ach-claim:hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(217, 70, 239, 0.55); }
@keyframes claimPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(217, 70, 239, 0.35); }
  50%      { box-shadow: 0 0 22px rgba(217, 70, 239, 0.6); }
}

@media (max-width: 900px) {
  .ach-summary { grid-template-columns: repeat(2, 1fr); }
}

/* =================== TOKENOMICS FLYWHEEL =================== */
.flywheel {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.05), rgba(255, 204, 40, 0.04));
  border: 1px solid var(--slop);
  border-radius: 12px;
}
.flywheel h3 {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--ff-graffiti);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px var(--gold);
}
.flywheel-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.fw-step {
  flex: 1;
  min-width: 160px;
  padding: 14px;
  background: var(--bg-1);
  border: 1px solid var(--slop);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.fw-num {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--slop-3);
  text-shadow: 0 0 10px var(--slop);
  line-height: 1;
}
.fw-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}
.fw-sub {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.4;
}
.fw-arrow {
  align-self: center;
  font-size: 22px;
  color: var(--slop-3);
  text-shadow: 0 0 8px var(--slop);
}
@media (max-width: 900px) { .fw-arrow { transform: rotate(90deg); } }

.seg-buyback { background: linear-gradient(135deg, var(--gold), var(--slop-hot)); }
.dot-buyback { background: var(--gold); }

/* =================== FLOATING WINS FEED =================== */
.wins-feed-float {
  position: fixed;
  bottom: 14px;
  right: 14px;
  width: 320px;
  max-width: calc(100vw - 28px);
  z-index: 50;
  padding: 12px 14px;
  background: rgba(15, 10, 24, 0.9);
  border: 1px solid var(--slop);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), 0 0 18px rgba(192, 38, 211, 0.18);
  pointer-events: none;
}
.wins-feed-float .wins-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}
.wins-feed-float .wins-title { font-size: 11px; }
.wins-feed-float .wins-sub { font-size: 9px; }
.wins-feed-float .wins-list { list-style: none; padding: 0; margin: 0; max-height: 180px; overflow: hidden; }
.wins-feed-float .wins-list li {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 5px 0;
  font-size: 10.5px;
  letter-spacing: 0.3px;
  font-family: var(--ff-mono);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.wins-feed-float .wins-list li:last-child { border-bottom: none; }
.wins-feed-float .w-amt.loss { color: var(--red); }

@media (max-width: 700px) {
  .wins-feed-float { position: static; width: auto; margin: 16px; }
}

/* =================== WINS FEED =================== */
.wins-feed {
  margin: 30px auto 0;
  max-width: 720px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.wins-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 18px;
  background: rgba(192, 38, 211, 0.08);
  border-bottom: 1px solid var(--line);
}
.wins-title { font-size: 11px; letter-spacing: 2.5px; color: var(--slop-3); }
.wins-sub   { font-size: 10px; color: var(--ink-muted); letter-spacing: 1px; }
.wins-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow: hidden;
}
.wins-list li {
  padding: 9px 18px;
  font-size: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line-2);
  animation: winSlide 0.4s ease;
  color: var(--ink-dim);
}
.wins-list li:last-child { border-bottom: none; }
.wins-list .w-wallet { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.wins-list .w-action { color: var(--ink-muted); font-size: 11px; }
.wins-list .w-amt    { color: var(--gold); font-weight: 800; }
.wins-list .w-amt.jackpot { color: var(--slop-hot); text-shadow: 0 0 6px var(--slop-hot); }
@keyframes winSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reset-bal {
  background: transparent;
  color: var(--ink-muted);
  border: 1px dashed var(--line);
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-family: var(--ff-mono);
  margin-top: 4px;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.reset-bal:hover { color: var(--slop-3); border-color: var(--slop); }

/* =================== GALLERY =================== */
.gallery { max-width: 1400px; margin: 0 auto; padding: 0 28px 60px; }
.gallery-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.filter {
  padding: 8px 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 2px;
  background: var(--bg-1);
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.2s;
}
.filter:hover { color: var(--slop-3); border-color: var(--slop); }
.filter.active {
  background: var(--slop);
  color: #fff;
  border-color: var(--slop-3);
  box-shadow: 0 0 14px var(--slop);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.smob-tile {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.smob-tile:hover {
  transform: translateY(-4px);
  border-color: var(--slop);
  box-shadow: var(--shadow-glow);
}
.smob-tile canvas {
  width: 100%;
  aspect-ratio: 1;
  display: block;
}
.tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  font-size: 11px;
  border-top: 1px solid var(--line-2);
  letter-spacing: 1px;
}
.tile-id { color: var(--ink-dim); font-weight: 700; }
.tile-slop { color: var(--slop-3); }
.tile-tier {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.gallery-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 1px;
}

/* =================== TOKENOMICS =================== */
.tokenomics { max-width: 1300px; margin: 0 auto; padding: 0 28px 60px; }
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.token-card {
  padding: 26px 22px;
  background:
    radial-gradient(ellipse at top, rgba(192, 38, 211, 0.12), transparent 70%),
    var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.token-card:hover { border-color: var(--slop); transform: translateY(-3px); }
.token-label { font-size: 10px; letter-spacing: 2.5px; color: var(--ink-dim); text-transform: uppercase; }
.token-value {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--slop-3);
  letter-spacing: -1px;
  text-shadow: 0 0 16px rgba(217, 70, 239, 0.5);
  margin: 8px 0 6px;
}
.token-sub { font-size: 12px; color: var(--ink-muted); }

.token-bar {
  display: flex;
  height: 36px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  transition: filter 0.2s;
}
.seg-launch  { background: linear-gradient(135deg, #ffcc28, #c89930); color: #1a0d00; }
.seg-casino  { background: linear-gradient(135deg, var(--slop), var(--slop-2)); }
.seg-rewards { background: linear-gradient(135deg, #2a8aff, #1058a8); }
.seg:hover { filter: brightness(1.15); }

.token-legend {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--ink-dim);
  flex-wrap: wrap;
}
.token-legend .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.dot-launch  { background: var(--gold); }
.dot-casino  { background: var(--slop); }
.dot-rewards { background: #2a8aff; }

@media (max-width: 900px) { .tokenomics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .tokenomics-grid { grid-template-columns: 1fr; } }

/* spin fee flow card (80% burn / 20% pool) */
.spin-flow {
  margin: 0 0 36px;
  padding: 28px clamp(20px, 3vw, 36px) 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 140, 40, 0.35);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 100, 30, 0.18), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 224, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #14080c 0%, #06060c 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.55);
}
.spin-flow-head { text-align: center; margin-bottom: 18px; }
.spin-flow-pre {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #ff8a3a;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255, 140, 40, 0.55);
  border-radius: 3px;
  background: rgba(255, 100, 30, 0.08);
  margin-bottom: 12px;
}
.spin-flow-title {
  font-family: var(--ff-graffiti);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0 #000;
}
.spin-flow-sub {
  margin: 0 auto;
  max-width: 540px;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.6;
}
.spin-flow-bar {
  display: flex;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 18px 0 22px;
  background: rgba(0, 0, 0, 0.4);
}
.sf-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-family: var(--ff-mono);
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 13px;
  color: #fff;
  transition: filter 0.2s;
}
.sf-seg b { font-size: 16px; letter-spacing: 1px; }
.sf-seg i { font-style: normal; font-size: 11px; letter-spacing: 3px; opacity: 0.85; }
.sf-seg-burn {
  background: linear-gradient(135deg, #ff8a3a 0%, #ff3a3a 70%, #b01818 100%);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}
.sf-seg-pool {
  background: linear-gradient(135deg, #1a8aff 0%, #00b8d4 60%, #00e0ff 100%);
  color: #001220;
  text-shadow: none;
}
.sf-seg:hover { filter: brightness(1.1); }

.spin-flow-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sf-card {
  position: relative;
  padding: 22px 22px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf-card .sf-icon {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}
.sf-card .sf-pct {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.sf-card .sf-name {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.sf-card .sf-desc {
  margin: 6px 0 4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.sf-card .sf-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sf-card .sf-bullets li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  font-family: var(--ff-mono);
  color: var(--ink-dim);
  letter-spacing: 0.4px;
  line-height: 1.5;
}
.sf-card .sf-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.sf-card-burn {
  border-color: rgba(255, 140, 40, 0.55);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 100, 30, 0.16), transparent 55%),
    rgba(20, 8, 4, 0.7);
  box-shadow: 0 0 24px rgba(255, 100, 30, 0.12);
}
.sf-card-burn .sf-pct { color: #ff8a3a; text-shadow: 0 0 18px rgba(255, 140, 40, 0.55); }
.sf-card-burn .sf-name { color: #ffb070; }

.sf-card-pool {
  border-color: rgba(0, 224, 255, 0.45);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0, 180, 255, 0.16), transparent 55%),
    rgba(4, 10, 20, 0.7);
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.10);
}
.sf-card-pool .sf-pct { color: var(--cyan); text-shadow: 0 0 18px rgba(0, 224, 255, 0.55); }
.sf-card-pool .sf-name { color: var(--cyan); }

.spin-flow-foot {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.spin-flow-foot strong { color: var(--gold); }

@media (max-width: 720px) {
  .spin-flow-cards { grid-template-columns: 1fr; }
  .sf-card .sf-pct { font-size: 44px; }
  .sf-seg i { display: none; }
}

/* =================== ROADMAP =================== */
.roadmap { max-width: 900px; margin: 0 auto; padding: 0 28px 60px; }
.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.roadmap-list::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--slop), transparent);
}
.roadmap-list li {
  position: relative;
  padding: 18px 0 18px 50px;
  border-bottom: 1px dashed var(--line-2);
}
.roadmap-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 24px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--slop);
  box-shadow: 0 0 14px var(--slop), inset 0 0 6px #fff;
  border: 2px solid var(--bg-0);
}
.rm-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--slop-3);
  padding: 3px 8px;
  border: 1px solid var(--slop);
  border-radius: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.roadmap-list h4 {
  font-family: var(--ff-graffiti);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}
.roadmap-list p { color: var(--ink-dim); margin: 0; }

/* =================== FAQ =================== */
.faq { max-width: 800px; margin: 0 auto; padding: 0 28px 80px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-list details {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.faq-list details[open] { border-color: var(--slop); box-shadow: 0 0 14px rgba(192, 38, 211, 0.2); }
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--slop-3);
  font-size: 14px;
  text-transform: uppercase;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 22px;
  color: var(--slop);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { color: var(--ink-dim); margin: 12px 0 0; }

/* =================== FOOTER =================== */
.footer {
  border-top: 1px solid var(--slop);
  background: linear-gradient(180deg, transparent, rgba(192, 38, 211, 0.08));
  padding: 50px 0 30px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.foot-brand { display: flex; gap: 14px; align-items: center; }
.foot-brand img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(217, 70, 239, 0.4), 0 0 18px rgba(217, 70, 239, 0.35);
}
.foot-name {
  font-family: var(--ff-graffiti);
  font-size: 24px;
  color: var(--slop-3);
  text-shadow: 0 0 10px var(--slop);
}
.foot-tag { font-size: 11px; letter-spacing: 1px; color: var(--ink-muted); }
.foot-links { display: flex; flex-direction: column; gap: 6px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-dim); }
.foot-links a:hover { color: var(--slop-3); }
.foot-meta { display: flex; flex-direction: column; gap: 6px; font-size: 11px; color: var(--ink-muted); justify-self: end; text-align: right; }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; }
  .foot-meta { justify-self: start; text-align: left; }
}

/* =================== MODAL =================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; animation: fadeIn 0.2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.modal-body {
  position: relative;
  max-width: 720px;
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--slop);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 0 60px rgba(192, 38, 211, 0.4);
}
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: transparent;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 34px; height: 34px;
  font-size: 22px;
  line-height: 1;
}
.modal-close:hover { color: var(--slop-3); border-color: var(--slop); }
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-head h3 {
  font-family: var(--ff-graffiti);
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}
.modal-tier {
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 2px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-2);
}
.modal-views {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.modal-views figure { margin: 0; text-align: center; }
.modal-canvas {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.modal-views figcaption {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-dim);
  margin-top: 8px;
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.modal-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 4px;
}
.ms-label { font-size: 9px; letter-spacing: 2px; color: var(--ink-muted); text-transform: uppercase; }
.ms-value { font-size: 14px; font-weight: 800; color: var(--slop-3); }

@media (max-width: 600px) {
  .modal-views { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =================== JACKPOT TOAST =================== */
.jackpot-toast {
  position: fixed;
  z-index: 200;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}
.jackpot-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.jt-inner {
  padding: 30px 50px;
  background:
    radial-gradient(ellipse at center, rgba(255, 32, 144, 0.3), transparent 70%),
    linear-gradient(135deg, #2a0d3a, #0d0820);
  border: 3px solid var(--slop-hot);
  border-radius: 16px;
  box-shadow: 0 0 80px var(--slop-hot), inset 0 0 30px rgba(255, 255, 255, 0.08);
  text-align: center;
  min-width: 280px;
}
.jt-burst {
  font-size: 28px;
  color: var(--gold);
  text-shadow: 0 0 14px var(--gold);
  letter-spacing: 12px;
  margin-bottom: 6px;
  animation: pulse 0.4s ease-in-out infinite;
}
.jt-title {
  font-family: var(--ff-graffiti);
  font-size: 56px;
  color: var(--slop-3);
  text-shadow: 0 0 24px var(--slop), 4px 4px 0 #000;
  letter-spacing: -1px;
  line-height: 1;
}
.jt-sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-top: 8px;
}
