/* ===========================
   MUMU — MEMECOIN CSS v2
   =========================== */

:root {
  --cream: #fff8ed;
  --ink: #1e1a14;
  --green: #5a8a4a;
  --green-light: #8dba7a;
  --yellow: #f5c842;
  --orange: #e8863a;
  --red: #e84040;
  --blue: #4a8cc8;
  --card-bg: rgba(255, 248, 237, 0.82);
  --card-border: rgba(90, 60, 20, 0.15);
  --shadow: rgba(40, 30, 10, 0.25);
  --font-display: 'Bangers', 'Impact', cursive;
  --font-title: 'Fredoka One', 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow: hidden;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--ink);
  height: 100%;
  overflow: hidden;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: #fff8ed;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-img {
  width: 100px;
  animation: bob 1.4s ease-in-out infinite;
}
.loader-text {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--green);
  font-weight: 700;
}
.loader-bar {
  width: 200px;
  height: 8px;
  background: #e8d8b8;
  border-radius: 99px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  border-radius: 99px;
  animation: loadfill 1.2s ease-out forwards;
}
@keyframes loadfill {
  from { width: 0%; }
  to { width: 100%; }
}

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 248, 237, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(90, 138, 74, 0.25);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(40, 30, 10, 0.15);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 1px;
}
.brand img { width: 36px; height: 36px; object-fit: contain; }
.navlinks {
  display: flex;
  gap: 2px;
}
.navlinks a {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background 0.2s;
}
.navlinks a:hover { background: rgba(90, 138, 74, 0.15); }
.nav-cta {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 14px;
  background: linear-gradient(135deg, #5a8a4a, #3d6634);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(90, 138, 74, 0.4);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 138, 74, 0.5);
}

/* ===== SCROLL CONTAINER ===== */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
/* Hide scrollbar but keep scroll */
.scroll-container::-webkit-scrollbar { display: none; }
.scroll-container { -ms-overflow-style: none; scrollbar-width: none; }

/* ===== SNAP SECTION BASE ===== */
.snap-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== BACKGROUND SYSTEM ===== */
.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.1) brightness(0.9);
}
.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255,248,237,0.55) 0%, rgba(230,220,190,0.45) 100%);
}
.overlay-green { background: linear-gradient(135deg, rgba(200,230,185,0.6) 0%, rgba(120,170,100,0.4) 100%); }
.overlay-warm  { background: linear-gradient(135deg, rgba(255,240,200,0.65) 0%, rgba(240,180,100,0.45) 100%); }
.overlay-dark  { background: linear-gradient(135deg, rgba(20,20,15,0.72) 0%, rgba(40,55,30,0.65) 100%); }
.overlay-game  { background: linear-gradient(135deg, rgba(20,30,50,0.75) 0%, rgba(30,50,80,0.7) 100%); }
.overlay-join  { background: linear-gradient(135deg, rgba(255,248,237,0.7) 0%, rgba(200,240,180,0.5) 100%); }

/* ===== FLOATING ANIMATION ===== */
.float-char {
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}

