:root {
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --blue: #086bff;
  --blue-dark: #051a86;
  --yellow: #ffe529;
  --gold: #ffb000;
  --red: #ff244c;
  --ink: #060716;
  --panel: rgba(4, 8, 35, 0.78);
  --panel-strong: rgba(2, 5, 24, 0.92);
  --text: #fff9c9;
  --muted: #bcd4ff;
  --line: rgba(255, 229, 41, 0.35);
  --radius: 1.35rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 229, 41, 0.3), transparent 26rem),
    radial-gradient(circle at 82% 2%, rgba(8, 107, 255, 0.42), transparent 26rem),
    radial-gradient(circle at 55% 58%, rgba(255, 36, 76, 0.13), transparent 34rem),
    linear-gradient(145deg, #061255 0%, #090715 45%, #13070d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
.brand,
.buy-pill,
.nav,
.nav-contract-pill,
.primary-cta,
.secondary-cta,
.ticker,
.buy-zone-button,
.inline-link,
.vault-card strong,
.cards-cap strong,
.stat-card strong,
.community-totals strong,
.holder-rank,
.holder-bag strong,
.holder-reward strong,
.contract-box button,
.sticky-buy a,
.sticky-buy button {
  font-family: var(--font-display);
}

main {
  overflow: hidden;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 238, 65, 0.17) 1px, transparent 1.8px),
    linear-gradient(115deg, transparent 0 46%, rgba(255, 36, 76, 0.16) 46% 47%, transparent 47% 100%);
  background-size: 18px 18px, 160px 160px;
  mix-blend-mode: screen;
  opacity: 0.46;
  animation: shimmer 7s linear infinite;
}

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

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: max(1rem, env(safe-area-inset-top)) clamp(1rem, 4vw, 3rem) 1rem;
  background: linear-gradient(180deg, rgba(3, 7, 30, 0.96), rgba(3, 7, 30, 0.38));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 229, 41, 0.16);
}

.brand, .buy-pill, .nav a, .nav-contract-pill, .primary-cta, .secondary-cta, .contract-box button {
  text-shadow: 0 2px 0 #00106f, 0 0 14px rgba(255, 229, 41, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  font-size: 1.25rem;
  color: var(--yellow);
  -webkit-text-stroke: 0.6px #0535c9;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 229, 41, 0.18), rgba(8, 107, 255, 0.08));
  color: #072178;
  border: 2px solid rgba(255, 229, 41, 0.88);
  box-shadow: 0 0 0 2px rgba(8, 107, 255, 0.45), 0 0 24px rgba(255, 229, 41, 0.62);
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.34)) saturate(1.04) contrast(1.04);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
  font-size: 0.95rem;
  color: var(--muted);
  min-width: 0;
}

.nav a,
.nav-contract-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  white-space: nowrap;
}

.nav-contract-pill {
  gap: 0.42rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-contract-pill code {
  display: none;
}

.nav-contract-pill b {
  font: inherit;
}

.nav a:hover,
.nav-contract-pill:hover { color: var(--yellow); }

.buy-pill, .primary-cta, .contract-box button {
  border: 3px solid #06166f;
  background: linear-gradient(180deg, #fff767, #ffc400 55%, #ff8800);
  color: #09247d;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  box-shadow: 0 0 0 2px rgba(255,255,255,.16), 0 0 30px rgba(255, 229, 41, 0.45);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 7.8rem clamp(1rem, 5vw, 4rem) 4.4rem;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    conic-gradient(from 265deg at 54% 30%, rgba(255, 229, 41, 0.9), rgba(8,107,255,0.3), rgba(255,36,76,0.35), rgba(255,229,41,0.9)),
    radial-gradient(circle at 50% 32%, rgba(255, 229, 41, 0.5), transparent 28rem);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero-art-wrap {
  position: absolute;
  inset: 5.5rem clamp(0.7rem, 4vw, 3rem) auto;
  height: min(34vw, 25rem);
  z-index: -1;
  border: 4px solid rgba(255, 229, 41, 0.7);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 5px rgba(6, 36, 149, 0.65), 0 30px 90px rgba(0,0,0,.45), 0 0 70px rgba(8,107,255,.8);
  transform: rotate(-1.2deg);
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.18) contrast(1.08);
  animation: pulseArt 2.9s ease-in-out infinite;
}

.hero-copy {
  width: min(58rem, 100%);
  margin-top: min(36vw, 23rem);
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border-left: 8px solid var(--yellow);
  background:
    radial-gradient(circle at 94% 18%, rgba(255, 229, 41, 0.12), transparent 17rem),
    linear-gradient(90deg, rgba(3, 8, 42, 0.92), rgba(3, 8, 42, 0.42));
  box-shadow: -14px 14px 0 rgba(255, 36, 76, 0.43), inset 0 0 0 1px rgba(255, 229, 41, 0.15);
}

.hero-rewards {
  display: inline-grid;
  grid-template-columns: minmax(4.4rem, 0.28fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  margin: 0.35rem 0 1.15rem;
  padding: 0.75rem 0.85rem;
  border: 3px solid #07156d;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.75), transparent 6rem),
    linear-gradient(135deg, #fff66b, #ffba00 58%, #ff7a00);
  color: #07156d;
  box-shadow: 0 7px 0 #ff244c, 0 0 34px rgba(255, 229, 41, 0.48);
  animation: rewardCharge 2.4s ease-in-out infinite;
}

.hero-rewards img {
  width: clamp(4.6rem, 18vw, 8.2rem);
  border: 2px solid rgba(7, 21, 109, 0.55);
  border-radius: 0.58rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.45);
  transform: rotate(-4deg);
}

.hero-rewards-copy {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
}

.hero-rewards span,
.hero-rewards small,
.hero-rewards em {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-rewards strong {
  font-size: clamp(3.1rem, 13vw, 7.2rem);
  line-height: 0.86;
  width: max-content;
  max-width: 100%;
  margin: 0.08rem 0 0.34rem;
  padding-right: 0.08em;
  color: #07156d;
  background: linear-gradient(180deg, #102aa2 0%, #06145f 58%, #04103e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0;
  text-shadow: none;
  animation: rewardNumberPop 1.55s ease-in-out infinite;
}

.hero-rewards small {
  color: #07156d;
  font-size: clamp(1rem, 3.6vw, 1.45rem);
  line-height: 1.02;
  text-shadow: none;
}

.hero-rewards em {
  color: #072277;
  font-size: clamp(0.76rem, 2.4vw, 0.98rem);
  font-style: normal;
  font-weight: 950;
  opacity: 0.92;
}

.eyebrow, .kicker {
  margin: 0 0 0.7rem;
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2, p { margin-top: 0; }

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  line-height: 0.85;
  color: var(--yellow);
  -webkit-text-stroke: clamp(1px, .25vw, 4px) #0832be;
  text-shadow: 0 8px 0 #001a92, 0 14px 0 rgba(255, 36, 76, 0.8), 0 0 40px rgba(255, 229, 41, 0.8);
  text-transform: uppercase;
}

h1 span {
  display: inline-block;
  animation: zap 1.9s steps(2, end) infinite;
}

h2 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.92;
  color: var(--yellow);
  text-transform: uppercase;
  -webkit-text-stroke: 1.2px #0829a4;
  text-shadow: 0 5px 0 rgba(0, 13, 104, 0.9);
}

.lead, .story-card p, .mini-card p, .footer, .copy-status {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

.lead {
  max-width: 48rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 2px 10px #001253;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 229, 41, 0.72);
  border-radius: 999px;
  background: rgba(4, 12, 68, 0.78);
  color: #fff8ab;
  text-transform: uppercase;
  text-shadow: 0 2px 0 #00106f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.primary-cta, .secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.rewards-cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 7px 0 #ff244c, 0 0 30px rgba(255, 229, 41, 0.55);
  animation: rewardButtonPop 1.8s ease-in-out infinite;
}

.rewards-cta::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.58), transparent 64%);
  transform: translateX(-72%);
  animation: rewardButtonShine 2.2s ease-in-out infinite;
}

.rewards-cta {
  color: #07156d;
}

.buy-hero-cta {
  box-shadow: 0 7px 0 #06166f, 0 0 26px rgba(8, 107, 255, 0.45);
}

.primary-cta,
.secondary-cta,
.buy-pill,
.contract-box button,
.link-strip a,
.sticky-buy a,
.sticky-buy button {
  touch-action: manipulation;
}

.secondary-cta {
  border: 2px solid rgba(255, 229, 41, 0.7);
  border-radius: 999px;
  background: rgba(4, 12, 68, 0.82);
  color: #fff8ab;
}

.ticker {
  overflow: hidden;
  border-block: 4px solid #061b93;
  background: linear-gradient(90deg, var(--yellow), #fff99a, var(--yellow));
  color: #062284;
  box-shadow: 0 0 35px rgba(255, 229, 41, 0.6);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 0.85rem 1.2rem;
  font-size: clamp(1rem, 2vw, 1.45rem);
  text-transform: uppercase;
  white-space: nowrap;
}

.buy-zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding-block: 2rem;
}

.buy-zone > div {
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 4px solid rgba(255, 229, 41, 0.72);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 229, 41, 0.32), transparent 18rem),
    linear-gradient(140deg, rgba(3, 8, 42, 0.96), rgba(6, 23, 117, 0.78));
  box-shadow: 9px 9px 0 rgba(255, 36, 76, 0.32);
}

