/* =====================================================
   $YETTI — PREMIUM CRYPTO MEME V3
   Captain Yettihood | RobinhoodChain
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Black+Han+Sans&family=Boogaloo&family=Russo+One&family=Nunito:wght@400;700;800;900&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Vibrant Neons */
  --neon-yellow: #d4ff00;
  --neon-green: #00ff66;
  --neon-cyan: #00f0ff;
  --neon-pink: #ff0055;
  --neon-purple: #b000ff;

  /* Glassmorphism System */
  --glass-bg: rgba(12, 16, 36, 0.45);
  --glass-bg-hover: rgba(20, 26, 50, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-glow: rgba(212, 255, 0, 0.3);
  --glass-highlight: rgba(255, 255, 255, 0.25);
  --glass-blur: blur(24px);
  --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);

  /* Core Colors */
  --ink: #030510;
  --snow: #ffffff;
  --ice: #b0c4de;

  /* Typography */
  --font-meme: 'Bangers', cursive;
  --font-bold: 'Russo One', sans-serif;
  --font-fun: 'Boogaloo', cursive;
  --font-body: 'Nunito', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  
  --transition-fast: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: #070914;
  background-image: url('assets/bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: var(--snow);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Global Epic Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(176,0,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,240,255,0.15) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(3,5,16,0.1) 0%, rgba(3,5,16,0.3) 100%);
  pointer-events: none;
  z-index: 0;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ---- Floating Emojis ---- */
#float-emojis {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.float-emoji {
  position: absolute;
  font-size: 1.5rem;
  animation: floatUp linear infinite;
  opacity: 0.15;
  user-select: none;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}
@keyframes floatUp {
  0% { transform: translateY(110vh) rotate(0deg) scale(0.8); opacity: 0; }
  10% { opacity: 0.15; transform: translateY(100vh) rotate(45deg) scale(1); }
  90% { opacity: 0.15; transform: translateY(10vh) rotate(675deg) scale(1); }
  100% { transform: translateY(-10vh) rotate(720deg) scale(0.8); opacity: 0; }
}

/* ====================================
   GIANT TICKER DIVIDERS
===================================================== */
.giant-ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 5;
  position: relative;
  transform: rotate(-2deg) scale(1.05); /* Aggressive crypto slant */
}
.giant-ticker-move {
  display: inline-flex;
  gap: 30px;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.giant-ticker-move.reverse {
  animation-direction: reverse;
}
.giant-ticker-move span {
  font-family: var(--font-meme);
  font-size: clamp(5rem, 12vw, 10rem);
  white-space: nowrap;
  line-height: 1;
}
.giant-ticker-move .slash {
  color: #CCFF00;
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.6);
  margin: 0 10px;
}
.giant-ticker-move .t-trans {
  color: rgba(204, 255, 0, 0.15);
  -webkit-text-stroke: 2px #CCFF00;
}

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

/* ====================================
   PREMIUM NAVBAR
===================================================== */
.navbar {
  position: fixed;
  top: 40px; 
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1280px;
  z-index: 999;
  background: #CCFF00;
  border-radius: 999px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  top: 10px;
  background: #CCFF00;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(204,255,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.logo-spin {
  display: inline-block;
  animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-text {
  font-family: var(--font-meme);
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #000;
}

.nav-price-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.4);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-bold);
  font-size: 0.8rem;
  margin-left: 10px;
  box-shadow: inset 0 0 10px rgba(0,255,102,0.1);
}

.price-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-bold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  color: #000;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: #fff;
  background: #000;
}

.nav-cta {
  background: linear-gradient(135deg, var(--neon-yellow), #99bb00) !important;
  color: var(--ink) !important;
  box-shadow: 0 4px 15px rgba(212,255,0,0.4) !important;
  border: none !important;
  margin-left: 10px;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212,255,0,0.6) !important;
}

