/* ============================================================
   $JABULANI — PIXEL MASCOT BRAND SYSTEM
   Palette (sampled from official brand artwork):
     --sky-top     #0a1454  night-sky deep blue
     --sky-mid     #3d1a78  purple
     --sky-low     #c23b6e  magenta / sunset pink
     --sky-base    #e8732f  sunset orange (horizon)
     --green       #2ecc6a  flag green (lettering / badges)
     --gold        #f4b613  gold / yellow (lettering / coins)
     --red         #d4222c  flag red (lettering accent)
     --ink-black   #0a0a0a  badge background / outlines
     --white       #ffffff  text / ball body
   Type:
     Display (big)   — 'Pixelify Sans' (chunky pixel face, readable at size)
     Display (tiny)  — 'Press Start 2P' (true 8-bit, used sparingly for labels)
     Body             — 'Inter' (keeps paragraphs readable)
   ============================================================ */

:root {
  --sky-top: #0a1454;
  --sky-mid: #3d1a78;
  --sky-low: #c23b6e;
  --sky-base: #e8732f;

  --green: #2ecc6a;
  --gold: #f4b613;
  --gold2: #f2a73b;
  --red: #d4222c;
  --blue: #3ddcff;

  --ink: #0a0a0a;
  --ink-soft: #14122a;
  --white: #ffffff;
  --cream: #fff7e6;
  --muted: #cfd2e8;

  --pixel-border: 3px solid var(--ink);
  --pixel-radius: 10px;

  --font-pixel-lg: 'Pixelify Sans', 'Press Start 2P', monospace;
  --font-pixel-sm: 'Press Start 2P', monospace;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 38%, var(--sky-low) 68%, var(--sky-base) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: var(--font-pixel-lg);
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.2;
  margin: 0 0 44px;
  color: var(--white);
  text-shadow: 3px 3px 0 var(--ink);
}

/* ============ SKY DECOR ============ */
.sky-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 15%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 65% 8%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 85% 22%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 40% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 10% 40%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 92% 45%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 55% 18%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 30% 5%, rgba(255,255,255,0.6), transparent);
  background-repeat: no-repeat;
  opacity: 0.9;
  animation: twinkle 4s ease-in-out infinite;
}

.floodlight {
  position: absolute;
  top: -10%;
  width: 420px;
  height: 700px;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.16), transparent 65%);
  transform: rotate(8deg);
}

.fl-left { left: -8%; }
.fl-right { right: -8%; transform: rotate(-8deg); }

/* ============ LETTER COLOR UTILITIES ============ */
.w-gold { color: var(--gold); }
.w-green { color: var(--green); }
.w-gold2 { color: var(--gold2); }
.w-red { color: var(--red); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 20, 84, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
  transition: background 0.3s var(--ease);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.nav-ball { font-size: 22px; line-height: 1; }

.nav-word {
  font-family: var(--font-pixel-lg);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.is-active,
.nav-mobile a.is-active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 3px;
  background: var(--white);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 24px;
  background: var(--sky-top);
  border-bottom: 3px solid var(--ink);
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 61px);
  overflow-y: auto;
  z-index: 99;
}