.buy-zone p:not(.kicker) {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.45;
}

.buy-zone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.6rem;
  padding: 0.95rem 1.45rem;
  border: 4px solid #06166f;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff767, #ffc400 55%, #ff8800);
  color: #09247d;
  font-size: clamp(1.25rem, 4vw, 2rem);
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255,255,255,0.45);
  box-shadow: 0 9px 0 #ff244c, 0 0 36px rgba(255, 229, 41, 0.55);
  animation: rewardButtonPop 1.8s ease-in-out infinite;
}

.vault-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: stretch;
  overflow: hidden;
}

.vault-charge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.78;
}

.vault-charge span {
  position: absolute;
  left: -18%;
  width: 36%;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 229, 41, 0.9), rgba(8, 107, 255, 0.72), transparent);
  box-shadow: 0 0 22px rgba(255, 229, 41, 0.65);
  animation: vaultCharge 3.2s linear infinite;
}

.vault-charge span:nth-child(1) {
  top: 18%;
}

.vault-charge span:nth-child(2) {
  top: 51%;
  animation-delay: -1.1s;
}

.vault-charge span:nth-child(3) {
  top: 82%;
  animation-delay: -2.2s;
}

.vault-copy {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 4px solid rgba(255, 229, 41, 0.72);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 229, 41, 0.28), transparent 16rem),
    linear-gradient(145deg, rgba(3, 8, 42, 0.96), rgba(6, 23, 117, 0.76));
  box-shadow: 10px 10px 0 rgba(255, 36, 76, 0.34);
}

.vault-copy p:not(.kicker),
.vault-card p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.45;
  color: white;
}

.vault-console {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.vault-console-head,
.vault-safety {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border: 3px solid rgba(255, 229, 41, 0.62);
  background: rgba(3, 8, 42, 0.86);
  box-shadow: 6px 6px 0 rgba(255, 36, 76, 0.24);
}

.vault-console-head span,
.vault-safety span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--muted);
}

.vault-console-head strong {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
}

.vault-safety {
  align-items: flex-start;
}

.vault-safety p {
  margin: 0;
  max-width: 42rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.35;
  color: white;
}

.vault-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.vault-card {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  min-height: 14rem;
  padding: 1rem;
  border: 3px solid rgba(255, 229, 41, 0.62);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 229, 41, 0.22), transparent 10rem),
    linear-gradient(150deg, rgba(3, 8, 42, 0.98), rgba(8, 107, 255, 0.32));
  box-shadow: 7px 7px 0 rgba(255, 36, 76, 0.28);
}

.vault-card span,
.vault-flow span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--muted);
}

.vault-card strong {
  color: var(--yellow);
  font-size: clamp(1.55rem, 3.6vw, 2.55rem);
  line-height: 0.95;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #0829a4;
  text-shadow: 0 3px 0 var(--red);
}

.vault-status {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 229, 41, 0.34), transparent 11rem),
    linear-gradient(150deg, rgba(3, 8, 42, 0.98), rgba(25, 8, 68, 0.82));
}

