:root {
  --green: #2ea44f;
  --green-deep: #1a7a36;
  --green-bg: #173d22;
  --lime: #b6ff5c;
  --yellow: #ffe34d;
  --red: #ff4757;
  --blue: #2f80ed;
  --pink: #ff61c3;
  --purple: #9b59ff;
  --bg: #0e2014;
  --card: #1b3424;
  --text: #f3fff1;
  --muted: #b9d7be;
  --shadow: 0 6px 0 #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Comic Neue", "Comic Sans MS", system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, #1f4a2c 0%, transparent 60%),
    radial-gradient(circle at 80% 90%, #1f4a2c 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      #0e2014 0,
      #0e2014 40px,
      #102818 40px,
      #102818 80px
    );
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ===== money rain canvas ===== */
#money-rain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* ===== TOP BAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  background: rgba(14, 32, 20, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid #000;
  box-shadow: 0 4px 0 #00000066;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Bungee", sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  margin-right: 12px;
  font-weight: 700;
}
.nav a {
  opacity: 0.85;
  transition: opacity 0.15s, transform 0.15s;
}
.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.x-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}
.x-link:hover {
  background: #fff;
  color: #000;
}
.x-link svg { display: block; }

/* ===== BUY BUTTONS ===== */
.buy-btn {
  display: inline-block;
  background: var(--yellow);
  color: #111;
  font-family: "Bungee", sans-serif;
  letter-spacing: 1px;
  border: 3px solid #000;
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.08s, box-shadow 0.08s, background 0.2s;
  cursor: pointer;
}
.buy-btn:hover {
  background: #fff04d;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #000;
}
.buy-btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #000;
}
.buy-btn--big {
  padding: 18px 32px;
  font-size: 22px;
  background: linear-gradient(180deg, #ffe34d 0%, #ffb800 100%);
}
.buy-btn--top {
  padding: 10px 18px;
  font-size: 14px;
}

.ghost-btn {
  display: inline-block;
  padding: 16px 24px;
  border: 3px dashed var(--lime);
  border-radius: 12px;
  font-weight: 800;
  color: var(--lime);
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s, color 0.2s;
}
.ghost-btn:hover {
  background: var(--lime);
  color: #111;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 30px;
  padding: 60px 6vw 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero__inner { position: relative; }

.hero__logo {
  width: min(560px, 90%);
  margin: 0 0 24px;
  filter: drop-shadow(0 6px 0 #000) drop-shadow(0 0 20px #00000088);
  animation: wobble 3s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}

.hero__title {
  font-family: "Bungee", sans-serif;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.05;
  margin: 0 0 16px;
  text-shadow: 4px 4px 0 #000;
}
.rainbow {
  background: linear-gradient(
    90deg,
    #ff4757,
    #ffa502,
    #ffe34d,
    #2ed573,
    #1e90ff,
    #9b59ff,
    #ff4757
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px #000;
  animation: rainbow-slide 5s linear infinite;
}
@keyframes rainbow-slide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}
.cta-row--center { justify-content: center; }

.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #000;
  border: 3px solid var(--lime);
  border-radius: 999px;
  max-width: 100%;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.08s;
}
.ca-pill:hover { border-color: var(--yellow); }
.ca-pill__label {
  background: var(--lime);
  color: #000;
  font-family: "Bungee", sans-serif;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
}
.ca-pill__value {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 13px;
  color: #d6ffe0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 56vw;
}
.ca-pill__copy {
  background: var(--yellow);
  color: #000;
  border: 2px solid #000;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Bungee", sans-serif;
}

.hero__pepe {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  filter: drop-shadow(0 12px 0 #000) drop-shadow(0 0 30px #00000088);
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

/* ===== MARQUEE ===== */
.marquee {
  position: relative;
  z-index: 1;
  background: var(--yellow);
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  overflow: hidden;
  padding: 12px 0;
  color: #111;
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: "Bungee", sans-serif;
  font-size: 18px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 80px auto;
  padding: 0 6vw;
}
.about__media img {
  border: 4px solid #000;
  border-radius: 22px;
  box-shadow: 10px 10px 0 #000;
  transform: rotate(-2deg);
  background: #fff;
}
.about__copy h2 {
  font-family: "Bungee", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 0 18px;
  text-shadow: 3px 3px 0 #000;
  color: var(--lime);
}
.about__copy p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 14px;
  color: #e8ffe5;
}
.retard-quote {
  background: rgba(0, 0, 0, 0.45);
  border-left: 6px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 8px;
  font-style: italic;
  color: #fff !important;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-family: "Bungee", sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  margin: 0 0 40px;
  text-shadow: 4px 4px 0 #000;
}

/* ===== HOW TO BUY ===== */
.how {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 80px auto;
  padding: 0 6vw;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.step {
  background: var(--card);
  border: 3px solid #000;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 6px 6px 0 #000;
  transition: transform 0.2s;
}
.step:hover { transform: translateY(-6px); }
.step__num {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bungee", sans-serif;
  font-size: 22px;
  color: #000;
  margin-bottom: 12px;
}
.step h3 {
  margin: 0 0 6px;
  font-family: "Bungee", sans-serif;
  font-size: 17px;
  color: var(--lime);
}
.step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* ===== BUY BOX ===== */
.buy-box {
  background: linear-gradient(180deg, #163b21 0%, #0a1f10 100%);
  border: 4px solid #000;
  border-radius: 22px;
  padding: 32px 24px;
  box-shadow: 10px 10px 0 #000;
  text-align: center;
}
.buy-box h3 {
  font-family: "Bungee", sans-serif;
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 22px;
  text-shadow: 2px 2px 0 #000;
}
.buy-box__ca {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #000;
  padding: 12px 16px;
  border: 3px solid var(--lime);
  border-radius: 12px;
  max-width: 100%;
  margin: 0 auto 22px;
  word-break: break-all;
}
.buy-box__ca code {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 14px;
  color: #d6ffe0;
}
.copy-2 {
  background: var(--yellow);
  border: 2px solid #000;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: "Bungee", sans-serif;
  font-size: 12px;
  color: #000;
  cursor: pointer;
}
.buy-box .buy-btn--big { margin: 0 8px 8px; }
.buy-box .ghost-btn   { margin: 0 8px 8px; }

/* ===== TOKENOMICS ===== */
.tokenomics {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 80px auto;
  padding: 0 6vw;
}
.tokes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.toke {
  background: var(--card);
  border: 3px solid #000;
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 6px 6px 0 #000;
  transition: transform 0.2s, background 0.2s;
}
.toke:hover { transform: rotate(-1deg) translateY(-4px); }
.toke:nth-child(1) { background: linear-gradient(180deg, #2ea44f, #1a7a36); }
.toke:nth-child(2) { background: linear-gradient(180deg, #ff61c3, #b32f8a); }
.toke:nth-child(3) { background: linear-gradient(180deg, #ffe34d, #ffb800); color: #111; }
.toke:nth-child(4) { background: linear-gradient(180deg, #2f80ed, #1755a8); }
.toke__num {
  font-family: "Bungee", sans-serif;
  font-size: 48px;
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 8px;
}
.toke__label {
  font-family: "Bungee", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.toke__label small {
  display: block;
  font-family: "Comic Neue", system-ui;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
  opacity: 0.85;
}

/* ===== GALLERY ===== */
.gallery {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 80px auto;
  padding: 0 6vw;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.gallery figure {
  margin: 0;
  background: #fff;
  border: 4px solid #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 8px 8px 0 #000;
  transition: transform 0.2s;
}
.gallery figure:hover { transform: translateY(-6px) rotate(0.5deg); }
.gallery figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.gallery figcaption {
  background: var(--card);
  color: var(--lime);
  font-weight: 700;
  padding: 12px 14px;
  font-size: 14px;
  border-top: 3px solid #000;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 6vw 40px;
  background: linear-gradient(180deg, transparent 0%, #061309 100%);
  margin-top: 60px;
  border-top: 4px solid #000;
}
.footer__banner {
  max-width: 720px;
  margin: 0 auto 20px;
  border: 4px solid #000;
  border-radius: 18px;
  box-shadow: 8px 8px 0 #000;
}
.footer h2 {
  font-family: "Bungee", sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 0 0 8px;
  text-shadow: 3px 3px 0 #000;
}
.footer p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 auto 22px;
  max-width: 680px;
  line-height: 1.55;
}
.fineprint {
  font-size: 13px !important;
  opacity: 0.7;
  margin-top: 30px !important;
}
.copyright {
  font-size: 12px !important;
  opacity: 0.6;
  margin-top: 8px !important;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: #000;
  color: var(--lime);
  border: 3px solid var(--lime);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: "Bungee", sans-serif;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 1000;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 30px;
  }
  .hero__logo { margin-left: auto; margin-right: auto; }
  .hero__pepe { max-width: 280px; margin: 0 auto; }
  .cta-row { justify-content: center; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about__media { display: flex; justify-content: center; }
  .about__media img { max-width: 360px; }
  .steps, .tokes { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}
@media (max-width: 540px) {
  .steps, .tokes { grid-template-columns: 1fr; }
  .ca-pill__value { max-width: 50vw; }
  .hero__title { font-size: 32px; }
}