/* ============ HERO ============ */
.hero-bg, .lore-bg, .token-bg, .road-bg, .game-bg, .join-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 2;
  pointer-events: none;
}
.b1 { width: 400px; height: 400px; background: radial-gradient(circle, #8dba7a, transparent); top: -100px; right: -100px; }
.b2 { width: 300px; height: 300px; background: radial-gradient(circle, #f5c842, transparent); bottom: 0; left: -80px; }
.b3 { width: 200px; height: 200px; background: radial-gradient(circle, #e8863a, transparent); top: 40%; right: 20%; }
.b4 { width: 150px; height: 150px; background: radial-gradient(circle, #5a8a4a, transparent); top: 20%; left: 30%; }

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 80px;
}

.hero-left { display: flex; flex-direction: column; gap: 18px; }

.badge-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 18px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(90,138,74,0.3);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(90px, 14vw, 200px);
  line-height: 0.85;
  color: var(--ink);
  text-shadow: 6px 6px 0 rgba(90,138,74,0.25), 0 12px 40px rgba(40,30,10,0.15);
  letter-spacing: 4px;
}

.hero-ticker {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 54px);
  color: var(--green);
  font-weight: 700;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stat-pill {
  padding: 7px 16px;
  background: rgba(90,138,74,0.15);
  border: 1.5px solid rgba(90,138,74,0.3);
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  background: linear-gradient(135deg, #5a8a4a, #3d6634);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(90,138,74,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-main svg { width: 20px; height: 20px; }
.pump-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.btn-main .pump-icon {
  width: 20px;
  height: 20px;
}

.btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(90,138,74,0.5); }

.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.65);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid rgba(90,60,20,0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.2s, background 0.2s;
}
.btn-sec svg { width: 18px; height: 18px; }
.btn-sec:hover { transform: translateY(-3px); background: rgba(255,255,255,0.85); }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.hero-char {
  width: min(380px, 40vw);
  filter: drop-shadow(0 20px 40px rgba(40,30,10,0.3));
  z-index: 5;
}
.coin-spin {
  position: absolute;
  font-size: 60px;
  animation: spinCoin 3s linear infinite, bob 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(200,160,50,0.5));
  top: 15%;
  right: 10%;
  z-index: 3;
}
.coin-spin.c2 {
  font-size: 40px;
  top: 60%;
  right: 35%;
  animation-delay: -1.5s;
}
@keyframes spinCoin {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  color: var(--green);
  opacity: 0.8;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-arrow {
  font-size: 22px;
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 0.8; transform: translateX(-50%) translateY(0); }
}

/* ============ SECTION BADGES / TITLES ============ */
.section-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 18px;
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(90,60,20,0.18);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
  margin-bottom: 16px;
}
.section-badge.centered { margin-left: auto; margin-right: auto; display: flex; width: fit-content; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: 2px;
}
.section-title.centered { text-align: center; }
.section-title.white { color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }

/* ============ LORE ============ */
.lore-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 0 5vw;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.lore-char-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 450px;
}
.lore-char {
  width: min(320px, 35vw);
  filter: drop-shadow(0 20px 40px rgba(40,80,30,0.35));
}
.lore-emoji-float {
  position: absolute;
  font-size: 40px;
  animation: bob 4s ease-in-out infinite;
}
.e1 { top: 15%; left: 5%; animation-delay: 0s; }
.e2 { top: 5%; right: 15%; animation-delay: -1.5s; }
.e3 { bottom: 25%; right: 5%; animation-delay: -0.8s; font-size: 50px; }

.lore-card {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 32px;
  padding: 36px 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(40,30,10,0.15);
}
.lore-card p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}
.lore-card strong { color: var(--green); }

.lore-quote {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(90,138,74,0.1);
  border-left: 4px solid var(--green);
  border-radius: 0 16px 16px 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.6;
}
.lore-quote em { color: var(--green); font-style: normal; }

/* ============ TOKENOMICS ============ */
.token-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 80px 5vw 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  margin-bottom: 36px;
}

.token-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 28px;
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(40,30,10,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.token-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(40,30,10,0.2);
}
.card-glow-green { border-color: rgba(90,138,74,0.4); box-shadow: 0 12px 40px rgba(90,138,74,0.2); }
.card-glow-yellow { border-color: rgba(245,200,66,0.4); box-shadow: 0 12px 40px rgba(245,200,66,0.2); }
.card-glow-blue   { border-color: rgba(74,140,200,0.4); box-shadow: 0 12px 40px rgba(74,140,200,0.2); }
.card-glow-pink   { border-color: rgba(220,80,130,0.4); box-shadow: 0 12px 40px rgba(220,80,130,0.2); }

.token-icon { font-size: 40px; margin-bottom: 12px; }
.token-value {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  color: var(--ink);
  letter-spacing: 1px;
  line-height: 1;
}
.token-label {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(30,26,20,0.65);
  margin-top: 8px;
}

.supply-bar-wrap {
  width: 100%;
  max-width: 800px;
  margin-bottom: 24px;
}
.supply-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.supply-bar {
  display: flex;
  height: 50px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(40,30,10,0.15);
  border: 1.5px solid rgba(40,30,10,0.12);
}
.supply-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.s-community { background: linear-gradient(90deg, #5a8a4a, #7ab860); }
.s-lp        { background: linear-gradient(90deg, #f5c842, #e8a832); }
.s-dev       { background: linear-gradient(90deg, #e87050, #d05030); }

.token-char {
  position: absolute;
  bottom: 20px;
  right: 4vw;
  width: min(200px, 18vw);
  z-index: 5;
  filter: drop-shadow(0 16px 30px rgba(40,30,10,0.2));
}

/* ============ ROADMAP ============ */
.road-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 80px 5vw 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.road-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  position: relative;
}
.road-steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 3px;
  background: linear-gradient(90deg, rgba(90,138,74,0.4), rgba(245,200,66,0.5), rgba(90,138,74,0.3));
  z-index: 0;
  border-radius: 3px;
}

.road-step {
  background: rgba(30, 40, 20, 0.7);
  border: 1.5px solid rgba(120, 180, 80, 0.25);
  border-radius: 28px;
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(16px);
  color: #f0efe8;
  position: relative;
  z-index: 1;
  transition: transform 0.25s, border-color 0.25s;
}
.road-step:hover {
  transform: translateY(-8px);
  border-color: rgba(120,180,80,0.6);
}
.active-step {
  border-color: rgba(90,138,74,0.8);
  background: rgba(40, 70, 30, 0.75);
  box-shadow: 0 0 30px rgba(90,138,74,0.3);
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(120,180,80,0.25);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.step-icon { font-size: 36px; margin-bottom: 12px; }
.road-step h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #e8f0d8;
}
.road-step p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(220,230,200,0.8);
  margin-bottom: 16px;
}
.step-status {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.done { background: rgba(90,138,74,0.3); color: #a0d870; border: 1px solid rgba(90,138,74,0.5); }
.in-progress { background: rgba(245,200,66,0.2); color: #f0c842; border: 1px solid rgba(245,200,66,0.4); }
.soon { background: rgba(74,140,200,0.2); color: #88b8f0; border: 1px solid rgba(74,140,200,0.4); }

.road-char {
  position: absolute;
  bottom: 20px;
  right: 3vw;
  width: min(180px, 15vw);
  z-index: 5;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.4));
}

/* ============ GAME ============ */
.game-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1000px;
  padding: 80px 5vw 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.game-header { text-align: center; }
.game-header .section-title { color: #e8f4ff; font-size: clamp(36px, 5vw, 70px); margin-bottom: 10px; }
.game-desc {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: rgba(200,220,255,0.8);
  text-align: center;
}

.game-area {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 2.5px solid rgba(100,140,220,0.4);
  box-shadow: 0 0 50px rgba(60,100,200,0.4), inset 0 0 100px rgba(20,40,80,0.5);
  background: linear-gradient(180deg, #1a2a50 0%, #0d1a35 60%, #1a3010 100%);
}

#gameCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

.game-ui {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}
.game-score-display, .game-high-display {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.35);
  padding: 6px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(10, 20, 40, 0.75);
  backdrop-filter: blur(6px);
  z-index: 20;
  transition: opacity 0.4s;
}
.game-overlay.hidden { opacity: 0; pointer-events: none; }

.game-over-char {
  width: 80px;
  animation: bob 2s ease-in-out infinite;
}
.game-overlay-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(100,200,255,0.5);
}
.game-overlay-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: rgba(180,210,255,0.8);
}
.game-start-btn {
  margin-top: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #5a8a4a, #3d6634);
  color: #fff;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(90,138,74,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-start-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(90,138,74,0.6);
}

/* ============ JOIN / FOOTER ============ */
.join-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 80px 5vw 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.join-char {
  width: min(120px, 15vw);
  filter: drop-shadow(0 12px 24px rgba(40,30,10,0.25));
}

.join-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 110px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: 3px;
  text-shadow: 4px 4px 0 rgba(90,138,74,0.2);
}
.join-sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  color: rgba(30,26,20,0.75);
  line-height: 1.5;
}

.join-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.social-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.social-btn:hover { transform: translateY(-4px); }

.pump { background: linear-gradient(135deg, #5a8a4a, #3d6634); color: #fff; box-shadow: 0 6px 20px rgba(90,138,74,0.4); }
.pump:hover { box-shadow: 0 12px 30px rgba(90,138,74,0.5); }

.twitter { background: #0d0d0d; color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.twitter:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.4); }

.telegram { background: linear-gradient(135deg, #2aabee, #1a8bc8); color: #fff; box-shadow: 0 6px 20px rgba(42,171,238,0.4); }
.telegram:hover { box-shadow: 0 12px 30px rgba(42,171,238,0.5); }

.dex { background: linear-gradient(135deg, #1e2a1e, #2a3a2a); color: #7cf080; border-color: rgba(90,220,80,0.3); box-shadow: 0 6px 20px rgba(90,200,80,0.2); }
.dex:hover { box-shadow: 0 12px 30px rgba(90,200,80,0.35); }

.ca-box {
  width: 100%;
  max-width: 600px;
  background: rgba(255,248,237,0.7);
  border: 1.5px solid rgba(90,60,20,0.18);
  border-radius: 20px;
  padding: 18px 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(40,30,10,0.12);
}
.ca-label {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(30,26,20,0.5);
  display: block;
  margin-bottom: 8px;
}
.ca-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  word-break: break-all;
}
.ca-copy {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  color: var(--green);
  transition: transform 0.2s;
}
.ca-copy:hover { transform: scale(1.2); }
.ca-copy svg { width: 18px; height: 18px; }
.ca-copied {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  color: var(--green);
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.ca-copied.show { opacity: 1; }

.disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: rgba(30,26,20,0.45);
  text-align: center;
  max-width: 480px;
}

/* ===== NAV DOTS ===== */
.nav-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(90,60,20,0.25);
  border: 2px solid rgba(90,60,20,0.35);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.dot:hover { background: rgba(90,138,74,0.5); border-color: rgba(90,138,74,0.7); }
.dot.active {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(90,138,74,0.6);
  transform: scale(1.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navlinks { display: none; }
  .nav-cta { display: none; }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 100px;
    gap: 20px;
  }
  .hero-right { display: none; }
  .hero-title { font-size: 100px; }

  .lore-content { grid-template-columns: 1fr; }
  .lore-char-wrap { height: 200px; }
  .lore-char { width: 180px; }

  .token-grid { grid-template-columns: repeat(2, 1fr); }

  .road-steps { grid-template-columns: repeat(2, 1fr); }
  .road-steps::before { display: none; }
  .road-char { display: none; }

  .game-area { height: 250px; }

  .join-title { font-size: 60px; }
  .join-socials { gap: 10px; }
  .social-btn { padding: 12px 18px; font-size: 14px; }

  .nav-dots { right: 10px; }
}

@media (max-width: 560px) {
  .token-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .road-steps { grid-template-columns: 1fr; }
  .hero-title { font-size: 80px; }
  .join-title { font-size: 50px; }
  .supply-seg span { display: none; }
  .btn-sec span { display: none; }
}