.vault-card button {
  align-self: end;
  min-height: 2.7rem;
  border: 2px solid rgba(255, 229, 41, 0.7);
  border-radius: 999px;
  background: rgba(255, 229, 41, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-size: 0.92rem;
  text-transform: uppercase;
  cursor: not-allowed;
}

.vault-card button.vault-info-button:not(:disabled) {
  background: linear-gradient(180deg, #ffe529, #ff9b0f);
  color: #07114a;
  box-shadow: 0 0 16px rgba(255, 229, 41, 0.34);
  cursor: pointer;
}

.vault-multisig-panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border: 3px solid rgba(255, 229, 41, 0.62);
  background: rgba(3, 8, 42, 0.9);
  box-shadow: 6px 6px 0 rgba(255, 36, 76, 0.24);
}

.vault-multisig-panel[hidden] {
  display: none;
}

.vault-multisig-panel span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--muted);
}

.vault-multisig-panel p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.35;
}

.vault-multisig-panel code {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  font-size: 0.82rem;
}

.vault-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.42rem;
}

.vault-flow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.8rem;
  border: 3px solid rgba(255, 229, 41, 0.72);
  border-radius: 999px;
  background: rgba(3, 8, 42, 0.78);
  box-shadow: 0 0 28px rgba(255, 229, 41, 0.18);
}

.vault-flow b {
  color: var(--yellow);
}

@keyframes vaultCharge {
  0% {
    transform: translateX(0) scaleX(0.55);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(360%) scaleX(1);
    opacity: 0;
  }
}

.section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.viral-reel {
  display: grid;
  grid-template-columns: 0.95fr minmax(280px, 420px);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
}

.reel-copy p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.55;
  color: white;
}

.reel-frame {
  position: relative;
  aspect-ratio: 9 / 13.7;
  min-height: 540px;
  overflow: hidden;
  border: 4px solid rgba(255, 229, 41, 0.82);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #07145c, #050717);
  box-shadow: 10px 10px 0 rgba(255, 36, 76, 0.38), 0 0 50px rgba(8, 107, 255, 0.42);
}

.reel-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 1.15fr;
  gap: 1rem;
  align-items: stretch;
}

.panel, .mini-card, .contract-card {
  border: 3px solid var(--line);
  background: linear-gradient(150deg, var(--panel-strong), var(--panel));
  box-shadow: 10px 10px 0 rgba(255, 36, 76, 0.34), inset 0 0 40px rgba(8, 107, 255, 0.18);
}

.story-card, .stat-card {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.stat-card {
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle, rgba(255, 229, 41, 0.24), var(--panel-strong));
}

.stat-card strong {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--yellow);
  -webkit-text-stroke: 2px #0829a4;
  text-shadow: 0 8px 0 #ff244c;
}

.stat-card span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: white;
}

.thesis {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
}

.thesis-copy p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: white;
  line-height: 1.55;
}

.cards {
  display: grid;
  gap: 1rem;
}

.mini-card {
  padding: 1.15rem;
  transform: skew(-2deg);
}

.mini-card > * {
  transform: skew(2deg);
}

.mini-card span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--yellow);
  color: #0829a4;
}

.mini-card strong {
  display: block;
  color: var(--yellow);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.cards-rewards {
  padding-top: 1rem;
}

.cards-token {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(0.9rem, 3vw, 1.4rem);
  align-items: center;
  margin-bottom: 1rem;
}

.cards-token img {
  width: clamp(5.2rem, 12vw, 8.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  background: #081159;
  box-shadow: 0 0 0 5px rgba(8, 107, 255, 0.55), 0 0 42px rgba(255, 229, 41, 0.48);
}

.rewards-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.78fr;
  gap: 1rem;
}

.reward-panel {
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 3px solid rgba(255, 229, 41, 0.42);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 229, 41, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(3, 8, 42, 0.95), rgba(9, 17, 80, 0.76));
  box-shadow: 8px 8px 0 rgba(255, 36, 76, 0.28), inset 0 0 34px rgba(8, 107, 255, 0.16);
}

.reward-main {
  grid-row: span 2;
}

.energy-card-panel {
  display: grid;
  grid-template-columns: minmax(6rem, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 229, 41, 0.42), transparent 14rem),
    linear-gradient(145deg, rgba(3, 8, 42, 0.96), rgba(8, 107, 255, 0.28));
}

.energy-card-panel img {
  width: min(100%, 9rem);
  border: 3px solid rgba(255, 229, 41, 0.8);
  border-radius: 0.7rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.36), 0 0 22px rgba(255, 229, 41, 0.32);
  transform: rotate(-3deg);
}

.energy-card-panel .cap-label {
  color: var(--yellow);
}

.reward-panel h3 {
  margin: 0 0 0.65rem;
  color: var(--yellow);
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  -webkit-text-stroke: 0.7px #0829a4;
  text-shadow: 0 3px 0 rgba(0, 13, 104, 0.9);
}

.reward-panel p {
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 850;
  line-height: 1.5;
  color: white;
}

.reward-note {
  margin-top: 1rem;
  color: #fff89a !important;
}

.cards-cap {
  display: grid;
  align-content: center;
  min-height: 11rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 229, 41, 0.32), transparent 14rem),
    linear-gradient(145deg, rgba(3, 8, 42, 0.98), rgba(25, 8, 68, 0.8));
}

.cap-label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--muted);
}

.cards-cap strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(3.7rem, 9vw, 6rem);
  line-height: 0.9;
  -webkit-text-stroke: 2px #0829a4;
  text-shadow: 0 6px 0 var(--red), 0 0 24px rgba(255, 229, 41, 0.55);
}

.community-rewards {
  position: relative;
  padding-top: 2rem;
}

.community-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.community-head h2 {
  margin-bottom: 0.55rem;
}

.community-head p:not(.kicker),
.community-note {
  max-width: 48rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 850;
  line-height: 1.5;
}

.fomo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  max-width: 36rem;
  padding: 0.75rem 0.9rem;
  border: 3px solid rgba(255, 229, 41, 0.75);
  border-radius: 999px;
  background: rgba(4, 8, 35, 0.86);
  color: white;
  box-shadow: 0 0 0 4px rgba(8, 107, 255, 0.25);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
}

.fomo-badge span {
  line-height: 1.22;
}

.fomo-badge img,
.holder-avatar img {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  object-fit: cover;
}

.holder-avatar img {
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  transform: scale(1.02);
}

