/* ── RESET + VARS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --pink:    #FF6EB4;
  --pink-dk: #e0559a;
  --yellow:  #FFE600;
  --black:   #111111;
  --white:   #ffffff;
  --card-r:  12px;
  --border:  3px solid #111;
}

/* ── NON-SELECTABLE / NON-COPYABLE ZONES ─────────────────── */
/* Brand identity */
.nav-logo,
.badge,
.hero-title,
.hero-slogan,
/* Decorative chrome */
.float-label,
.ticker-track,
/* Visual art — mascots */
.mascot,
.mini-mascot,
.community-mascot,
/* Meme card display content */
.meme-cap,
.meme-card,
/* UI chrome */
.step-num,
.road-phase,
.road-title,
.road-status,
.what-icon,
.footer-logo,
.section-title {
  user-select: none;
  -webkit-user-select: none;
}

/* Block SVG drag-as-image; hover on parent card container still fires */
svg { pointer-events: none; }
.meme-card { pointer-events: auto; }

/* ── BASE ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--pink);
  color: var(--black);
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  overflow-x: hidden;
}

h1, h2, h3, .section-title, .hero-title, .nav-logo {
  font-family: 'Permanent Marker', cursive;
}

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
}

.nav-logo {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.4rem;
  color: var(--black);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--black); color: var(--yellow); }

.nav-btn {
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: var(--pink);
  color: var(--black);
  transition: background 0.15s, color 0.15s;
}
.nav-btn:hover { background: var(--black); color: var(--pink); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--pink);
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── HERO TEXT ── */
.hero-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-title {
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.9;
  color: var(--black);
  margin: 0;
  text-shadow: 5px 5px 0 rgba(0,0,0,0.15);
}

.hero-slogan {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--white);
  margin: 0;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.hero-copy {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.5;
}

/* ── BUTTONS ── */
@keyframes btn-shake {
  0%   { transform: translate(0,0) rotate(0deg); box-shadow: 3px 3px 0 var(--black); }
  20%  { transform: translate(-3px,-2px) rotate(-2deg); box-shadow: 6px 5px 0 var(--black); }
  40%  { transform: translate(2px,-3px) rotate(1.5deg); box-shadow: 4px 6px 0 var(--black); }
  60%  { transform: translate(-2px,-3px) rotate(-1deg); box-shadow: 5px 6px 0 var(--black); }
  80%  { transform: translate(1px,-2px) rotate(.5deg); box-shadow: 4px 5px 0 var(--black); }
  100% { transform: translate(-2px,-2px) rotate(0deg); box-shadow: 5px 5px 0 var(--black); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--card-r);
  border: var(--border);
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--black);
}
.btn:hover {
  animation: btn-shake 0.35s ease forwards;
}
.btn:active {
  animation: none;
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--black);
}

