@font-face {
  font-family: 'Luckiest Guy';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/luckiestguy.woff2') format('woff2');
}
:root {
  --lime: #ccff00;          /* neon lime */
  --lime-dim: #b4e400;
  --black: #0a0a0a;
  --ink: #000000;
  --white: #ffffff;
  --outline: 4px solid var(--ink);
  --pop: 8px 8px 0 var(--ink);
  --pop-sm: 5px 5px 0 var(--ink);
  --glow: 0 0 24px rgba(204, 255, 0, .55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Luckiest Guy', system-ui, sans-serif;
  letter-spacing: .04em;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.script { font-family: 'Luckiest Guy', sans-serif; letter-spacing: .02em; }
img { max-width: 100%; display: block; }

/* ================= TOP BAR ================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 5vw;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--lime);
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.topbar__brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--lime);
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 0 14px rgba(204,255,0,.4);
}
.topbar__brand span {
  font-family: 'Luckiest Guy', sans-serif;
  font-size: 1.5rem;
  color: var(--lime);
  letter-spacing: .04em;
}
.topbar__links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
  font-size: 1.15rem;
}
.topbar__links a {
  color: var(--white);
  text-decoration: none;
  transition: color .12s;
}
.topbar__links a:hover { color: var(--lime); }

/* Kebab (3-dot) button — mobile only */
.kebab {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.kebab span {
  width: 28px; height: 4px;
  border-radius: 3px;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(204,255,0,.5);
}

/* ================= HERO ================= */
.hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(204,255,0,.14), transparent 55%),
    var(--black);
  text-align: center;
  padding: 2.6rem 5vw 0;
  border-bottom: var(--outline);
  overflow: hidden;
}
.logo {
  font-family: 'Luckiest Guy', sans-serif;
  color: var(--lime);
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 1;
  letter-spacing: .02em;
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: var(--pop-sm), var(--glow);
}
.tickerchip {
  display: inline-block;
  margin-top: 1rem;
  background: var(--lime);
  color: var(--ink);
  border: var(--outline);
  border-radius: 12px;
  box-shadow: var(--pop-sm);
  padding: .35rem 1.4rem;
  font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  letter-spacing: .06em;
}
.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin: 1.6rem 0;
  font-size: clamp(1rem, 3.2vw, 1.5rem);
}
.topnav a {
  color: var(--white);
  text-decoration: none;
  transition: color .12s, transform .12s;
}
.topnav a:hover { color: var(--lime); transform: translateY(-2px); }

.hero__tag {
  font-family: 'Luckiest Guy', sans-serif;
  color: var(--lime);
  font-size: clamp(1.6rem, 6vw, 3rem);
  letter-spacing: .02em;
  -webkit-text-stroke: 1.5px var(--ink);
  paint-order: stroke fill;
  text-shadow: var(--glow);
  margin: 1.4rem 0 1.8rem;
}

/* SWAP button */
.swap {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-size: clamp(1.8rem, 6vw, 3rem);
  padding: .3em 1.6em;
  border: var(--outline);
  border-radius: 16px;
  box-shadow: var(--pop);
  text-decoration: none;
  transition: transform .1s, box-shadow .1s;
}
.swap:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--ink), var(--glow); }
.swap:active { transform: translate(4px,4px); box-shadow: 2px 2px 0 var(--ink); }

/* Social tiles */
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2.2rem 0 1rem;
}
.sq {
  min-width: 64px; height: 64px;
  padding: 0 .5rem;
  display: grid;
  place-items: center;
  background: var(--black);
  border: 4px solid var(--lime);
  border-radius: 14px;
  box-shadow: var(--pop-sm);
  text-decoration: none;
  transition: transform .1s, box-shadow .1s, background .12s;
}
.sq--wide { padding: 0 1.2rem; }
.sq span {
  font-size: 1.1rem;
  color: var(--lime);
  letter-spacing: .02em;
  white-space: nowrap;
}
.sq:hover {
  background: var(--lime);
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.sq:hover span { color: var(--ink); }

.hero__art { margin-top: 1.8rem; }
.hero__art img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(204,255,0,.25));
}