.community-totals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.community-totals article {
  display: grid;
  align-content: start;
  gap: 0.3rem;
  min-height: 8.2rem;
  padding: 1rem;
  border: 3px solid rgba(255, 229, 41, 0.55);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 229, 41, 0.22), transparent 12rem),
    linear-gradient(145deg, rgba(3, 8, 42, 0.96), rgba(7, 26, 128, 0.82));
  box-shadow: 7px 7px 0 rgba(255, 36, 76, 0.28);
}

.community-totals span,
.holder-head,
.holder-label small {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--muted);
}

.community-totals span {
  display: block;
  min-height: 2.2rem;
  line-height: 1.08;
}

.community-totals strong {
  display: block;
  min-height: 3.9rem;
  color: var(--yellow);
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 0.92;
  -webkit-text-stroke: 1.2px #0829a4;
  text-shadow: 0 4px 0 var(--red);
}

.community-totals small,
.coin-stats small {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
}

.holders-table {
  overflow: hidden;
  border: 3px solid rgba(255, 229, 41, 0.58);
  background: rgba(3, 8, 42, 0.82);
  box-shadow: 10px 10px 0 rgba(255, 36, 76, 0.24);
}

.holder-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(7rem, 0.65fr) minmax(7rem, 0.72fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255, 229, 41, 0.18);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.holder-row:first-child {
  border-top: 0;
}

.holder-head {
  background: linear-gradient(90deg, rgba(255, 229, 41, 0.2), rgba(8, 107, 255, 0.12));
  color: var(--yellow);
}

.holder-identity {
  display: grid;
  grid-template-columns: 1.7rem 2.35rem minmax(0, 1fr);
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
}

.holder-rank {
  color: var(--yellow);
  text-align: left;
}

.holder-avatar {
  display: grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: #07156d;
  color: var(--yellow);
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: 0 0 16px rgba(255, 229, 41, 0.35);
  overflow: hidden;
}

.holder-row.is-fomo .holder-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-color: #fff66b;
}

.holder-label {
  display: grid;
  align-content: center;
  gap: 0.08rem;
  line-height: 1.08;
  min-width: 0;
}

.holder-label strong,
.holder-label a {
  overflow: hidden;
  color: white;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.holder-label small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.holder-label small a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 229, 41, 0.55);
  text-underline-offset: 0.16rem;
}

.holder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.16rem;
}

.holder-action {
  display: inline-grid;
  place-items: center;
  width: 1.38rem;
  height: 1.38rem;
  border: 1.5px solid rgba(255, 229, 41, 0.78);
  border-radius: 50%;
  background: rgba(8, 107, 255, 0.18);
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 0 #00106f;
}

.holder-action.is-disabled {
  opacity: 0.34;
  filter: grayscale(1);
}

.holder-action.is-pump {
  background: linear-gradient(180deg, #ffe529 0%, #ff9f00 100%);
  border-color: rgba(255, 229, 41, 0.95);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.holder-action img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.holder-reward,
.holder-bag,
.holder-row.is-fomo .holder-label a,
.holder-row.is-fomo .holder-label strong {
  color: var(--yellow);
}

.holder-reward,
.holder-bag {
  display: grid;
  gap: 0.15rem;
}

.holder-reward strong,
.holder-bag strong {
  color: var(--yellow);
}

.holder-reward small,
.holder-bag small {
  color: white;
  font-weight: 950;
}

.coin-showcase {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-top: 1.5rem;
}

.coin-stage {
  position: relative;
  min-height: clamp(22rem, 42vw, 34rem);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.coin-stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 229, 41, 0.32), transparent 53%),
    conic-gradient(from 0deg, rgba(255, 229, 41, 0.05), rgba(8, 107, 255, 0.42), rgba(255, 36, 76, 0.24), rgba(255, 229, 41, 0.05));
  filter: blur(3px);
  animation: coinAura 3s ease-in-out infinite;
  z-index: -3;
}

.coin-stage img {
  width: min(82%, 28rem);
  max-width: 100%;
  filter:
    drop-shadow(0 28px 30px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 38px rgba(255, 229, 41, 0.7));
  animation: lowerCoinFloat 3.8s ease-in-out infinite;
}

.coin-orbit,
.coin-thunder {
  position: absolute;
  pointer-events: none;
}

.coin-orbit {
  inset: 10%;
  border: 4px dashed rgba(255, 229, 41, 0.62);
  border-radius: 50%;
  animation: ringSpin 7s linear infinite;
}

.orbit-two {
  inset: 2%;
  border-color: rgba(8, 107, 255, 0.5);
  animation-duration: 10s;
  animation-direction: reverse;
}

.coin-thunder {
  width: clamp(5.5rem, 13vw, 9rem);
  aspect-ratio: 0.54;
  background: linear-gradient(180deg, #fff66b, #ffc400 58%, #ff7a00);
  clip-path: polygon(45% 0, 100% 0, 66% 38%, 100% 38%, 30% 100%, 47% 52%, 0 52%);
  filter: drop-shadow(0 0 16px rgba(255, 229, 41, 0.9)) drop-shadow(0 0 28px rgba(8, 107, 255, 0.55));
  opacity: 0.88;
  animation: coinThunder 2.4s ease-in-out infinite;
  z-index: -1;
}

.thunder-one {
  left: 2%;
  top: 12%;
  transform: rotate(-18deg);
}

.thunder-two {
  right: 0;
  bottom: 14%;
  transform: rotate(20deg) scale(0.8);
  animation-delay: 0.35s;
}

.thunder-three {
  left: 11%;
  bottom: 6%;
  transform: rotate(38deg) scale(0.62);
  animation-delay: 0.8s;
}

.coin-copy {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 4px solid rgba(255, 229, 41, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(3, 8, 42, 0.96), rgba(6, 23, 117, 0.76)),
    radial-gradient(circle at 100% 0%, rgba(255, 229, 41, 0.24), transparent 18rem);
  box-shadow: 12px 12px 0 rgba(255, 36, 76, 0.35), inset 0 0 42px rgba(8, 107, 255, 0.16);
}

.coin-copy p:not(.kicker) {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.48;
}

.coin-stats {
  display: inline-grid;
  gap: 0.15rem;
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border: 3px solid #07156d;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff66b, #ffba00 63%, #ff7a00);
  color: #07156d;
  box-shadow: 0 7px 0 #ff244c;
}

.coin-stats span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
}