/* ====================================
   3D PREMIUM BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-bold);
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.btn-buy {
  background: linear-gradient(180deg, #e4ff4d, var(--neon-yellow));
  color: var(--ink);
  border: none;
  border-bottom: 6px solid #88aa00;
  box-shadow: 0 10px 30px rgba(212,255,0,0.4), inset 0 2px 0 rgba(255,255,255,0.8);
  font-size: 1.3rem;
  padding: 20px 40px;
  animation: float-btn 3s ease-in-out infinite;
}

@keyframes float-btn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(212,255,0,0.6), inset 0 2px 0 rgba(255,255,255,0.8); }
}

.btn-buy:active {
  border-bottom-width: 0px;
  transform: translateY(6px) !important;
  box-shadow: 0 2px 10px rgba(212,255,0,0.4), inset 0 4px 10px rgba(0,0,0,0.2) !important;
  animation: none;
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: var(--snow);
  border: 1px solid rgba(255,255,255,0.2);
  border-bottom: 4px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-2px);
}
.btn-ghost:active {
  border-bottom-width: 0px;
  transform: translateY(4px);
}

/* ====================================
   EPIC HERO SECTION
===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.meme-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}

.meme-badge {
  font-family: var(--font-bold);
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.meme-badge.hot { border-color: var(--neon-pink); color: var(--neon-pink); box-shadow: 0 0 15px rgba(255,0,85,0.3); }
.meme-badge.new { border-color: var(--neon-yellow); color: var(--neon-yellow); box-shadow: 0 0 15px rgba(212,255,0,0.3); }
.meme-badge.safe { border-color: var(--neon-green); color: var(--neon-green); box-shadow: 0 0 15px rgba(0,255,102,0.3); }

/* Massive 3D Text */
.hero-title-wrapper {
  text-align: center;
  position: relative;
}

.hero-title {
  font-family: var(--font-meme);
  font-size: clamp(4rem, 10vw, 12rem);
  white-space: nowrap;
  line-height: 1;
  margin: 0;
  padding: 20px 30px;
  text-transform: uppercase;
  color: #000;
  -webkit-text-stroke: 1px #fff;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(255,255,255,0.2));
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(10deg);
}

.hero-title .highlight {
  color: #CCFF00;
  -webkit-text-stroke: 0px;
}

.hero-tagline {
  font-family: var(--font-bold);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 6px;
  color: var(--ice);
  text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

/* Hero Center Showcase */
.hero-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  margin-top: 20px;
}

/* Glass Panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  border-left: 1px solid var(--glass-highlight);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  padding: 24px;
  flex: 1;
  transition: var(--transition-smooth);
}
.glass-panel:hover {
  transform: translateY(-5px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-glow);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(212,255,0,0.15);
}

.glass-panel-title {
  font-family: var(--font-bold);
  font-size: 0.9rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.glass-panel-value {
  font-family: var(--font-meme);
  font-size: 3rem;
  color: var(--snow);
  line-height: 1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.glass-panel-value.yellow { color: var(--neon-yellow); text-shadow: 0 0 20px rgba(212,255,0,0.4); }

.glass-panel-sub {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  color: var(--ice);
  margin-top: 8px;
}

/* Character Graphic */
.hero-char-container {
  position: relative;
  width: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-char {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8)) drop-shadow(0 0 60px rgba(0,240,255,0.3));
  animation: float-char 4s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

@keyframes float-char {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
}

.magic-circle {
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(212,255,0,0.15) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-circle 3s infinite alternate;
}

@keyframes pulse-circle {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}

.hero-cta-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  z-index: 10;
}

/* Contract Bar Premium */
.contract-bar {
  margin-top: 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 10px 20px rgba(0,0,0,0.4);
}
.ca-label { font-family: var(--font-bold); color: var(--ice); font-size: 0.9rem; }
.ca-addr { font-family: 'Courier New', Courier, monospace; color: var(--neon-yellow); font-size: 1.1rem; font-weight: bold; }
.ca-copy {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--font-bold);
  cursor: pointer;
  transition: all 0.2s;
}
.ca-copy:hover { background: var(--neon-green); color: #000; border-color: var(--neon-green); box-shadow: 0 0 15px var(--neon-green); }

/* ====================================
   BENTO GRID LAYOUTS (For Sections)
===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  background: rgba(0,240,255,0.1);
  border: 1px solid rgba(0,240,255,0.3);
  color: var(--neon-cyan);
  font-family: var(--font-bold);
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 999px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0,240,255,0.2);
}

.section-title {
  font-family: var(--font-meme);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 4px;
  color: var(--snow);
  text-shadow: 0 10px 20px rgba(0,0,0,0.8);
  line-height: 1;
}
.section-title .yellow {
  color: var(--neon-yellow);
  text-shadow: 0 0 30px rgba(212,255,0,0.5);
}

.section-meme {
  font-family: var(--font-fun);
  font-size: 1.2rem;
  color: var(--ice);
  margin-top: 16px;
}

/* Bento Lore Grid */
.story-section { padding: 120px 0; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.bento-box {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  border-left: 1px solid var(--glass-highlight);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}
.bento-box:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  background: var(--glass-bg-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 30px rgba(0,240,255,0.15);
}

.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

.bento-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.bento-title {
  font-family: var(--font-bold);
  font-size: 1.4rem;
  color: var(--snow);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.bento-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ice);
  line-height: 1.7;
}

.bento-meme-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-fun);
  color: var(--neon-yellow);
  background: rgba(212,255,0,0.1);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Special glowing box */