.btn-primary {
  background: var(--black);
  color: var(--yellow);
}
.btn-outline {
  background: var(--white);
  color: var(--black);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: 3px 3px 0 rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  box-shadow: 5px 5px 0 rgba(255,255,255,0.4);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.big-btn {
  margin-top: 32px;
  font-size: 1.15rem;
  padding: 14px 32px;
}

/* ── METERS ── */
.meters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.meter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meter-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.meter-label { color: var(--black); }
.meter-val   { color: var(--black); }
.aura-val    { color: var(--white); }

.meter-track {
  width: 100%;
  height: 14px;
  background: rgba(0,0,0,0.15);
  border-radius: 999px;
  border: 2px solid var(--black);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(.22,1,.36,1);
}

.cheek-fill { background: #ff4444; }
.aura-fill  { background: linear-gradient(90deg, #FFE600 0%, #fff 60%, #FFE600 100%); }

/* ── HERO VISUAL ── */
.hero-visual {
  flex: 0 0 auto;
  position: relative;
  width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-wrap {
  position: relative;
  z-index: 1;
  animation: mascot-bounce 2.2s ease-in-out infinite;
}

/* Big yellow halo — makes mascot pop in screenshots */
.mascot-wrap::before {
  content: '';
  position: absolute;
  inset: -24px -20px;
  background: var(--yellow);
  border-radius: 50% 50% 40% 40%;
  border: 3px solid var(--black);
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}

.mascot {
  width: 340px;
  height: auto;
  filter: drop-shadow(6px 8px 0px rgba(0,0,0,0.25));
}

@keyframes mascot-bounce {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1.5deg); }
}

/* Float labels — handwritten sticker style */
.float-label {
  position: absolute;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  padding: 7px 16px;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 3px 3px 0 var(--black);
  animation: float-wobble 3s ease-in-out infinite;
  z-index: 3;
}

.fl-1 { top: 28px;    left: 10px;  animation-delay: 0s; }
.fl-2 { top: 80px;   right: 10px; background: var(--yellow); animation-delay: 0.6s; }
.fl-3 { bottom: 130px; left: 10px; background: #98FF98; animation-delay: 1.1s; }
.fl-4 { bottom: 68px; right: 10px; background: var(--pink); color: var(--white); animation-delay: 0.3s; }

@keyframes float-wobble {
  0%, 100% { transform: rotate(var(--r, -4deg)) translateY(0); }
  50%       { transform: rotate(var(--r, -4deg)) translateY(-6px); }
}
.fl-1 { --r: -6deg; }
.fl-2 { --r: 5deg;  }
.fl-3 { --r: -3deg; }
.fl-4 { --r: 4deg;  }

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--black);
  color: var(--yellow);
  border-top: 3px solid var(--black);
  padding: 10px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 28px;
  animation: ticker-scroll 28s linear infinite;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

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

/* ── SECTIONS BASE ───────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 12px;
  line-height: 1.05;
  color: var(--black);
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
  margin: 0 0 36px;
}

/* ── WHAT IS ─────────────────────────────────────────────────── */
.what-section {
  background: var(--yellow);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.what-copy {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--black);
  margin: 0 0 40px;
}

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

.what-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--card-r);
  padding: 28px 20px;
  box-shadow: 4px 4px 0 var(--black);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.what-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

.what-icon      { font-size: 2.4rem; line-height: 1; }
.what-card-title { font-weight: 900; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.what-card-body  { font-size: 0.95rem; color: #555; font-weight: 700; line-height: 1.4; }

/* ── MEME CARDS ──────────────────────────────────────────────── */
.meme-section {
  background: var(--pink);
  text-align: center;
}

.meme-section .section-title,
.meme-section .section-sub {
  text-align: center;
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.meme-card {
  background: var(--bg, #ffffff);
  border: 3px solid var(--black);
  border-radius: var(--card-r);
  padding: 24px 20px 20px;
  box-shadow: 5px 5px 0 var(--black);
  transform: rotate(var(--rot, 0deg));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.meme-card:hover {
  transform: rotate(0deg) scale(1.07) translateY(-6px);
  box-shadow: 10px 10px 0 var(--black);
  z-index: 2;
  position: relative;
}

.mini-mascot {
  width: 110px;
  height: auto;
  display: block;
}

.meme-cap {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.1rem;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  color: var(--black);
}

/* ── TOKEN STATS ─────────────────────────────────────────────── */
.stats-section {
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

.stats-section .section-title { color: var(--yellow); }
.stats-section .section-sub   { color: rgba(255,255,255,0.5); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: #1a1a1a;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--card-r);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

.stat-val {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
  word-break: break-all;
}

.ca-val   { font-size: 0.7rem; word-break: break-all; font-family: 'Nunito', system-ui, sans-serif; font-weight: 800; letter-spacing: 0.02em; cursor: pointer; }

.funny-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.funny-stat {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fs-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); }
.fs-val   { font-weight: 900; font-size: 0.95rem; }
.fs-good  { color: #98FF98; }
.fs-bad   { color: #ff6b6b; }

/* ── HOW TO BUY ──────────────────────────────────────────────── */
.how-section {
  background: var(--white);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  box-shadow: 3px 3px 0 var(--black);
}

.step-text {
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.step-arrow {
  font-size: 1.5rem;
  font-weight: 900;
  padding-top: 14px;
  color: var(--black);
  flex-shrink: 0;
}

/* ── ROADMAP ─────────────────────────────────────────────────── */
.roadmap-section {
  background: var(--pink);
  text-align: center;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.road-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--card-r);
  padding: 24px 18px;
  box-shadow: 4px 4px 0 var(--black);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.road-phase  { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: #888; }
.road-title  { font-family: 'Permanent Marker', cursive; font-size: 1.3rem; color: var(--black); }
.road-body   { font-size: 0.88rem; font-weight: 700; color: #555; line-height: 1.5; }

.road-status {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  border: 2px solid transparent;
  width: fit-content;
}
.road-status.done    { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.road-status.inprog  { background: #fef9c3; color: #854d0e; border-color: #fef08a; }
.road-status.upcoming{ background: #f1f5f9; color: #475569; border-color: #cbd5e1; }

/* ── COMMUNITY ───────────────────────────────────────────────── */
.community-section {
  background: var(--pink-dk);
  padding: 80px 0;
}

.community-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}

.community-mascot {
  flex-shrink: 0;
  animation: mascot-bounce 2.5s ease-in-out infinite;
}

.community-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-copy {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.6;
}

.community-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-logo {
  font-size: 3rem;
  margin-bottom: 24px;
}

.disclaimer-box {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--card-r);
  padding: 24px 32px;
  max-width: 500px;
  margin: 0 auto 28px;
}

.disclaimer-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: var(--yellow);
  margin: 0 0 10px;
  letter-spacing: 0.05em;
}

.disclaimer-body {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-link {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.65);
  transition: border-color 0.15s, color 0.15s;
}
.footer-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    padding: 40px 24px 32px;
    gap: 32px;
    text-align: center;
  }

  .hero-text { align-items: center; }
  .badge     { align-self: center; }
  .hero-btns { justify-content: center; }

  .hero-visual {
    width: 300px;
  }

  .mascot { width: 240px; }

  .mascot-wrap::before { inset: -14px -12px; }

  .what-cards     { grid-template-columns: 1fr 1fr; }
  .meme-grid      { grid-template-columns: 1fr 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .funny-stats    { grid-template-columns: 1fr 1fr; }
  .roadmap-grid   { grid-template-columns: 1fr 1fr; }
  .backed-grid    { grid-template-columns: 1fr 1fr; }
  .community-inner { flex-direction: column; gap: 32px; text-align: center; }
  .community-btns  { justify-content: center; }

  .steps { gap: 6px; }
  .step-arrow { padding-top: 10px; font-size: 1.1rem; }
}

@media (max-width: 600px) {
  .nav {
    padding: 12px 16px;
    gap: 8px;
  }
  .nav-links { gap: 6px; }
  .nav-link  { display: none; }
  .nav-btn   { padding: 8px 14px; font-size: 0.82rem; }

  .hero-inner { padding: 32px 16px 24px; }
  .hero-title { font-size: clamp(3.8rem, 20vw, 6rem); }
  .hero-visual { width: 220px; }
  .mascot { width: 180px; }
  .mascot-wrap::before { inset: -12px -10px; }

  .what-cards   { grid-template-columns: 1fr; }
  .meme-grid    { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .funny-stats  { grid-template-columns: 1fr 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .section { padding: 60px 0; }

  .fl-1, .fl-2, .fl-3, .fl-4 { display: none; }
  .backed-grid { grid-template-columns: 1fr 1fr; }
}

/* ── SCROLL AURA PROGRESS ────────────────────────────────── */
.aura-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 5px;
  z-index: 999;
  background: rgba(0,0,0,0.1);
}
.aura-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink) 0%, var(--yellow) 100%);
  transition: width 0.12s linear;
}

/* ── MEME TOAST ──────────────────────────────────────────── */
.meme-toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  border: 2.5px solid var(--black);
  border-radius: 999px;
  padding: 11px 22px;
  z-index: 600;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 3px 3px 0 var(--black);
  transition: bottom 0.45s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.meme-toast.show { bottom: 20px; }

/* ── FAKE PRICE ALERT ────────────────────────────────────── */
.price-alert {
  position: fixed;
  bottom: -120px;
  right: 16px;
  background: var(--black);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 0;
  z-index: 600;
  max-width: 290px;
  box-shadow: 4px 4px 0 var(--yellow);
  transition: bottom 0.45s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.price-alert.show { bottom: 16px; }
.price-alert-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.price-alert-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: dot-pulse 1.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.price-alert-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.price-ticker { font-family: 'Permanent Marker', cursive; font-size: 0.95rem; color: var(--yellow); }
.price-change  { font-size: 0.82rem; font-weight: 900; color: #22c55e; }
.price-msg     { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.price-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  flex-shrink: 0;
}
.price-close:hover { color: var(--white); }

/* ── MASCOT MSG (STOP TOUCHING ME) ──────────────────────── */
.mascot-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--black);
  text-align: center;
  line-height: 1.1;
  background: rgba(255,110,180,0.88);
  border-radius: 12px;
  border: 3px solid var(--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  z-index: 10;
}
.mascot-msg.show { opacity: 1; }

@keyframes mascot-shake {
  0%  { transform: translateX(0)   rotate(-1deg); }
  15% { transform: translateX(-9px) rotate(-8deg); }
  30% { transform: translateX(9px)  rotate(8deg); }
  45% { transform: translateX(-7px) rotate(-5deg); }
  60% { transform: translateX(7px)  rotate(5deg); }
  75% { transform: translateX(-4px) rotate(-2deg); }
  90% { transform: translateX(4px)  rotate(2deg); }
  100%{ transform: translateX(0)   rotate(-1deg); }
}
.mascot-wrap.mascot-angry {
  animation: mascot-shake 0.38s ease infinite !important;
}

/* ── CONFETTI ────────────────────────────────────────────── */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 9000;
  animation: confetti-fly 0.9s ease-out forwards;
}
@keyframes confetti-fly {
  0%   { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx),var(--dy)) rotate(720deg) scale(0.5); }
}

/* ── FLOATING PEACH (double-click) ──────────────────────── */
.float-peach {
  position: fixed;
  font-size: 2rem;
  pointer-events: none;
  z-index: 9000;
  animation: peach-float 1.1s ease-out forwards;
}
@keyframes peach-float {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-130px) scale(1.6); }
}

/* ── TOOLTIP ─────────────────────────────────────────────── */
.has-tooltip { position: relative; }

@media (hover: hover) {
  .has-tooltip::before {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--yellow);
    padding: 7px 14px;
    border-radius: 8px;
    font-family: 'Permanent Marker', cursive;
    font-size: 0.82rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 50;
    border: 2px solid var(--black);
    box-shadow: 2px 2px 0 var(--black);
  }
  .has-tooltip::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 50;
  }
  .has-tooltip:hover::before,
  .has-tooltip:hover::after { opacity: 1; }
}

/* ── KONAMI OVERLAY ──────────────────────────────────────── */
.konami-overlay {
  position: fixed;
  inset: 0;
  background: var(--pink);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.konami-overlay.show { opacity: 1; pointer-events: auto; }
.konami-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}
.konami-mascot {
  font-size: clamp(5rem, 18vw, 10rem);
  animation: mascot-bounce 0.9s ease-in-out infinite;
}
.konami-text {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  color: var(--black);
  line-height: 1.1;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.15);
}
.konami-close {
  margin-top: 16px;
  background: var(--black);
  color: var(--yellow);
  border: var(--border);
  border-radius: 999px;
  padding: 10px 28px;
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--black);
}

/* ── BUTT AUDIT REPORT ───────────────────────────────────── */
.audit-section { background: #f8f6f0; border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); }

.audit-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 2.5px solid #999;
  border-radius: 4px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10), 4px 4px 0 #ccc;
  overflow: hidden;
  position: relative;
}

.audit-header {
  padding: 24px 28px 18px;
  border-bottom: 1.5px solid #ddd;
}
.audit-toprow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.audit-tag {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--black);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 3px;
}
.audit-id { font-size: 0.65rem; font-weight: 700; color: #999; letter-spacing: 0.06em; }

.audit-title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--black);
  margin: 0 0 4px;
  line-height: 1;
}
.audit-sub { font-size: 0.78rem; font-weight: 700; color: #888; margin: 0; }

.audit-rows { padding: 8px 0; }
.audit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 28px;
  border-bottom: 1px solid #f0ede8;
  font-size: 0.9rem;
}
.audit-key { font-weight: 800; color: #555; }
.audit-val { font-family: 'Permanent Marker', cursive; font-size: 1rem; color: var(--black); }
.audit-bad  { color: #e03434; }
.audit-good { color: #1a9c3e; }
.audit-warn { color: #d97706; }

.audit-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 28px 22px;
  border-top: 1.5px dashed #ccc;
  background: #fdfcfa;
}
.audit-sig { display: flex; flex-direction: column; gap: 3px; }
.audit-sig-line { font-size: 0.7rem; color: #bbb; letter-spacing: 0.02em; }
.audit-sig-name { font-family: 'Permanent Marker', cursive; font-size: 1rem; color: #555; }

.audit-stamp {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.88rem;
  color: var(--pink-dk);
  border: 2.5px solid var(--pink-dk);
  border-radius: 6px;
  padding: 6px 12px;
  text-align: center;
  line-height: 1.2;
  transform: rotate(8deg);
  opacity: 0.85;
}

/* ── BACKED BY ───────────────────────────────────────────── */
.backedby-section { background: var(--yellow); border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); }

.backed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.backed-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--card-r);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.15s, box-shadow 0.15s;
}
.backed-item:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--black);
}
.backed-yes-item { background: #dcfce7; }

.backed-name { font-family: 'Permanent Marker', cursive; font-size: 1.1rem; color: var(--black); text-align: center; }
.backed-result { font-size: 1.8rem; line-height: 1; }
.backed-no  { filter: grayscale(0.2); }
.backed-yes { color: #16a34a; }

/* ── TELEGRAM MEME POPUP ─────────────────────────────────── */
.tg-popup {
  position: fixed;
  z-index: 700;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 4px 4px 0 var(--black);
  max-width: 230px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  transition: opacity 0.18s, transform 0.18s;
  text-align: center;
}
.tg-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.tg-popup-emoji { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.tg-popup-text  {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.88rem;
  color: var(--black);
  line-height: 1.35;
}
/* arrow pointing down toward button */
.tg-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--black);
}

/* ── PREFERS REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mascot-wrap,
  .community-mascot,
  .float-label,
  .ticker-track,
  .confetti-piece,
  .float-peach,
  .btn,
  .konami-mascot {
    animation: none !important;
    transition: none !important;
  }
}