.coin-stats strong {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 0.95;
  color: #07156d;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55), 0 4px 0 rgba(255, 36, 76, 0.72);
}

.coin-stats small {
  color: #07156d;
}

.contract-zone {
  padding-top: 2rem;
}

.contract-card {
  padding: clamp(1.2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 229, 41, 0.28), transparent 22rem),
    linear-gradient(150deg, rgba(3, 8, 42, 0.96), rgba(6, 23, 117, 0.78));
}

.contract-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.65rem;
  border: 3px solid var(--yellow);
  background: rgba(0, 0, 0, 0.42);
}

.contract-box code {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: white;
  font-size: clamp(0.82rem, 2vw, 1rem);
}

.contract-box button {
  font: inherit;
  cursor: pointer;
}

.link-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.link-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.62rem 0.9rem;
  border: 2px solid rgba(255, 229, 41, 0.64);
  border-radius: 999px;
  background: rgba(4, 12, 68, 0.72);
  color: #fff8ab;
  text-transform: uppercase;
  text-shadow: 0 2px 0 #00106f;
}

.dog-lore {
  display: grid;
  grid-template-columns: minmax(17rem, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  padding-top: 2rem;
}

.dog-lore-art {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 4px solid rgba(255, 229, 41, 0.82);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 107, 255, 0.36), rgba(3, 8, 42, 0.9));
  box-shadow: 11px 11px 0 rgba(255, 36, 76, 0.35), 0 0 42px rgba(8, 107, 255, 0.34);
}

.dog-lore-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.06);
}

.dog-lore-bolt {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  width: clamp(4.8rem, 12vw, 8rem);
  aspect-ratio: 0.55;
  background: linear-gradient(180deg, #fff66b, #ffc400 58%, #ff7a00);
  clip-path: polygon(45% 0, 100% 0, 66% 38%, 100% 38%, 30% 100%, 47% 52%, 0 52%);
  filter: drop-shadow(0 0 18px rgba(255, 229, 41, 0.82)) drop-shadow(0 0 28px rgba(8, 107, 255, 0.6));
  animation: coinThunder 2.5s ease-in-out infinite;
}

.dog-lore-copy {
  padding: clamp(1.1rem, 3.5vw, 2rem);
  border: 4px solid rgba(255, 229, 41, 0.7);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 229, 41, 0.26), transparent 20rem),
    linear-gradient(150deg, rgba(3, 8, 42, 0.96), rgba(6, 23, 117, 0.78));
  box-shadow: 10px 10px 0 rgba(255, 36, 76, 0.32), inset 0 0 40px rgba(8, 107, 255, 0.18);
}

.dog-lore-copy p:not(.kicker),
.dog-lore-grid span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.46;
}

.dog-lore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.dog-lore-grid article {
  padding: 0.9rem;
  border: 2px solid rgba(255, 229, 41, 0.5);
  background: rgba(0, 0, 0, 0.24);
}

.dog-lore-grid strong {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  text-shadow: 0 2px 0 #00106f;
}

.dog-lore-grid span {
  display: block;
  margin-top: 0.28rem;
  color: white;
  font-size: 0.92rem;
}

.dog-source-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.dog-source-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  border: 2px solid rgba(255, 229, 41, 0.75);
  border-radius: 999px;
  padding: 0 0.9rem;
  color: #fff8ab;
  background: rgba(4, 12, 68, 0.82);
  text-decoration: none;
  text-shadow: 0 2px 0 #00106f;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  background: #03071e;
  border-top: 2px solid rgba(255, 229, 41, 0.35);
}

.sticky-buy {
  position: fixed;
  z-index: 40;
  left: 1rem;
  right: 1rem;
  bottom: max(0.8rem, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0.62rem 0.55rem 0.9rem;
  border: 2px solid rgba(255, 229, 41, 0.9);
  border-radius: 999px;
  background: rgba(2, 6, 28, 0.88);
  box-shadow: 0 0 22px rgba(8, 107, 255, 0.55), 0 0 34px rgba(255, 229, 41, 0.25);
  backdrop-filter: blur(16px);
}

.sticky-buy span {
  color: var(--yellow);
  -webkit-text-stroke: 0.6px #0535c9;
  text-shadow: 0 2px 0 #00106f;
}

.sticky-buy button {
  min-height: 2.75rem;
  border: 2px solid #06166f;
  border-radius: 999px;
  padding: 0 1rem;
  color: #09247d;
  background: linear-gradient(180deg, #fff767, #ffc400 55%, #ff8800);
  font: inherit;
  box-shadow: 0 0 18px rgba(255, 229, 41, 0.42);
}

.sticky-buy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 2px solid rgba(255, 229, 41, 0.75);
  border-radius: 999px;
  padding: 0 0.9rem;
  color: #fff8ab;
  background: rgba(4, 12, 68, 0.82);
  text-shadow: 0 2px 0 #00106f;
}

.bolt {
  position: absolute;
  width: 16rem;
  height: 16rem;
  background: var(--yellow);
  clip-path: polygon(45% 0, 62% 35%, 100% 35%, 54% 100%, 64% 52%, 24% 52%);
  filter: drop-shadow(0 0 18px var(--yellow)) drop-shadow(0 0 25px var(--blue));
  opacity: 0.66;
  animation: floatBolt 2.5s ease-in-out infinite;
}

.bolt-a { right: 8%; top: 42%; transform: rotate(18deg); }
.bolt-b { left: 4%; top: 24%; transform: rotate(-22deg) scale(.65); animation-delay: -1s; }

.storm {
  position: absolute;
  z-index: 0;
  width: 0.42rem;
  height: 52vh;
  background: linear-gradient(180deg, transparent, #fff89a, var(--yellow), #0aa4ff, transparent);
  clip-path: polygon(44% 0, 78% 26%, 54% 26%, 88% 55%, 57% 55%, 100% 100%, 22% 62%, 48% 62%, 8% 31%, 36% 31%);
  opacity: 0;
  filter: drop-shadow(0 0 12px var(--yellow)) drop-shadow(0 0 20px var(--blue));
  pointer-events: none;
  animation: thunderStrike 3.4s steps(2, end) infinite;
}

.storm-a { left: 9%; top: 9rem; transform: rotate(-16deg) scaleX(2.4); }
.storm-b { right: 14%; top: 12rem; transform: rotate(15deg) scaleX(2.1); animation-delay: 1.7s; }

.spark-field span {
  position: fixed;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow), 0 0 32px var(--blue);
  animation: spark 4s linear infinite;
  pointer-events: none;
}

.spark-field span:nth-child(1) { left: 12%; animation-delay: 0s; }
.spark-field span:nth-child(2) { left: 32%; animation-delay: -1.4s; }
.spark-field span:nth-child(3) { left: 55%; animation-delay: -2.6s; }
.spark-field span:nth-child(4) { left: 72%; animation-delay: -0.7s; }
.spark-field span:nth-child(5) { left: 91%; animation-delay: -3.1s; }

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

@keyframes shimmer {
  from { background-position: 0 0, 0 0; }
  to { background-position: 80px 80px, 160px 160px; }
}

@keyframes pulseArt {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

@keyframes zap {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); transform: translateX(0); }
  40% { filter: drop-shadow(0 0 18px var(--yellow)); transform: translateX(3px) rotate(-1deg); }
  42% { transform: translateX(-2px) rotate(1deg); }
}