.bento-box.glow-box {
  background: linear-gradient(135deg, rgba(20,26,50,0.6) 0%, rgba(212,255,0,0.1) 100%);
  border-color: rgba(212,255,0,0.3);
}
.bento-box.glow-box .bento-title { color: var(--neon-yellow); }

/* ====================================
   TOKENOMICS (Glass + Neon)
===================================================== */
.tokenomics-section { padding: 120px 0; }

.token-bento-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.token-chart-box {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--glass-shadow);
  position: relative;
}

.donut-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.donut-total {
  font-family: var(--font-meme);
  font-size: 2.5rem;
  color: var(--neon-yellow);
  text-shadow: 0 0 20px rgba(212,255,0,0.4);
  line-height: 1;
}
.donut-label {
  font-family: var(--font-bold);
  font-size: 0.8rem;
  color: var(--ice);
  letter-spacing: 2px;
  margin-top: 4px;
}

.token-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.token-list-item {
  background: #0b0f19;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition-fast);
}
.token-list-item:hover {
  background: #111827;
  border-color: var(--neon-cyan);
  transform: scale(1.02);
}

.t-item-full {
  grid-column: span 2;
}

.t-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.t-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}
.c1 { color: var(--neon-yellow); background: var(--neon-yellow); }
.c2 { color: var(--neon-green); background: var(--neon-green); }
.c3 { color: var(--neon-cyan); background: var(--neon-cyan); }
.c4 { color: var(--neon-pink); background: var(--neon-pink); }
.c5 { color: var(--neon-purple); background: var(--neon-purple); }

.t-pct {
  font-family: var(--font-meme);
  font-size: 1.8rem;
}

.t-label { font-family: var(--font-bold); font-size: 0.95rem; color: var(--snow); }
.t-desc { font-family: var(--font-fun); font-size: 0.9rem; color: var(--ice); }

/* ====================================
   ROADMAP TIMELINE
===================================================== */
.roadmap-section { padding: 120px 0; }

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

.rm-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}
.rm-card.done { border-top: 3px solid var(--neon-green); }
.rm-card.active { 
  border-top: 3px solid var(--neon-yellow); 
  background: rgba(20,26,50,0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 30px rgba(212,255,0,0.15);
  transform: translateY(-10px);
}
.rm-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.3); }

.rm-phase {
  font-family: var(--font-bold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.rm-card.done .rm-phase { color: var(--neon-green); }
.rm-card.active .rm-phase { color: var(--neon-yellow); }

.rm-title {
  font-family: var(--font-meme);
  font-size: 1.8rem;
  color: var(--snow);
  margin-bottom: 20px;
  line-height: 1.1;
}

.rm-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.rm-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ice);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.rm-icon { flex-shrink: 0; }

/* ====================================
   LAUNCH CTA (GLASS PANEL)
===================================================== */
.launch-section { padding: 120px 0 60px; }

.launch-glass {
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.3);
  border-radius: 40px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7), inset 0 0 40px rgba(212,255,0,0.05);
}

.launch-title {
  font-family: var(--font-meme);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--snow);
  line-height: 1;
  margin-bottom: 30px;
}

.step-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
  transition: all 0.2s;
}
.step-box:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

.sb-num {
  font-family: var(--font-meme);
  font-size: 2.5rem;
  color: rgba(212,255,0,0.3);
  line-height: 0.8;
}
.sb-content h4 { font-family: var(--font-bold); font-size: 1.1rem; color: var(--neon-cyan); margin-bottom: 6px; }
.sb-content p { font-family: var(--font-body); font-size: 0.95rem; color: var(--ice); }

.launch-right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.launch-socials {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  color: #CCFF00;
  transition: all 0.3s ease;
}

.social-icon-btn svg {
  width: 30px;
  height: 30px;
}

.social-icon-btn:hover {
  background: rgba(204, 255, 0, 0.1);
  border-color: #CCFF00;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
  transform: translateY(-5px);
}