.nav-mobile a {
  padding: 12px 4px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.nav-mobile .btn-pixel {
  margin-top: 12px;
  text-align: center;
  color: var(--ink);
  border-bottom: none;
}

.nav.is-open .nav-mobile { display: flex; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner > .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ PIXEL BUTTONS ============ */
.btn-pixel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--pixel-radius);
  border: var(--pixel-border);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.btn-pixel:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-pixel:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-pixel-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-pixel-green {
  background: var(--green);
  color: var(--ink);
}

.btn-pixel-outline {
  background: rgba(10, 10, 10, 0.55);
  color: var(--white);
}

/* ============ BADGE BOX (signature UI motif) ============ */
.badge-box {
  background: rgba(10, 10, 10, 0.78);
  border: var(--pixel-border);
  border-radius: var(--pixel-radius);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}

.badge-pill {
  display: inline-block;
  font-family: var(--font-pixel-sm);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: var(--gold);
  border: var(--pixel-border);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 110px 24px 70px;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Compact hero variant for sub-pages (no mascot stage) */
.hero-compact {
  padding: 130px 24px 56px;
}

.hero-compact .hero-inner {
  max-width: 820px;
}

.hero-compact .section-title {
  margin-bottom: 20px;
}

.hero-compact .hero-desc {
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-compact .hero-badges {
  margin-top: 8px;
}

.hero-logo {
  font-family: var(--font-pixel-lg);
  font-size: clamp(40px, 9vw, 84px);
  line-height: 1;
  margin: 0 0 14px;
  text-shadow: 4px 4px 0 var(--ink), -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.1s forwards;
}

.hero-slogan {
  font-family: var(--font-pixel-sm);
  font-size: clamp(10px, 1.8vw, 14px);
  letter-spacing: 0.04em;
  color: var(--gold);
  background: var(--ink);
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--pixel-radius);
  margin: 0 0 14px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.hero-meme-coin-tag {
  font-family: var(--font-pixel-sm);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--white);
  display: inline-block;
  padding: 9px 18px;
  border: var(--pixel-border);
  border-radius: var(--pixel-radius);
  margin: 0 0 28px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.4s forwards;
}

.badge-solana, .badge-pumpfun {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  min-width: 150px;
}

.badge-solana { border-color: var(--blue); }
.badge-pumpfun { border-color: var(--green); }

.badge-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.badge-value {
  font-family: var(--font-pixel-lg);
  font-size: 18px;
}

.badge-solana .badge-value { color: var(--blue); }
.badge-pumpfun .badge-value { color: var(--green); }

/* ============ MASCOT STAGE ============ */
.mascot-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 28px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,182,19,0.35), rgba(46,204,106,0.2) 55%, transparent 75%);
  filter: blur(18px);
  animation: glowPulse 4s ease-in-out infinite;
}

.mascot-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: floatBall 5s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
}

.mascot-fallback {
  display: none;
  position: relative;
  z-index: 2;
  width: 72%;
  height: 72%;
  align-items: center;
  justify-content: center;
  animation: floatBall 5s ease-in-out infinite;
}

.pixel-ball {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--ink);
  box-shadow: inset -14px -14px 0 rgba(0,0,0,0.08), 6px 8px 0 rgba(0,0,0,0.35);
  overflow: hidden;
}

.pixel-ball-face {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56%;
  height: 30%;
  z-index: 4;
}

.pixel-eye {
  position: absolute;
  width: 16%;
  height: 38%;
  background: var(--ink);
  border-radius: 3px;
  top: 0;
}

.pixel-eye-l { left: 14%; }
.pixel-eye-r { right: 14%; }

.pixel-mouth {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 30%;
  background: var(--ink);
  border-radius: 0 0 50px 50px;
}

.pixel-panel {
  position: absolute;
  background: var(--green);
  opacity: 0.55;
  z-index: 1;
}

.pp-1 { width: 26%; height: 22%; top: 4%; left: 4%; border-radius: 0 0 70% 0; background: var(--gold); }
.pp-2 { width: 24%; height: 20%; top: 4%; right: 4%; border-radius: 0 0 0 70%; background: var(--red); }
.pp-3 { width: 22%; height: 18%; bottom: 4%; left: 39%; border-radius: 70% 70% 0 0; background: var(--green); }