@keyframes rewardCharge {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 7px 0 #ff244c, 0 0 28px rgba(255, 229, 41, 0.42); }
  50% { transform: translateY(-0.2rem) scale(1.015); box-shadow: 0 10px 0 #ff244c, 0 0 44px rgba(255, 229, 41, 0.72), 0 0 28px rgba(8, 107, 255, 0.45); }
}

@keyframes rewardNumberPop {
  0%, 100% { transform: translateY(0) scale(1); filter: brightness(1); }
  45% { transform: translateY(-2px) scale(1.035); filter: brightness(1.12); }
}

@keyframes rewardButtonPop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-0.16rem) scale(1.018); }
}

@keyframes rewardButtonShine {
  0%, 38% { transform: translateX(-72%) rotate(8deg); opacity: 0; }
  50% { opacity: 1; }
  72%, 100% { transform: translateX(72%) rotate(8deg); opacity: 0; }
}

@keyframes floatBolt {
  0%, 100% { margin-top: 0; opacity: .45; }
  50% { margin-top: -1.2rem; opacity: .85; }
}

@keyframes spark {
  0% { top: -10%; transform: translateX(0) scale(.4); opacity: 0; }
  14% { opacity: 1; }
  100% { top: 110%; transform: translateX(3rem) scale(1.2); opacity: 0; }
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50% { transform: translateY(-1rem) rotate(5deg) scale(1.04); }
}

@keyframes coinSpinGlow {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(18deg); }
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes coinShine {
  0%, 100% { opacity: .32; transform: translateX(-38%); }
  50% { opacity: .82; transform: translateX(26%); }
}

@keyframes lowerCoinFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1); }
  50% { transform: translateY(-1.15rem) rotate(2deg) scale(1.035); }
}

@keyframes coinAura {
  0%, 100% { opacity: 0.72; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes coinThunder {
  0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 8px rgba(255, 229, 41, 0.65)); }
  10% { opacity: 1; transform: translateY(-0.2rem) scale(1.08) rotate(var(--bolt-rotate, 0deg)); }
  12% { opacity: 0.35; }
  16% { opacity: 0.95; }
  44% { opacity: 0.62; }
}

@keyframes thunderStrike {
  0%, 72%, 100% { opacity: 0; }
  74% { opacity: .92; }
  76% { opacity: .18; }
  78% { opacity: .82; }
  81% { opacity: 0; }
}