/* ================= MARQUEE ================= */
.marquee {
  background: var(--lime);
  border-bottom: var(--outline);
  overflow: hidden;
  white-space: nowrap;
  padding: .55rem 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: slide 22s linear infinite;
}
.marquee__track span:not(.dot) {
  font-size: 1.6rem;
  color: var(--ink);
}
.dot {
  width: 13px; height: 13px;
  background: var(--ink);
  border-radius: 50%;
  display: inline-block;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= ABOUT ================= */
.about {
  background: var(--lime);
  color: var(--ink);
  border-bottom: var(--outline);
  text-align: center;
  padding: 3.8rem 6vw 4.2rem;
}
.script {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--ink);
  text-shadow: 5px 5px 0 rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.about__sub {
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  margin-bottom: 2rem;
}
.about__body { max-width: 780px; margin: 0 auto; }
.about__body p {
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  letter-spacing: .05em;
}
.about__punch { font-size: clamp(1.4rem, 4.5vw, 2rem) !important; }
.quote {
  background: var(--white);
  color: var(--ink);
  border: var(--outline);
  border-radius: 14px;
  box-shadow: var(--pop-sm);
  padding: 1.1rem 1.4rem;
  font-size: clamp(1.3rem, 4vw, 2rem);
  margin: 2.2rem auto;
  max-width: 640px;
}
.about__values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 3rem;
}

/* Comic tag labels */
.tag {
  background: var(--lime);
  color: var(--ink);
  border: var(--outline);
  border-radius: 12px;
  box-shadow: var(--pop-sm);
  padding: .7rem 1.3rem;
  font-size: clamp(1.05rem, 3vw, 1.6rem);
  display: inline-block;
}
.tag--tilt1 { transform: rotate(-2.5deg); }
.tag--tilt2 { transform: rotate(2deg); }
.about__values .tag { background: var(--white); }

/* ================= DETAILS ================= */
.details {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 3.8rem 6vw 4.2rem;
  border-bottom: var(--outline);
}
.details__art {
  width: 100%;
  max-width: 340px;
  border: 4px solid var(--lime);
  border-radius: 16px;
  box-shadow: var(--pop), var(--glow);
  margin: 0 auto 2.2rem;
}
.details .script { color: var(--lime); text-shadow: var(--pop-sm), var(--glow); }
.details__tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  margin-top: 2.2rem;
  max-width: 640px;
  margin-inline: auto;
}
.details__tags .tag { width: fit-content; }
.details__tags .tag:nth-child(even) { align-self: flex-end; }
.details__tags .tag:nth-child(odd) { align-self: flex-start; }