.big-countdown {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}
.cd-box {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(212,255,0,0.3);
  border-radius: 16px;
  width: 90px; height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.cd-val { font-family: var(--font-meme); font-size: 2.8rem; color: var(--neon-yellow); line-height: 1; }
.cd-lbl { font-family: var(--font-bold); font-size: 0.7rem; color: var(--ice); letter-spacing: 2px; margin-top: 4px; }

/* ====================================
   PRELOADER
===================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

#preloader-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
}

.preloader-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #000 90%);
  z-index: 2;
}

.preloader-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-text {
  font-family: var(--font-meme);
  font-size: 3rem;
  color: #CCFF00;
  letter-spacing: 4px;
  animation: pulse-text 1s infinite alternate;
}

.preloader-bar {
  width: 300px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-progress {
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: #CCFF00;
  width: 0%;
  box-shadow: 0 0 15px #CCFF00;
  animation: load-bar 2.5s ease-out forwards;
}

@keyframes pulse-text {
  from { text-shadow: 0 0 10px rgba(204,255,0,0.4); opacity: 0.8; transform: scale(0.98); }
  to { text-shadow: 0 0 30px rgba(204,255,0,1); opacity: 1; transform: scale(1.02); }
}

@keyframes load-bar {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.preloader-enter {
  position: relative;
  z-index: 4;
  background: rgba(204, 255, 0, 0.1);
  border: 2px solid #CCFF00;
  color: #CCFF00;
  font-family: var(--font-meme);
  font-size: 2rem;
  padding: 15px 40px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
  transition: all 0.3s ease;
  animation: pulse-enter 1.5s infinite alternate;
}
.preloader-enter:hover {
  background: #CCFF00;
  color: #000;
  box-shadow: 0 0 40px rgba(204, 255, 0, 0.8);
  transform: scale(1.05);
}
@keyframes pulse-enter {
  from { transform: scale(1); box-shadow: 0 0 10px rgba(204,255,0,0.4); }
  to { transform: scale(1.05); box-shadow: 0 0 30px rgba(204,255,0,0.8); }
}

/* ====================================
   MOBILE HAMBURGER MENU
===================================================== */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1000;
}
.hamburger-btn:hover {
  color: #CCFF00;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-showcase { flex-direction: column; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 1; }
  .token-bento-layout { grid-template-columns: 1fr; justify-items: center; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .launch-glass { grid-template-columns: 1fr; padding: 40px 20px; }
  .hero-char-container { transform: scale(0.85); }
}

@media (max-width: 768px) {
  /* Prevent horizontal overflow strictly */
  html, body { overflow-x: hidden; width: 100%; position: relative; }
  
  /* Navbar */
  .hamburger-btn { display: block; }
  .nav-inner { justify-content: space-between; padding: 10px 20px; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 20px; right: 20px;
    background: #000;
    border: 2px solid #CCFF00;
    border-radius: var(--radius-md);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #fff; font-size: 1.2rem; }
  .nav-price-badge { display: none; }
  .logo-text { font-size: 1.6rem; }
  
  /* Hero */
  .hero { padding-top: 100px; padding-bottom: 20px; }
  .hero-title { font-size: 2.8rem; white-space: normal; line-height: 1.1; margin-bottom: 10px; }
  .hero-tagline { font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; width: 90%; white-space: normal; }
  
  .hero-char-container { width: 220px; height: 220px; transform: none; margin: 0 auto 20px auto; padding: 0; }
  .hero-char { width: 100%; height: 100%; object-fit: contain; }
  .magic-circle { width: 130%; height: 130%; }
  
  .meme-badge-row { flex-direction: column; align-items: center; gap: 8px; }
  .meme-badge { font-size: 0.75rem; padding: 5px 15px; }
  
  .hero-cta-row { flex-direction: column; width: 100%; max-width: 320px; gap: 15px; padding: 0; margin: 0 auto 20px auto; }
  .hero-cta-row .btn { width: 100%; justify-content: center; text-align: center; }
  
  .contract-bar { width: 100%; max-width: 320px; justify-content: space-between; font-size: 0.85rem; padding: 12px 15px; margin: 0 auto; }
  .ca-addr { width: 100px; overflow: hidden; text-overflow: ellipsis; }
  
  /* Giant Ticker */
  .giant-ticker-wrap { padding: 10px 0; margin-top: 30px; }
  .giant-ticker-move span { font-size: 3rem !important; }
  
  /* Sections */
  .section-title { font-size: 2.5rem; }
  .bento-grid, .roadmap-grid, .token-list-grid { grid-template-columns: 1fr; gap: 15px; }
  .t-item-full { grid-column: span 1 !important; }
  
  /* Tokenomics Fixes */
  .token-chart-box .ph-fire { font-size: 4rem !important; }
  .donut-total { font-size: 1.8rem !important; }
  .donut-label { font-size: 1rem !important; }
  /* Override the bad target */
  .token-chart-box > div:not(.donut-center):not(.donut-total):not(.donut-label) { font-size: inherit; }
  
  /* Countdown & Preloader */
  .big-countdown { flex-wrap: wrap; justify-content: center; gap: 15px; }
  .cd-val { font-size: 2rem; }
  .preloader-text { font-size: 1.8rem; letter-spacing: 2px; }
  .preloader-bar { width: 220px; }
  .preloader-enter { font-size: 1.5rem; padding: 12px 30px; }
}

/* Extra small devices (iPhone SE) */
@media (max-width: 375px) {
  .hero-title { font-size: 2.2rem; }
  .hero-char-container { transform: scale(0.6); }
  .section-title { font-size: 2rem; }
}