.coin {
  position: absolute;
  font-family: var(--font-pixel-sm);
  font-size: 7px;
  color: var(--ink);
  background: radial-gradient(circle at 35% 30%, #ffe27a, var(--gold) 70%);
  border: 3px solid var(--ink);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  z-index: 3;
  padding: 4px;
}

.coin-1 { top: 8%; left: -4%; animation: floatCoin 4.5s ease-in-out infinite; }
.coin-2 { top: 55%; right: -6%; animation: floatCoin 5.2s ease-in-out infinite 0.4s; }
.coin-3 { bottom: 4%; left: 2%; animation: floatCoin 4.8s ease-in-out infinite 0.8s; width: 52px; height: 52px; font-size: 6px; }
.coin-4 { top: 2%; right: 4%; animation: floatCoin 5s ease-in-out infinite 1.2s; width: 52px; height: 52px; font-size: 6px; }

@media (max-width: 600px) {
  .mascot-stage { max-width: 280px; }
  .coin { width: 48px; height: 48px; font-size: 6px; }
  .coin-3, .coin-4 { width: 40px; height: 40px; font-size: 5px; }
}

.hero-plate {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  border: var(--pixel-border);
  border-radius: var(--pixel-radius);
  padding: 10px 28px;
  margin-bottom: 28px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}

.plate-title {
  font-family: var(--font-pixel-lg);
  font-size: 22px;
  color: var(--ink);
}

.plate-sub {
  font-family: var(--font-pixel-sm);
  font-size: 9px;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.hero-desc {
  color: var(--cream);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-desc strong { color: var(--gold); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.legacy-ctas {
  margin-top: 12px;
}

.hero-contract {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,10,0.7);
  border: var(--pixel-border);
  border-radius: 100px;
  padding: 8px 8px 8px 16px;
  font-size: 13px;
  max-width: 100%;
  margin-bottom: 36px;
}

.hero-contract-label {
  font-family: var(--font-pixel-sm);
  font-size: 9px;
  color: var(--gold);
  flex-shrink: 0;
}

#contractAddress {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.copy-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 7px 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.copy-btn:hover { transform: scale(1.05); }
.copy-btn.copied { background: var(--green); }

.hero-traits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.trait-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,10,0.7);
  border: 2px solid var(--green);
  border-radius: var(--pixel-radius);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}

.trait-icon { font-size: 14px; }

/* ============ TICKER STRIP ============ */
.ticker-strip {
  position: relative;
  z-index: 2;
  background: var(--ink);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 14px;
  font-family: var(--font-pixel-sm);
  font-size: 12px;
  color: var(--white);
  animation: scrollTicker 22s linear infinite;
}

.ticker-dot { color: var(--gold); }
.t-blue { color: var(--blue); }
.t-green { color: var(--green); }
.t-gold { color: var(--gold); }

/* ============ ABOUT ============ */
.about { padding: 90px 0; position: relative; z-index: 2; }

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-copy p {
  color: var(--cream);
  font-size: 17px;
  margin: 0 0 20px;
}

.about-copy strong { color: var(--gold); }

.stat-plate {
  background: rgba(10,10,10,0.78);
  border: var(--pixel-border);
  border-radius: var(--pixel-radius);
  padding: 26px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-row:first-child { padding-top: 0; }

.stat-label {
  font-family: var(--font-pixel-sm);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.stat-value {
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
}

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============ HIGHLIGHTS ============ */
.highlights { padding: 90px 0; position: relative; z-index: 2; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.badge-card {
  padding: 28px 24px;
  transition: transform 0.2s var(--ease);
}

.badge-card:hover { transform: translateY(-4px); }

.badge-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 16px;
  border: 2px solid var(--ink);
}

.badge-card h3 {
  font-family: var(--font-pixel-lg);
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--white);
}

.badge-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

/* ============ ROADMAP ============ */
.roadmap { padding: 90px 0; position: relative; z-index: 2; }

.timeline { position: relative; padding-left: 28px; }

.timeline-line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 4px;
  background: repeating-linear-gradient(180deg, var(--gold) 0 10px, var(--green) 10px 20px);
  border-radius: 4px;
}

.timeline-item { position: relative; padding-bottom: 36px; padding-left: 26px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ink);
}

.timeline-marker {
  display: inline-block;
  font-family: var(--font-pixel-sm);
  font-size: 10px;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.timeline-card { padding: 18px 22px; }

.timeline-card h3 {
  font-family: var(--font-pixel-lg);
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--white);
}

.timeline-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
  max-width: 560px;
}

/* ============ LINKS ============ */
.links { padding: 90px 0; position: relative; z-index: 2; }

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.link-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s var(--ease);
}

.link-card:hover { transform: translateY(-3px); }

.link-icon { font-size: 22px; margin-bottom: 6px; }

.link-name {
  font-family: var(--font-pixel-lg);
  font-size: 14px;
  color: var(--white);
}

.link-sub { font-size: 12.5px; color: var(--muted); }

@media (max-width: 980px) { .links-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .links-grid { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.footer {
  padding: 48px 0 36px;
  background: var(--ink);
  border-top: 3px solid var(--gold);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.footer-links a:hover { color: var(--gold); }

.footer-disclaimer {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
  padding: 18px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 10px;
}

.footer-disclaimer strong { color: var(--gold); }

.footer-copy {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 18px;
  opacity: 0.7;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.no-js .reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ KEYFRAMES ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatBall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes floatCoin {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes scrollTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