/* ================= HOW TO BUY ================= */
.buy {
  background: var(--white);
  color: var(--ink);
  text-align: center;
  padding: 3.8rem 6vw 4.2rem;
  border-bottom: var(--outline);
}
.buy .script { color: var(--ink); text-shadow: 5px 5px 0 var(--lime); }
.buy__mirror { margin: 1.6rem auto 2.6rem; max-width: 460px; }
.buy__mirror img {
  border: var(--outline);
  border-radius: 16px;
  box-shadow: var(--pop);
}
.steps {
  list-style: none;
  max-width: 720px;
  margin: 0 auto 2.6rem;
  text-align: left;
}
.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--lime);
  color: var(--ink);
  border: var(--outline);
  border-radius: 14px;
  box-shadow: var(--pop-sm);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.4rem;
}
.steps li b { font-size: 2rem; line-height: 1; }
.steps li p {
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  line-height: 1.5;
  letter-spacing: .05em;
}
.ca__label {
  color: var(--ink);
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  margin-bottom: 1rem;
}
.ca {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.ca code {
  flex: 1;
  min-width: 240px;
  background: var(--lime);
  border: var(--outline);
  border-radius: 12px;
  box-shadow: var(--pop-sm);
  padding: 1rem 1.2rem;
  font-family: 'Luckiest Guy', monospace;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  color: var(--ink);
  letter-spacing: .06em;
  word-break: break-all;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copybtn {
  background: var(--ink);
  color: var(--lime);
  border: var(--outline);
  border-radius: 12px;
  box-shadow: var(--pop-sm);
  font-family: 'Luckiest Guy', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .06em;
  padding: 0 1.6rem;
  cursor: pointer;
  transition: transform .1s, box-shadow .1s;
}
.copybtn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.copybtn:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }

/* ================= LIVE TRACKER ================= */
.tracker {
  background: var(--white);
  color: var(--ink);
  text-align: center;
  padding: 3.8rem 6vw 4.2rem;
  border-bottom: var(--outline);
}
.tracker .script { color: var(--ink); text-shadow: 5px 5px 0 var(--lime); }
.tracker__sub {
  letter-spacing: .16em;
  font-size: clamp(1rem, 3vw, 1.4rem);
  margin-top: .6rem;
}
.tracker__note {
  max-width: 620px;
  margin: .9rem auto 2rem;
  font-size: 1rem;
  letter-spacing: .05em;
  color: #333;
}
.tracker__bar {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.tracker__refresh[disabled] { opacity: .45; cursor: not-allowed; }
.tracker__refresh[disabled]:hover { transform: none; box-shadow: var(--pop-sm); }
.tracker__updated { font-size: 1rem; letter-spacing: .05em; }
.tracker__updated b { color: var(--ink); }
.tracker__live {
  background: var(--lime);
  color: var(--ink);
  border: var(--outline);
  border-radius: 10px;
  box-shadow: var(--pop-sm);
  padding: .3rem .9rem;
  font-size: 1rem;
  letter-spacing: .06em;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 2.6rem;
}
.stat {
  background: var(--white);
  border: var(--outline);
  border-radius: 14px;
  box-shadow: var(--pop-sm);
  padding: 1.2rem 1.1rem;
  text-align: left;
}
.stat__k {
  display: block;
  font-size: .82rem;
  letter-spacing: .1em;
  color: #555;
  margin-bottom: .5rem;
}
.stat__v {
  display: block;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-weight: 800;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--ink);
  word-break: break-word;
}
.stat__v.up { box-shadow: inset 0 -.5em 0 var(--lime); }
.stat__v.down { box-shadow: inset 0 -.5em 0 rgba(255,80,80,.35); }
.tracker__chart {
  max-width: 900px;
  margin: 0 auto;
  border: var(--outline);
  border-radius: 16px;
  box-shadow: var(--pop);
  overflow: hidden;
  background: var(--black);
}
.tracker__chart iframe { width: 100%; height: 520px; border: 0; display: block; }
.tracker__soon {
  padding: 3.2rem 1.5rem;
  color: var(--lime);
  font-size: clamp(1.2rem, 4vw, 2rem);
  letter-spacing: .04em;
}

/* ================= MEMES ================= */
.memes {
  background: var(--black);
  text-align: center;
  padding: 3.8rem 6vw 4.2rem;
}
.memes .script { color: var(--lime); text-shadow: var(--pop-sm), var(--glow); }
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 2.2rem auto 0;
}
.grid figure {
  border: 4px solid var(--lime);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--pop-sm);
  aspect-ratio: 1;
  background: var(--black);
}
.grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.grid figure:hover img { transform: scale(1.08); }

/* ================= FOOTER ================= */
.footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 3.4rem 6vw 3.6rem;
  border-top: var(--outline);
}
.footer__logo {
  font-family: 'Luckiest Guy', sans-serif;
  font-size: clamp(2.6rem, 9vw, 5rem);
  color: var(--lime);
  text-shadow: var(--glow);
  margin-bottom: 1.4rem;
}
.footer__disc {
  max-width: 640px;
  margin: 0 auto 1.4rem;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: .05em;
  color: #cfcfcf;
}
.footer__year {
  font-size: 1.5rem;
  color: var(--lime);
  margin-bottom: 1.6rem;
}
.socials--footer { margin: 0 0 1.4rem; }
.socials--footer .sq { height: 54px; min-width: 54px; }
.footer__mail {
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ================= TOAST ================= */
.toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(24px);
  background: var(--lime);
  color: var(--ink);
  border: var(--outline);
  border-radius: 12px;
  box-shadow: var(--pop-sm);
  font-family: 'Luckiest Guy', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .06em;
  padding: .7rem 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ================= RESPONSIVE ================= */
@media (max-width: 780px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .details__tags .tag:nth-child(even),
  .details__tags .tag:nth-child(odd) { align-self: center; }

  .kebab { display: flex; }
  .topbar__links {
    display: none;
    position: absolute;
    top: 100%; right: 0;
    flex-direction: column;
    gap: 0;
    min-width: 190px;
    background: var(--black);
    border: 3px solid var(--lime);
    border-top: none;
    border-bottom-left-radius: 14px;
    box-shadow: var(--pop-sm);
    padding: .4rem 0;
  }
  .topbar__links.open { display: flex; }
  .topbar__links a {
    padding: .8rem 1.4rem;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(204,255,0,.15);
  }
  .topbar__links a:last-child { border-bottom: none; }
}
@media (max-width: 460px) {
  .sq { min-width: 56px; height: 56px; }
  .sq span { font-size: 1rem; }
  .ca code { min-width: 100%; }
  .copybtn { width: 100%; padding: .7rem; }
}