@media (min-width: 841px) {
  body {
    background:
      linear-gradient(90deg, rgba(255, 229, 41, 0.04) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 229, 41, 0.035) 1px, transparent 1px),
      radial-gradient(circle at 18% 8%, rgba(255, 229, 41, 0.18), transparent 24rem),
      radial-gradient(circle at 84% 0%, rgba(8, 107, 255, 0.24), transparent 28rem),
      linear-gradient(145deg, #050819 0%, #07091d 48%, #12050c 100%);
    background-size: 28px 28px, 28px 28px, auto, auto, auto;
  }

  body::before {
    opacity: 0.25;
  }

  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 0.8rem clamp(1.5rem, 3vw, 3.5rem);
    background: linear-gradient(180deg, rgba(3, 7, 30, 0.98), rgba(3, 7, 30, 0.76));
  }

  .brand {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 3rem;
    height: 3rem;
  }

  .nav {
    justify-content: flex-end;
    gap: clamp(0.6rem, 1vw, 1.1rem);
    font-size: 0.84rem;
  }

  .nav a,
  .nav-contract-pill {
    min-height: 2.55rem;
  }

  .buy-pill {
    padding: 0.58rem 0.9rem;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 840px;
    align-items: center;
    padding: 7rem clamp(2rem, 5vw, 5rem) 4.5rem;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(3, 7, 24, 0.92), rgba(3, 7, 24, 0.28) 48%, rgba(3, 7, 24, 0.7)),
      radial-gradient(circle at 20% 52%, rgba(255, 229, 41, 0.34), transparent 24rem),
      radial-gradient(circle at 72% 28%, rgba(8, 107, 255, 0.42), transparent 24rem);
    clip-path: none;
  }

  .hero-art-wrap {
    inset: 5.4rem 0 auto auto;
    width: min(64vw, 980px);
    height: calc(100% - 5.4rem);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    opacity: 0.94;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  }

  .hero-art {
    object-position: center;
    filter: saturate(1.12) contrast(1.06) brightness(0.9);
    animation: none;
  }

  .hero-copy {
    width: min(700px, 58vw);
    margin: 0;
    padding: clamp(1.3rem, 2vw, 2rem);
    border-left: 0;
    border: 3px solid rgba(255, 229, 41, 0.62);
    border-radius: 0.85rem;
    background:
      radial-gradient(circle at 98% 4%, rgba(255, 229, 41, 0.16), transparent 14rem),
      linear-gradient(145deg, rgba(3, 8, 42, 0.94), rgba(4, 8, 35, 0.74));
    box-shadow: 12px 12px 0 rgba(255, 36, 76, 0.34), 0 30px 90px rgba(0,0,0,0.35);
  }

  h1 {
    font-size: clamp(4.5rem, 6.2vw, 7rem);
    line-height: 0.86;
  }

  h2 {
    font-size: clamp(2.6rem, 4.25vw, 4.8rem);
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-rewards {
    max-width: 32rem;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    padding: 0.72rem 0.9rem;
  }

  .hero-rewards img {
    width: 5.6rem;
  }

  .hero-rewards strong {
    font-size: clamp(3rem, 4.8vw, 4.8rem);
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .primary-cta,
  .secondary-cta {
    min-height: 2.85rem;
    padding: 0.78rem 1rem;
    font-size: 0.92rem;
  }

  .ticker span {
    padding: 0.68rem 1.05rem;
    font-size: 1rem;
  }

  .section {
    width: min(1320px, calc(100% - 4rem));
    padding: clamp(3.4rem, 5.3vw, 5.5rem) 0;
  }

  .buy-zone,
  .viral-reel,
  .thesis,
  .cards-rewards,
  .coin-showcase,
  .vault-section,
  .contract-section,
  .meme-board {
    gap: clamp(1.2rem, 2.5vw, 2.4rem);
  }

  .story-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(13rem, 0.7fr) minmax(0, 1.2fr);
  }

  .panel,
  .mini-card,
  .reward-panel,
  .community-totals article,
  .holders-table,
  .vault-copy,
  .vault-card,
  .vault-console-head,
  .vault-safety,
  .vault-multisig-panel,
  .contract-card {
    border-width: 2px;
    border-radius: 0.45rem;
    box-shadow: 6px 6px 0 rgba(255, 36, 76, 0.26), inset 0 0 34px rgba(8, 107, 255, 0.14);
  }

  .cards-rewards {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    align-items: start;
  }

  .rewards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .reward-main {
    grid-column: span 2;
  }

  .cards-cap strong {
    font-size: clamp(3rem, 4.8vw, 5rem);
  }

  .coin-showcase {
    grid-template-columns: minmax(24rem, 0.9fr) minmax(0, 1.1fr);
  }

  .coin-copy {
    max-width: 38rem;
  }

  .vault-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vault-card {
    min-height: 11rem;
  }

  .vault-card strong {
    font-size: clamp(1.35rem, 2vw, 2.15rem);
  }

  .community-rewards {
    width: min(1280px, calc(100% - 4rem));
    padding-top: 3rem;
  }

  .community-head {
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
    align-items: end;
  }

  .community-head h2 {
    max-width: 48rem;
  }

  .community-totals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .community-totals article {
    min-height: 7.4rem;
    padding: 0.92rem 1rem;
  }

  .community-totals span {
    min-height: 1.6rem;
  }

  .community-totals strong {
    min-height: auto;
    font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  }

  .holders-table {
    max-height: 72rem;
    overflow: auto;
  }

  .holder-row {
    grid-template-columns: minmax(0, 1.3fr) minmax(10rem, 0.7fr) minmax(10rem, 0.7fr);
    padding: 0.68rem 0.9rem;
  }

  .holder-identity {
    grid-template-columns: 1.55rem 2.1rem minmax(0, 1fr);
  }

  .holder-avatar {
    width: 2.1rem;
    height: 2.1rem;
  }

  .contract-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(26rem, 0.9fr);
    align-items: center;
  }

  .meme-board {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 840px) {
  body {
    padding-bottom: 4.8rem;
  }
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding: max(0.58rem, env(safe-area-inset-top)) 0.7rem 0.62rem;
  }
  .brand {
    min-width: 0;
  }
  .brand-mark {
    width: 2.95rem;
    height: 2.95rem;
  }
  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 0.45rem;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0.1rem 0 0.15rem;
  }
  .nav a,
  .nav-contract-pill {
    flex: 1 1 auto;
    min-height: 2.35rem;
    padding: 0.36rem 0.58rem;
    border: 2px solid rgba(255, 229, 41, 0.5);
    border-radius: 999px;
    background: rgba(4, 12, 68, 0.68);
    color: #fff8ab;
    font-size: 0.78rem;
  }
  .nav-contract-pill {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 2.55rem;
    padding: 0.42rem 0.5rem 0.42rem 0.72rem;
    border-color: rgba(255, 229, 41, 0.82);
    background: linear-gradient(90deg, rgba(4, 12, 68, 0.82), rgba(8, 107, 255, 0.42));
    box-shadow: 0 0 18px rgba(255, 229, 41, 0.16);
  }
  .nav-contract-pill span {
    flex: 0 0 auto;
    color: var(--yellow);
  }
  .nav-contract-pill code {
    flex: 1 1 auto;
    display: block;
    min-width: 0;
    overflow: hidden;
    color: white;
    font: 800 0.68rem/1.1 Arial, Helvetica, sans-serif;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-contract-pill b {
    flex: 0 0 auto;
    border: 2px solid #06166f;
    border-radius: 999px;
    padding: 0.22rem 0.52rem;
    color: #09247d;
    background: linear-gradient(180deg, #fff767, #ffc400 55%, #ff8800);
    box-shadow: 0 0 12px rgba(255, 229, 41, 0.32);
  }
  .buy-pill { padding: 0.62rem 0.85rem; font-size: 0.9rem; }
  .hero {
    padding: 10.7rem 1rem 2.4rem;
    min-height: auto;
    align-items: start;
  }
  .hero-art-wrap {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 2.52 / 1;
    border-radius: 1.1rem;
    margin-bottom: 0.85rem;
  }
  .hero-art {
    animation-duration: 4.2s;
  }
  h1 {
    font-size: clamp(2.55rem, 12vw, 4.25rem);
    line-height: 0.9;
    margin-bottom: 0.68rem;
    text-shadow: 0 5px 0 #001a92, 0 9px 0 rgba(255, 36, 76, 0.76), 0 0 24px rgba(255, 229, 41, 0.62);
  }
  .hero-copy {
    margin-top: 0;
    width: 100%;
    padding: 0.95rem;
    border-left-width: 6px;
    background: linear-gradient(112deg, rgba(3, 8, 42, 0.94), rgba(33, 8, 58, 0.72));
    box-shadow: -7px 7px 0 rgba(255, 36, 76, 0.42);
  }
  .eyebrow {
    margin-bottom: 0.58rem;
    font-size: 0.82rem;
    line-height: 1.18;
  }
  .lead {
    font-size: 0.98rem;
    line-height: 1.45;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.62rem;
    margin-top: 1rem;
  }
  .hero-rewards {
    width: 100%;
    margin-bottom: 0.9rem;
  }
  .primary-cta,
  .secondary-cta {
    min-height: 3.05rem;
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
  .buy-pill,
  .primary-cta,
  .secondary-cta,
  .contract-box button,
  .link-strip a,
  .sticky-buy a,
  .sticky-buy button {
    min-height: 44px;
  }
  .ticker span {
    padding: 0.66rem 0.9rem;
    font-size: 0.96rem;
  }
  .buy-zone {
    grid-template-columns: 1fr;
    padding-block: 1.25rem;
  }
  .buy-zone-button {
    width: 100%;
    min-height: 3.7rem;
  }
  .vault-section {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .vault-copy {
    padding: 1rem;
  }
  .vault-action-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    width: 100%;
    min-width: 0;
  }
  .vault-console,
  .vault-console > *,
  .vault-action-grid > * {
    min-width: 0;
    max-width: 100%;
  }
  .vault-console-head,
  .vault-safety {
    display: grid;
    gap: 0.35rem;
    padding: 0.75rem 0.85rem;
  }
  .vault-card {
    width: 100%;
    min-height: auto;
    padding: 0.9rem;
  }
  .vault-card strong {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
  .vault-flow {
    justify-content: flex-start;
    border-radius: 1rem;
    font-size: 0.76rem;
  }
  .section {
    width: min(100% - 1.4rem, 1180px);
    padding: 3rem 0;
  }
  .story-card, .stat-card {
    padding: 1rem;
  }
  h2 {
    font-size: clamp(2rem, 11vw, 3.5rem);
  }
  .mini-card,
  .mini-card > * {
    transform: none;
  }
  .cards-token {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cards-token img {
    margin: 0 auto;
    width: 5.8rem;
  }
  .rewards-grid {
    grid-template-columns: 1fr;
  }
  .reward-main {
    grid-row: auto;
  }
  .cards-cap {
    min-height: 9.4rem;
  }
  .cards-cap strong {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }
  .coin-showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1rem;
  }
  .coin-stage {
    min-height: 20rem;
  }
  .coin-stage img {
    width: min(82vw, 22rem);
  }
  .coin-copy {
    padding: 1rem;
    box-shadow: 7px 7px 0 rgba(255, 36, 76, 0.35);
  }
  .coin-stats {
    width: 100%;
  }
  .community-head {
    grid-template-columns: 1fr;
  }
  .fomo-badge {
    justify-self: stretch;
    border-radius: 1rem;
  }
  .community-totals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
  }
  .community-totals article {
    min-height: 6.4rem;
    padding: 0.55rem 0.45rem;
    border-width: 2px;
    box-shadow: 4px 4px 0 rgba(255, 36, 76, 0.28);
  }
  .community-totals span {
    min-height: 2rem;
    font-size: 0.62rem;
    line-height: 1.05;
  }
  .community-totals strong {
    min-height: 2.5rem;
    font-size: clamp(1.7rem, 8.8vw, 2.35rem);
    -webkit-text-stroke-width: 0.9px;
    text-shadow: 0 3px 0 var(--red);
  }
  .community-totals small {
    font-size: 0.58rem;
  }
  .holder-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(5.8rem, 0.7fr) minmax(5.8rem, 0.7fr);
    padding: 0.45rem 0.55rem;
    font-size: 0.66rem;
  }
  .holder-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(5.8rem, 0.7fr) minmax(5.8rem, 0.7fr);
    gap: 0.42rem;
    padding: 0.48rem 0.55rem;
    font-size: 0.78rem;
  }
  .holder-identity {
    grid-template-columns: 1.35rem 1.72rem minmax(0, 1fr);
    gap: 0.32rem;
  }
  .holder-rank {
    font-size: 0.72rem;
    min-width: 0;
  }
  .holder-avatar {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.78rem;
    border-width: 1px;
  }
  .holder-row.is-fomo .holder-avatar {
    width: 1.72rem;
    height: 1.72rem;
  }
  .holder-label strong,
  .holder-label a {
    font-size: 0.78rem;
  }
  .holder-label small,
  .holder-bag small,
  .holder-reward small {
    font-size: 0.65rem;
  }
  .holder-actions {
    gap: 0.2rem;
    margin-top: 0.08rem;
  }
  .holder-action {
    width: 1.18rem;
    height: 1.18rem;
    font-size: 0.62rem;
    border-width: 1px;
  }
  .holder-bag,
  .holder-reward {
    gap: 0;
  }
  .holder-bag strong,
  .holder-reward strong {
    font-size: 0.78rem;
  }
  .contract-card {
    padding: 1rem;
  }
  .contract-box {
    padding: 0.58rem;
  }
  .contract-box code {
    font-size: 0.78rem;
  }
  .story-grid, .thesis {
    grid-template-columns: 1fr;
  }
  .viral-reel {
    grid-template-columns: 1fr;
    padding-top: 2.4rem;
  }
  .reel-frame {
    width: min(100%, 390px);
    min-height: 520px;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 7px 7px 0 rgba(255, 36, 76, 0.38), 0 0 34px rgba(8, 107, 255, 0.38);
  }
  .bolt {
    width: 7rem;
    height: 7rem;
    opacity: 0.38;
  }
  .storm {
    height: 35vh;
    opacity: 0;
  }
  .contract-box { grid-template-columns: 1fr; }
  .contract-box button { width: 100%; }
  .link-strip {
    display: grid;
    grid-template-columns: 1fr;
  }
  .link-strip a {
    width: 100%;
  }
  .dog-lore {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dog-lore-copy {
    padding: 1rem;
    box-shadow: 7px 7px 0 rgba(255, 36, 76, 0.35);
  }
  .dog-lore-grid {
    grid-template-columns: 1fr;
  }
  .dog-source-strip a {
    width: 100%;
  }
  .footer {
    flex-direction: column;
    padding-bottom: 5.6rem;
    font-size: 0.86rem;
  }
  .sticky-buy {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.75rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .sticky-buy.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .sticky-buy span {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand { font-size: 1rem; }
  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }
  .buy-pill {
    font-size: 0.82rem;
    padding-inline: 0.72rem;
  }
  h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.7rem);
  }
}

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