/* Shinies Pitch Deck - Website-Style Theme */

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

body {
  font-family: 'Press Start 2P', 'Courier New', monospace;
  overflow: hidden;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

/* Color highlights - with stroke for readability */
.highlight-gold { 
  color: #FFD700; 
  text-shadow: 
    -1px -1px 0 #2C1810,
    1px -1px 0 #2C1810,
    -1px 1px 0 #2C1810,
    1px 1px 0 #2C1810,
    0 0 10px rgba(255, 215, 0, 0.5);
}
.highlight-pink { 
  color: #FF69B4; 
  text-shadow: 
    -1px -1px 0 #2C1810,
    1px -1px 0 #2C1810,
    -1px 1px 0 #2C1810,
    1px 1px 0 #2C1810,
    0 0 10px rgba(255, 105, 180, 0.5);
}
.highlight-green { 
  color: #32CD32; 
  text-shadow: 
    -1px -1px 0 #2C1810,
    1px -1px 0 #2C1810,
    -1px 1px 0 #2C1810,
    1px 1px 0 #2C1810,
    0 0 10px rgba(50, 205, 50, 0.5);
}
.highlight-red { 
  color: #FF4444; 
  text-shadow: 
    -1px -1px 0 #2C1810,
    1px -1px 0 #2C1810,
    -1px 1px 0 #2C1810,
    1px 1px 0 #2C1810,
    0 0 10px rgba(255, 68, 68, 0.5);
}
.highlight-purple { 
  color: #9370DB;
  text-shadow: 
    -1px -1px 0 #2C1810,
    1px -1px 0 #2C1810,
    -1px 1px 0 #2C1810,
    1px 1px 0 #2C1810;
}

/* Main container - Light pastel gradient like website */
.pitch-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #FFE4E1 0%, #E6E6FA 30%, #F0E68C 70%, #E0FFFF 100%);
  background-attachment: fixed;
}

/* Grid background - subtle gold lines */
.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 30s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

/* Particles - colorful floating squares */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid #2C1810;
  animation: floatUp 20s ease-in-out infinite;
}

.particle:nth-child(1) { left: 5%; background: #FFD700; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 15%; background: #FF69B4; animation-delay: 2s; animation-duration: 22s; }
.particle:nth-child(3) { left: 25%; background: #00BFFF; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 35%; background: #9370DB; animation-delay: 1s; animation-duration: 17s; }
.particle:nth-child(5) { left: 45%; background: #32CD32; animation-delay: 3s; animation-duration: 21s; }
.particle:nth-child(6) { left: 55%; background: #FFA500; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(7) { left: 65%; background: #FF1493; animation-delay: 2.5s; animation-duration: 23s; }
.particle:nth-child(8) { left: 75%; background: #00CED1; animation-delay: 1.5s; animation-duration: 16s; }
.particle:nth-child(9) { left: 85%; background: #FFD700; animation-delay: 3.5s; animation-duration: 20s; }
.particle:nth-child(10) { left: 95%; background: #FF69B4; animation-delay: 4.5s; animation-duration: 18s; }
.particle:nth-child(11) { left: 10%; background: #00BFFF; animation-delay: 0.5s; animation-duration: 24s; }
.particle:nth-child(12) { left: 90%; background: #32CD32; animation-delay: 2.8s; animation-duration: 15s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Slides wrapper */
.slides-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Individual slide */
.slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  padding-bottom: 6rem;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Desktop: center content */
@media (min-width: 769px) {
  .slide {
    justify-content: center;
    padding-bottom: 2rem;
  }
}

.slide-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  z-index: 10;
  animation: slideIn 0.8s ease-out;
  padding: 1rem;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Background effect container for slide 4 */
.slide-background-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
}

/* Glitch container for background effect */
.glitch-container {
  position: absolute;
  left: 0;
  animation: moveRight linear forwards;
  will-change: transform, opacity;
}

@keyframes moveRight {
  0% { transform: translateX(-400px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 500px)); opacity: 0; }
}

.pre-image, .post-image, .glitch-squares-effect {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}

.pre-image {
  animation: showPre linear forwards;
  z-index: 1;
}

@keyframes showPre {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.post-image {
  animation: showPost linear forwards;
  z-index: 2;
  opacity: 0;
}

@keyframes showPost {
  0%, 48% { opacity: 0; }
  49%, 100% { opacity: 1; }
}

.glitch-squares-effect {
  z-index: 3;
  opacity: 0;
  animation: showGlitch linear forwards;
}

@keyframes showGlitch {
  0%, 44% { opacity: 0; }
  45%, 52% { opacity: 1; }
  53%, 100% { opacity: 0; }
}

.effect-square {
  position: absolute;
  border: 3px solid #2C1810;
  opacity: 0;
  animation: squareGlitch steps(8);
}

@keyframes squareGlitch {
  0% { opacity: 0; transform: translate(0, 0); }
  10% { opacity: 1; transform: translate(-15px, 10px); }
  20% { opacity: 1; transform: translate(20px, -12px); }
  30% { opacity: 1; transform: translate(-8px, 15px); }
  40% { opacity: 1; transform: translate(12px, -8px); }
  50% { opacity: 1; transform: translate(-18px, -10px); }
  60% { opacity: 1; transform: translate(10px, 18px); }
  70% { opacity: 1; transform: translate(-5px, -15px); }
  80% { opacity: 1; transform: translate(8px, 5px); }
  90% { opacity: 1; transform: translate(-10px, -5px); }
  100% { opacity: 0; transform: translate(0, 0); }
}

.eth-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  pointer-events: none;
}

.eth-coin {
  position: absolute;
  bottom: -10px;
  right: -10px;
  opacity: 0;
  animation: ethGrow linear forwards;
}

@keyframes ethGrow {
  0%, 55% { opacity: 0; width: 0; height: 0; }
  56% { opacity: 1; width: 15px; height: 15px; }
  100% { opacity: 1; width: 50px; height: 50px; }
}

/* Typography */
.slide-title {
  font-size: 2.8rem;
  color: #2C1810;
  text-shadow: 4px 4px 0 rgba(255, 215, 0, 0.3);
  line-height: 1.3;
}

.hero-title {
  font-size: 4rem;
  text-shadow: 6px 6px 0 rgba(255, 215, 0, 0.5);
}

.slide-subtitle {
  font-size: 1.1rem;
  color: #2C1810;
  margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Animated logo */
.animated-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.animated-logo.large { width: 140px; height: 140px; }
.animated-logo.medium { width: 100px; height: 100px; }

.sparkle {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  z-index: 20;
  filter: 
    brightness(1.3)
    saturate(1.5)
    drop-shadow(0 0 20px rgba(255, 215, 0, 0.9))
    drop-shadow(0 0 8px rgba(255, 215, 0, 1));
  animation: sparkleGlow 2s ease-in-out infinite;
}

@keyframes sparkleGlow {
  0%, 100% {
    filter: brightness(1.3) saturate(1.5) drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 8px rgba(255, 215, 0, 1));
    transform: scale(1);
  }
  50% {
    filter: brightness(1.5) saturate(2) drop-shadow(0 0 35px rgba(255, 215, 0, 1)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
    transform: scale(1.08);
  }
}

/* Glitch squares */
.glitch-square {
  position: absolute;
  border: 3px solid #2C1810;
  z-index: 1;
}

.square1 { width: 48px; height: 48px; background: #FFD700; animation: glitch1 2s steps(8) infinite; }
.square2 { width: 20px; height: 20px; background: #FF69B4; animation: glitch2 2.3s steps(8) infinite; }
.square3 { width: 56px; height: 56px; background: #00BFFF; animation: glitch3 2.5s steps(8) infinite; }
.square4 { width: 16px; height: 16px; background: #9370DB; animation: glitch4 2.8s steps(8) infinite; }
.square5 { width: 40px; height: 40px; background: #FFA500; animation: glitch5 2.1s steps(8) infinite; }
.square6 { width: 24px; height: 24px; background: #32CD32; animation: glitch6 2.4s steps(8) infinite; }
.square7 { width: 52px; height: 52px; background: #FF1493; animation: glitch7 2.6s steps(8) infinite; }
.square8 { width: 28px; height: 28px; background: #00CED1; animation: glitch8 2.9s steps(8) infinite; }
.square9 { width: 44px; height: 44px; background: #FFD700; animation: glitch9 2.2s steps(8) infinite; }
.square10 { width: 18px; height: 18px; background: #9370DB; animation: glitch10 2.7s steps(8) infinite; }
.square11 { width: 32px; height: 32px; background: #00BFFF; animation: glitch11 2.45s steps(8) infinite; }
.square12 { width: 50px; height: 50px; background: #FF69B4; animation: glitch12 2.15s steps(8) infinite; }
.square13 { width: 22px; height: 22px; background: #32CD32; animation: glitch13 2.35s steps(8) infinite; }
.square14 { width: 36px; height: 36px; background: #FFA500; animation: glitch14 2.55s steps(8) infinite; }
.square15 { width: 54px; height: 54px; background: #00CED1; animation: glitch15 2.75s steps(8) infinite; }
.square16 { width: 26px; height: 26px; background: #FFD700; animation: glitch16 2.95s steps(8) infinite; }

@keyframes glitch1 { 0%, 100% { top: -20px; left: -30px; opacity: 1; } 25% { top: 10px; left: -40px; } 50% { top: -30px; left: 10px; } 75% { top: 20px; left: 20px; } }
@keyframes glitch2 { 0%, 100% { top: 20px; right: -40px; opacity: 1; } 25% { top: -24px; right: -20px; } 50% { top: 30px; right: 10px; } 75% { top: -10px; right: -30px; } }
@keyframes glitch3 { 0%, 100% { bottom: -20px; left: -20px; opacity: 1; } 25% { bottom: 30px; left: 10px; } 50% { bottom: -30px; left: -40px; } 75% { bottom: 10px; left: 20px; } }
@keyframes glitch4 { 0%, 100% { bottom: 10px; right: -30px; opacity: 1; } 25% { bottom: -20px; right: 20px; } 50% { bottom: 24px; right: -40px; } 75% { bottom: -16px; right: 10px; } }
@keyframes glitch5 { 0%, 100% { top: -24px; left: -50px; opacity: 1; } 25% { top: 16px; left: -30px; } 50% { top: -36px; left: 16px; } 75% { top: 24px; left: 30px; } }
@keyframes glitch6 { 0%, 100% { top: 16px; right: -50px; opacity: 1; } 25% { top: -30px; right: -16px; } 50% { top: 36px; right: 16px; } 75% { top: -16px; right: -36px; } }
@keyframes glitch7 { 0%, 100% { bottom: -24px; left: 24px; opacity: 1; } 25% { bottom: 36px; left: -36px; } 50% { bottom: -16px; left: 40px; } 75% { bottom: 16px; left: -20px; } }
@keyframes glitch8 { 0%, 100% { bottom: 36px; right: -24px; opacity: 1; } 25% { bottom: -36px; right: 24px; } 50% { bottom: 16px; right: -50px; } 75% { bottom: -24px; right: 16px; } }
@keyframes glitch9 { 0%, 100% { top: -16px; left: -56px; opacity: 1; } 25% { top: 40px; left: -24px; } 50% { top: -40px; left: 24px; } 75% { top: 16px; left: 36px; } }
@keyframes glitch10 { 0%, 100% { top: 30px; right: -36px; opacity: 1; } 25% { top: -36px; right: -44px; } 50% { top: 24px; right: 24px; } 75% { top: -20px; right: -24px; } }
@keyframes glitch11 { 0%, 100% { bottom: -40px; left: 36px; opacity: 1; } 25% { bottom: 24px; left: -24px; } 50% { bottom: -24px; left: -50px; } 75% { bottom: 30px; left: 16px; } }
@keyframes glitch12 { 0%, 100% { bottom: 24px; right: -56px; opacity: 1; } 25% { bottom: -44px; right: 36px; } 50% { bottom: 44px; right: -16px; } 75% { bottom: -16px; right: 30px; } }
@keyframes glitch13 { 0%, 100% { top: -50px; left: -16px; opacity: 1; } 25% { top: 24px; left: -44px; } 50% { top: -24px; left: 44px; } 75% { top: 36px; left: -16px; } }
@keyframes glitch14 { 0%, 100% { top: 24px; right: -44px; opacity: 1; } 25% { top: -44px; right: -24px; } 50% { top: 36px; right: 36px; } 75% { top: -24px; right: 16px; } }
@keyframes glitch15 { 0%, 100% { bottom: -36px; left: -44px; opacity: 1; } 25% { bottom: 36px; left: 24px; } 50% { bottom: -44px; left: 16px; } 75% { bottom: 20px; left: -30px; } }
@keyframes glitch16 { 0%, 100% { bottom: 44px; right: -16px; opacity: 1; } 25% { bottom: -24px; right: -56px; } 50% { bottom: 24px; right: 44px; } 75% { bottom: -36px; right: 24px; } }

.logo-section {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================== SLIDE 1: HERO ===================== */

.hero-visual {
  margin: 2rem 0;
}

.transform-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.transform-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.transform-img {
  width: 120px;
  height: 120px;
  border: 5px solid #2C1810;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.4);
  object-fit: cover;
  background: #FFFACD;
}

.transform-item.shiny .transform-img {
  animation: shinyPulse 2s ease-in-out infinite;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.4), 0 0 30px rgba(255, 215, 0, 0.6);
}

@keyframes shinyPulse {
  0%, 100% { box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.4), 0 0 30px rgba(255, 215, 0, 0.6); }
  50% { box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.4), 0 0 50px rgba(255, 215, 0, 0.9); }
}

.transform-label {
  font-size: 0.7rem;
  color: #2C1810;
  font-weight: bold;
}

.transform-arrow {
  display: flex;
  align-items: center;
}

.arrow-svg {
  width: 40px;
  height: 40px;
  fill: #FFD700;
  filter: drop-shadow(2px 2px 0 #2C1810);
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.yield-badge {
  position: absolute;
  top: -10px;
  right: -15px;
  background: #32CD32;
  color: #fff;
  font-size: 0.5rem;
  padding: 0.3rem 0.5rem;
  border: 3px solid #2C1810;
  animation: badgePulse 2s ease-in-out infinite;
}

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

/* Stats grid */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
  transition: all 0.2s ease;
}

.stat-box:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(44, 24, 16, 0.4);
}

.stat-value {
  font-size: 2rem;
  color: #2C1810;
}

.stat-label {
  font-size: 0.6rem;
  color: #2C1810;
  opacity: 0.7;
}

/* ===================== SLIDE 2: PROBLEM ===================== */

.visual-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-card {
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1.5rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.comparison-card.problem { border-color: #FF4444; }
.comparison-card.solution { border-color: #32CD32; }

.comparison-visual {
  position: relative;
}

.comparison-nft {
  width: 100px;
  height: 100px;
  border: 4px solid #2C1810;
  object-fit: cover;
  background: #f5f5f5;
}

.comparison-nft.shiny-glow {
  animation: nftGlow 2s ease-in-out infinite;
}

@keyframes nftGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.9); }
}

.dust-particles, .yield-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dust-particles span {
  position: absolute;
  font-size: 1.2rem;
  animation: dustFloat 3s ease-in-out infinite;
}

.dust-particles span:nth-child(1) { top: 10%; left: 80%; animation-delay: 0s; }
.dust-particles span:nth-child(2) { top: 50%; left: 90%; animation-delay: 1s; }
.dust-particles span:nth-child(3) { top: 80%; left: 85%; animation-delay: 2s; }

@keyframes dustFloat {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(-10px); }
}

.yield-particles span {
  position: absolute;
  font-size: 1rem;
  animation: yieldFloat 2s ease-in-out infinite;
}

.yield-particles span:nth-child(1) { top: 0%; left: 80%; animation-delay: 0s; }
.yield-particles span:nth-child(2) { top: 30%; left: 95%; animation-delay: 0.5s; }
.yield-particles span:nth-child(3) { top: 70%; left: 85%; animation-delay: 1s; }

@keyframes yieldFloat {
  0%, 100% { opacity: 0.5; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-15px) scale(1.2); }
}

.comparison-points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.point {
  font-size: 0.65rem;
  padding: 0.4rem 0.8rem;
  border: 3px solid #2C1810;
  background: #fff;
}

.point.bad { background: rgba(255, 68, 68, 0.2); }
.point.good { background: rgba(50, 205, 50, 0.2); }

.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vs-text {
  font-size: 1.5rem;
  color: #FFD700;
  text-shadow: 3px 3px 0 #2C1810;
  animation: vsPulse 1.5s ease-in-out infinite;
}

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

.exclusive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 215, 0, 0.2);
  border: 4px solid #FFD700;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #2C1810;
}

.badge-icon {
  font-size: 1.5rem;
}

/* ===================== SLIDE 3: FLOW ===================== */

.flow-diagram {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1.2rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
  min-width: 120px;
}

.flow-node.mint .flow-icon svg { fill: #FFD700; }
.flow-node.burn .flow-icon svg { fill: #FF69B4; }
.flow-node.trade .flow-icon svg { fill: #32CD32; }

.flow-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-icon svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(2px 2px 0 #2C1810);
}

.flow-label {
  font-size: 0.9rem;
  color: #2C1810;
  font-weight: bold;
}

.flow-desc {
  font-size: 0.6rem;
  color: #2C1810;
  opacity: 0.8;
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.flow-line {
  width: 60px;
  height: 4px;
  background: #2C1810;
}

.flow-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 215, 0, 0.3);
  border: 4px solid #FFD700;
  padding: 1rem;
}

.flow-token {
  width: 50px;
  height: 50px;
  animation: tokenSpin 4s linear infinite;
}

@keyframes tokenSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.flow-center-text {
  font-size: 0.55rem;
  color: #2C1810;
}

.glue-visual {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.glue-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 250, 205, 0.95);
  border: 4px solid #2C1810;
  padding: 0.8rem 1.2rem;
  font-size: 0.8rem;
  color: #2C1810;
}

.glue-icon {
  font-size: 1.2rem;
}

.glue-subtitle {
  font-size: 0.7rem;
  color: #2C1810;
  opacity: 0.8;
}

/* ===================== SLIDE 4: WRAP FLOW ===================== */

.wrap-flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.wrap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
}

.wrap-step.shiny {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
}

.wrap-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.wrap-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  background: #FFD700;
  border: 3px solid #2C1810;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #2C1810;
}

.wrap-nft {
  width: 80px;
  height: 80px;
  border: 4px solid #2C1810;
  object-fit: cover;
  background: #f5f5f5;
}

.wrap-nft.glow {
  animation: wrapGlow 2s ease-in-out infinite;
}

@keyframes wrapGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.9); }
}

.wrap-step-label {
  font-size: 0.6rem;
  color: #2C1810;
}

.wrap-yield, .wrap-profit {
  font-size: 0.5rem;
  padding: 0.3rem 0.5rem;
  border: 2px solid #2C1810;
  margin-top: 0.3rem;
}

.wrap-yield { background: #32CD32; color: #fff; }
.wrap-profit { background: #FFD700; color: #2C1810; }

.wrap-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.wrap-arrow svg {
  width: 30px;
  height: 30px;
  fill: #FFD700;
  filter: drop-shadow(2px 2px 0 #2C1810);
}

.wrap-action {
  font-size: 0.5rem;
  color: #2C1810;
}

.floor-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(50, 205, 50, 0.15);
  border: 4px solid #32CD32;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: #2C1810;
}

.floor-icon {
  width: 30px;
  height: 30px;
  fill: #32CD32;
}

/* ===================== SLIDE 5: TOKEN ===================== */

.token-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.token-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(4px 4px 0 rgba(44, 24, 16, 0.3));
}

.token-icon.pulse {
  animation: tokenPulse 2s ease-in-out infinite;
}

@keyframes tokenPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(4px 4px 0 rgba(44, 24, 16, 0.3)); }
  50% { transform: scale(1.1); filter: drop-shadow(4px 4px 0 rgba(44, 24, 16, 0.3)) drop-shadow(0 0 20px rgba(255, 105, 180, 0.5)); }
}

.halving-visual {
  margin: 1rem auto;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.halving-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3rem;
  height: 180px;
  padding: 0.5rem 1rem;
  padding-top: 2rem;
  background: rgba(255, 250, 205, 0.9);
  border: 4px solid #2C1810;
  box-shadow: 4px 4px 0 rgba(44, 24, 16, 0.3);
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.halving-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  max-width: 45px;
  height: 100%;
}

.bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.bar-value {
  font-size: 0.6rem;
  color: #2C1810;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 3px;
}

.bar-column {
  width: 100%;
  max-width: 30px;
  min-width: 14px;
  background: linear-gradient(to top, #FFD700, #FFA500);
  border: 2px solid #2C1810;
  transition: height 0.5s ease;
}

.bar-label {
  font-size: 0.55rem;
  color: #2C1810;
  font-weight: bold;
  margin-top: 0.2rem;
}

.chart-legend {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: #2C1810;
  text-align: center;
}

.token-facts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.token-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.fact-big {
  font-size: 1.3rem;
}

.fact-label {
  font-size: 0.55rem;
  color: #2C1810;
  opacity: 0.7;
}

/* ===================== SLIDE 6: COLLECTIONS ===================== */

.collections-showcase {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.collection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
  transition: all 0.2s ease;
}

.collection-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(44, 24, 16, 0.4);
}

.collection-logo {
  width: 70px;
  height: 70px;
  border: 4px solid #2C1810;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.collection-name {
  font-size: 0.6rem;
  color: #2C1810;
}

.governance-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.gov-phase {
  background: rgba(255, 250, 205, 0.95);
  border: 4px solid #2C1810;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gov-phase.highlight {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
}

.gov-label {
  font-size: 0.6rem;
  color: #FF69B4;
  font-weight: bold;
}

.gov-desc {
  font-size: 0.55rem;
  color: #2C1810;
}

.gov-detail {
  font-size: 0.5rem;
  margin-top: 0.3rem;
}

.gov-arrow {
  font-size: 1.5rem;
  color: #FFD700;
}

.scarcity-note {
  font-size: 0.7rem;
  color: #2C1810;
  background: rgba(255, 215, 0, 0.15);
  border: 3px solid #FFD700;
  padding: 0.8rem 1.2rem;
  margin-top: 1rem;
}

/* ===================== SLIDE 7: BENEFITS ===================== */

.benefits-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
}

.benefit-visual-icon {
  width: 50px;
  height: 50px;
  background: #9370DB;
  border: 4px solid #2C1810;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-visual-icon.pink { background: #FF69B4; }
.benefit-visual-icon.gold { background: #FFD700; }
.benefit-visual-icon.green { background: #32CD32; }

.benefit-visual-icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.benefit-text {
  font-size: 0.65rem;
  color: #2C1810;
  text-align: left;
}

.collection-cta-box {
  background: rgba(255, 215, 0, 0.2);
  border: 4px solid #FFD700;
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  color: #2C1810;
}

/* ===================== SLIDE 8: CTA ===================== */

.final-title {
  font-size: 2.2rem;
}

.opportunity-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.opp-now, .opp-later {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1.5rem 2rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
}

.opp-now { border-color: #32CD32; }
.opp-later { border-color: #FF4444; }

.opp-when {
  font-size: 0.6rem;
  color: #2C1810;
  opacity: 0.7;
}

.opp-amount {
  font-size: 2.5rem;
}

.opp-unit {
  font-size: 0.55rem;
  color: #2C1810;
}

.opp-multiplier {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mult-value {
  font-size: 1.8rem;
  color: #FFD700;
  text-shadow: 3px 3px 0 #2C1810;
  animation: multPulse 2s ease-in-out infinite;
}

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

.mult-label {
  font-size: 0.6rem;
  color: #2C1810;
}

.final-facts {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.final-fact {
  font-size: 0.7rem;
  color: #2C1810;
  background: rgba(255, 250, 205, 0.9);
  border: 3px solid #2C1810;
  padding: 0.5rem 1rem;
}

.cta-section {
  margin: 1.5rem 0;
}

.reveal-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.2);
  border: 4px solid #FFD700;
  padding: 1.2rem 2rem;
  box-shadow: 4px 4px 0 rgba(44, 24, 16, 0.3);
}

.reveal-label {
  font-size: 0.9rem;
  color: #2C1810;
}

.reveal-action {
  font-size: 1.1rem;
  color: #FF69B4;
  text-shadow: -1px -1px 0 #2C1810, 1px -1px 0 #2C1810, -1px 1px 0 #2C1810, 1px 1px 0 #2C1810, 0 0 10px rgba(255, 105, 180, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #FFD700;
  color: #2C1810;
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  padding: 1.2rem 2rem;
  border: 5px solid #2C1810;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.5);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(44, 24, 16, 0.6);
  background: #FFA500;
}

.cta-svg {
  width: 24px;
  height: 24px;
  fill: #2C1810;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 250, 205, 0.9);
  border: 4px solid #2C1810;
  padding: 0.6rem 1rem;
  color: #2C1810;
  text-decoration: none;
  font-size: 0.7rem;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #FFD700;
  transform: translate(-2px, -2px);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: #2C1810;
}

/* ===================== NEW ELEMENTS ===================== */

/* Launch Banner */
.launch-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: 5px solid #2C1810;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  animation: launchPulse 2s ease-in-out infinite;
}

@keyframes launchPulse {
  0%, 100% { box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.4); }
  50% { box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.4), 0 0 30px rgba(255, 215, 0, 0.5); }
}

.launch-icon {
  font-size: 1.5rem;
}

.launch-text {
  font-size: 0.8rem;
  color: #2C1810;
}

/* Elite badge */
.elite-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 215, 0, 0.2);
  border: 4px solid #FFD700;
  padding: 0.8rem 1.5rem;
  margin: 1.5rem 0 0.5rem;
  font-size: 0.75rem;
  color: #2C1810;
}

.elite-icon {
  font-size: 1.5rem;
}

/* Elite section */
.elite-section {
  margin-top: 2rem;
  background: rgba(255, 215, 0, 0.15);
  border: 4px solid #FFD700;
  padding: 1.5rem;
}

.elite-title {
  font-size: 1rem;
  color: #2C1810;
  margin-bottom: 0.8rem;
}

.elite-desc {
  font-size: 0.7rem;
  color: #2C1810;
  line-height: 1.8;
}

/* Whale pitch */
.whale-pitch {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #2C1810;
  line-height: 2;
}

.whale-pitch p {
  margin: 0.3rem 0;
}

/* Yield sources */
.yield-sources {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.yield-source {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1rem 1.5rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
}

.source-icon {
  width: 50px;
  height: 50px;
  border: 4px solid #2C1810;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.source-icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.source-icon.mint { background: #FFD700; }
.source-icon.burn { background: #FF69B4; }
.source-icon.trade { background: #32CD32; }

.source-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
}

.source-title {
  font-size: 0.7rem;
  color: #2C1810;
  font-weight: bold;
}

.source-detail {
  font-size: 0.8rem;
  color: #2C1810;
}

/* Yield result */
.yield-result {
  margin: 1.5rem 0;
}

.result-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(50, 205, 50, 0.15);
  border: 4px solid #32CD32;
  padding: 1rem 1.5rem;
}

.result-icon {
  font-size: 2rem;
}

.result-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.result-title {
  font-size: 0.8rem;
  color: #2C1810;
}

.result-desc {
  font-size: 0.6rem;
  color: #2C1810;
}

/* Early bonus */
.early-bonus {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  background: rgba(255, 215, 0, 0.2);
  border: 4px solid #FFD700;
  padding: 1rem 1.5rem;
  display: inline-block;
}

/* Bonding Curve Slide (Slide 5) */
.bonding-curve-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.curve-container {
  background: rgba(255, 255, 255, 0.8);
  border: 4px solid #2C1810;
  padding: 1rem;
  width: 100%;
  max-width: 500px;
}

.curve-svg {
  width: 100%;
  height: auto;
}

.curve-actions {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.curve-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid #2C1810;
  padding: 0.5rem 1rem;
}

.action-dot {
  width: 16px;
  height: 16px;
  border: 2px solid #2C1810;
}

.action-dot.gold { background: #FFD700; }
.action-dot.pink { background: #FF69B4; }
.action-dot.purple { background: #9370DB; }

.action-label {
  font-size: 0.8rem;
  font-weight: bold;
}

.action-effect {
  font-size: 0.8rem;
}

.fomo-message {
  margin: 1rem 0;
}

.fomo-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
  border: 4px solid #FFD700;
  padding: 1.2rem 2rem;
  box-shadow: 4px 4px 0 rgba(44, 24, 16, 0.3);
}

.fomo-icon {
  font-size: 2.5rem;
}

.fomo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.fomo-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2C1810;
}

.fomo-desc {
  font-size: 0.85rem;
  color: #2C1810;
  margin-top: 0.3rem;
}

/* Airdrop explanation */
.airdrop-explain {
  font-size: 0.9rem;
  color: #2C1810;
  margin: 0.5rem 0 1rem 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.8rem 1.2rem;
  border: 3px solid #2C1810;
}

.price-comparison {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.price-now, .price-later {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 4px solid #2C1810;
  padding: 1rem 1.5rem;
  min-width: 120px;
}

.price-label {
  font-size: 0.6rem;
  color: #666;
}

.price-value {
  font-size: 1rem;
  font-weight: bold;
}

.price-arrow {
  font-size: 1.5rem;
  color: #2C1810;
  animation: priceArrow 1s ease-in-out infinite;
}

@keyframes priceArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* Advantage grid */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 250, 205, 0.95);
  border: 4px solid #2C1810;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: #2C1810;
}

.advantage-icon {
  font-size: 1.3rem;
}

/* Utility benefits */
.utility-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.utility-benefit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  color: #2C1810;
  background: rgba(255, 250, 205, 0.8);
  border: 3px solid #2C1810;
  padding: 0.6rem 1rem;
}

/* Collection benefits */
.collection-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.col-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 250, 205, 0.95);
  border: 4px solid #2C1810;
  padding: 1rem;
  text-align: left;
}

.col-benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.col-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.col-benefit-title {
  font-size: 1rem;
  color: #2C1810;
}

.col-benefit-desc {
  font-size: 0.8rem;
  color: #2C1810;
  opacity: 0.9;
}

/* SHINY Utility Flow */
.utility-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.utility-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1rem 1.5rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
  max-width: 500px;
  width: 100%;
}

.utility-step.approved {
  border-color: #32CD32;
  background: rgba(50, 205, 50, 0.1);
}

.utility-number {
  width: 40px;
  height: 40px;
  background: #FFD700;
  border: 4px solid #2C1810;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #2C1810;
  flex-shrink: 0;
}

.utility-content {
  flex: 1;
}

.utility-content h3 {
  font-size: 1rem;
  color: #2C1810;
  margin-bottom: 0.3rem;
}

.utility-content p {
  font-size: 0.8rem;
  color: #2C1810;
  opacity: 0.8;
}

.utility-arrow {
  font-size: 1.5rem;
  color: #FFD700;
  text-shadow: 2px 2px 0 #2C1810;
}

.utility-split {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.split-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 3px solid #2C1810;
}

.split-item.burn { background: rgba(255, 68, 68, 0.15); }
.split-item.back { background: rgba(50, 205, 50, 0.15); }

.split-amount {
  font-size: 1.2rem;
}

.split-label {
  font-size: 0.5rem;
  color: #2C1810;
}

.utility-note {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: #2C1810;
  background: rgba(255, 215, 0, 0.15);
  border: 3px solid #FFD700;
  padding: 0.8rem 1.2rem;
}

/* Supply explanation */
.supply-explanation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.supply-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 250, 205, 0.95);
  border: 5px solid #2C1810;
  padding: 1.2rem 1.5rem;
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.3);
}

.supply-title {
  font-size: 0.55rem;
  color: #2C1810;
  opacity: 0.7;
}

.supply-value {
  font-size: 2rem;
}

.supply-label {
  font-size: 0.5rem;
  color: #2C1810;
}

.supply-arrow {
  font-size: 2rem;
  color: #FFD700;
  text-shadow: 2px 2px 0 #2C1810;
}

.rarity-note {
  font-size: 0.75rem;
  color: #2C1810;
  margin-top: 1rem;
}

/* Coming soon collection */
.collection-item.coming-soon {
  opacity: 0.7;
}

.collection-logo.placeholder {
  width: 70px;
  height: 70px;
  border: 4px dashed #2C1810;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2C1810;
  background: rgba(255, 215, 0, 0.2);
}

/* Launch countdown */
.launch-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.countdown-label {
  font-size: 0.6rem;
  color: #2C1810;
  opacity: 0.7;
}

.countdown-date {
  font-size: 2rem;
  color: #FFD700;
  text-shadow: 4px 4px 0 #2C1810;
  animation: countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); text-shadow: 4px 4px 0 #2C1810, 0 0 30px rgba(255, 215, 0, 0.5); }
}

.countdown-time {
  font-size: 1rem;
  color: #FF69B4;
  text-shadow: 2px 2px 0 #2C1810;
}

/* Final pitch */
.final-pitch {
  margin: 1.5rem 0;
  font-size: 0.8rem;
  color: #2C1810;
  line-height: 2;
}

.final-pitch p {
  margin: 0.3rem 0;
}

/* ===================== NAVIGATION ===================== */

.navigation {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 100;
  background: rgba(255, 250, 205, 0.9);
  padding: 0.8rem 1.2rem;
  border: 4px solid #2C1810;
  box-shadow: 4px 4px 0 rgba(44, 24, 16, 0.3);
}

.nav-dot {
  width: 14px;
  height: 14px;
  border: 3px solid #2C1810;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-dot.active {
  background: #FFD700;
  transform: scale(1.2);
}

.nav-dot:hover:not(.active) {
  background: #FFE4B5;
}

/* Arrow navigation */
.arrow-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 250, 205, 0.95);
  border: 4px solid #2C1810;
  box-shadow: 4px 4px 0 rgba(44, 24, 16, 0.3);
  cursor: pointer;
  font-size: 1.2rem;
  color: #2C1810;
  z-index: 100;
  transition: all 0.2s ease;
}

.arrow-nav:hover {
  background: #FFD700;
  transform: translateY(-50%) translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(44, 24, 16, 0.4);
}

.arrow-nav-left { left: 1.5rem; }
.arrow-nav-right { right: 1.5rem; }

/* ===================== MOBILE INTRO OVERLAY ===================== */

.mobile-intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 228, 225, 0.97) 0%, rgba(230, 230, 250, 0.97) 30%, rgba(240, 230, 140, 0.97) 70%, rgba(224, 255, 255, 0.97) 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: introFadeOut 2.5s ease-in-out forwards;
  pointer-events: none;
}

.mobile-intro-overlay.hidden {
  display: none;
}

@keyframes introFadeOut {
  0%, 70% { opacity: 1; }
  100% { opacity: 0; }
}

.intro-swipe-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 215, 0, 0.3);
  border: 5px solid #2C1810;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: swipeHint 1s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}

.intro-swipe-icon svg {
  width: 40px;
  height: 40px;
  fill: #2C1810;
}

.intro-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.2rem;
  color: #2C1810;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(255, 215, 0, 0.5);
}

.intro-text span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #FF69B4;
  text-shadow: 
    -1px -1px 0 #2C1810,
    1px -1px 0 #2C1810,
    -1px 1px 0 #2C1810,
    1px 1px 0 #2C1810;
  animation: textPulse 0.8s ease-in-out infinite;
}

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

.intro-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.intro-scroll-icon {
  width: 30px;
  height: 50px;
  border: 4px solid #2C1810;
  border-radius: 15px;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
}

.intro-scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 12px;
  background: #2C1810;
  border-radius: 3px;
  animation: scrollDot 1.2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 24px; opacity: 0.5; }
}

.intro-scroll-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;
  color: #2C1810;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .slide-title { font-size: 2rem; }
  .hero-title { font-size: 3rem; }
  .benefits-visual { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Fix scroll - allow full content visibility */
  .slide { 
    padding: 1rem; 
    padding-top: 1.5rem;
    padding-bottom: 5rem; /* Extra padding for nav */
    justify-content: flex-start; 
    align-items: center;
    min-height: 100%;
    height: auto;
  }
  
  .slide-content {
    padding-bottom: 2rem;
  }
  
  .slide-title { font-size: 1.5rem; }
  .hero-title { font-size: 2rem; }
  .slide-subtitle { font-size: 0.8rem; margin-bottom: 1.5rem; }
  
  /* Fix comparison cards - stack vertically */
  .visual-comparison { 
    flex-direction: column; 
    gap: 0.8rem; 
  }
  .comparison-card {
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }
  .vs-divider { 
    transform: rotate(90deg); 
    margin: 0.5rem 0;
  }
  
  .transform-demo { flex-wrap: wrap; gap: 1rem; }
  .transform-img { width: 80px; height: 80px; }
  
  .flow-diagram { flex-direction: column; }
  .flow-connector { flex-direction: row; }
  .flow-line { width: 4px; height: 30px; }
  
  /* Fix wrap flow - vertical on mobile */
  .wrap-flow-visual { 
    flex-direction: column; 
    gap: 0.5rem;
  }
  .wrap-arrow { 
    transform: rotate(90deg); 
    margin: 0.3rem 0;
  }
  .wrap-step {
    width: 100%;
    max-width: 200px;
  }
  
  /* Fix collections grid - 3x2 grid */
  .collections-showcase { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    max-width: 320px;
    margin: 1.5rem auto;
  }
  .collection-item {
    padding: 0.6rem;
  }
  .collection-logo { width: 50px; height: 50px; }
  .collection-name { font-size: 0.5rem; }
  
  /* Fix collection benefits */
  .collection-benefits {
    gap: 0.8rem;
  }
  .col-benefit {
    padding: 0.8rem;
  }
  .col-benefit-title { font-size: 0.8rem; }
  .col-benefit-desc { font-size: 0.65rem; }
  
  /* Fix halving chart */
  .halving-chart { 
    height: 160px; 
    padding: 1.5rem 0.5rem 0.8rem 0.5rem; 
    gap: 0.2rem;
  }
  .bar-column { max-width: 20px; min-width: 12px; }
  .bar-value { font-size: 0.42rem; }
  .bar-label { font-size: 0.38rem; }
  
  .bonding-curve-visual { gap: 1rem; }
  .curve-container { padding: 0.5rem; max-width: 100%; }
  .curve-actions { gap: 0.5rem; flex-wrap: wrap; }
  .curve-action { padding: 0.4rem 0.6rem; }
  .action-label { font-size: 0.55rem; }
  .action-effect { font-size: 0.55rem; }
  .fomo-box { 
    padding: 0.8rem 1rem; 
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .fomo-icon { font-size: 2rem; }
  .fomo-title { font-size: 0.9rem; }
  .fomo-desc { font-size: 0.65rem; text-align: center; }
  .fomo-text { align-items: center; }
  .airdrop-explain { font-size: 0.7rem; padding: 0.6rem 0.8rem; }
  
  /* Fix opportunity visual - stack vertically */
  .opportunity-visual {
    flex-direction: column;
    gap: 0.8rem;
  }
  .opp-now, .opp-later {
    width: 100%;
    max-width: 200px;
    padding: 1rem 1.5rem;
  }
  .opp-amount { font-size: 2rem; }
  .opp-multiplier {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  .mult-value { font-size: 1.5rem; }
  .mult-label { font-size: 0.5rem; }
  
  /* Fix advantage grid */
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .advantage-item {
    padding: 0.6rem 0.8rem;
    font-size: 0.65rem;
  }
  
  /* Fix utility flow */
  .utility-flow {
    gap: 0.3rem;
  }
  .utility-step {
    padding: 0.8rem 1rem;
  }
  .utility-content h3 { font-size: 0.8rem; }
  .utility-content p { font-size: 0.65rem; }
  .utility-split { gap: 0.5rem; }
  .split-amount { font-size: 1rem; }
  .split-label { font-size: 0.4rem; }
  
  /* Fix yield sources */
  .yield-sources {
    gap: 0.8rem;
  }
  .yield-source {
    padding: 0.8rem 1rem;
  }
  .source-icon {
    width: 40px;
    height: 40px;
  }
  .source-icon svg {
    width: 24px;
    height: 24px;
  }
  .source-title { font-size: 0.6rem; }
  .source-detail { font-size: 0.65rem; }
  
  /* Fix elite section */
  .elite-section {
    padding: 1rem;
    margin-top: 1.5rem;
  }
  .elite-title { font-size: 0.9rem; }
  .elite-desc { font-size: 0.6rem; }
  
  /* Final pitch */
  .final-pitch {
    font-size: 0.7rem;
  }
  .final-facts {
    gap: 0.8rem;
  }
  .final-fact {
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* CTA */
  .reveal-notice {
    padding: 1rem 1.2rem;
  }
  .reveal-label { font-size: 0.7rem; }
  .reveal-action { font-size: 0.9rem; }
  
  .social-links {
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-link {
    font-size: 0.6rem;
    padding: 0.5rem 0.8rem;
  }
  
  .arrow-nav { display: none; }
  .navigation { bottom: 1rem; padding: 0.5rem 0.8rem; }
  .nav-dot { width: 10px; height: 10px; }
  
  /* Elite badge & Launch banner */
  .elite-badge {
    padding: 0.6rem 1rem;
    font-size: 0.6rem;
  }
  .launch-banner {
    padding: 0.6rem 1rem;
  }
  .launch-text { font-size: 0.65rem; }
  .launch-icon { font-size: 1.2rem; }
  
  /* Early bonus */
  .early-bonus {
    font-size: 0.7rem;
    padding: 0.8rem 1rem;
  }
  
  /* Token facts */
  .token-facts {
    gap: 1rem;
  }
  .fact-big { font-size: 1.1rem; }
  .fact-label { font-size: 0.5rem; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 1.1rem; }
  .hero-title { font-size: 1.4rem; }
  .slide-subtitle { font-size: 0.7rem; }
  
  .stat-box { padding: 0.8rem 1rem; }
  .stat-value { font-size: 1.5rem; }
  
  .comparison-card {
    padding: 1rem;
  }
  .comparison-nft { width: 70px; height: 70px; }
  .point { font-size: 0.55rem; padding: 0.3rem 0.6rem; }
  
  .wrap-nft { width: 60px; height: 60px; }
  .wrap-step-label { font-size: 0.5rem; }
  .wrap-yield, .wrap-profit { font-size: 0.45rem; }
  
  .collection-item { padding: 0.5rem; }
  .collection-logo { width: 40px; height: 40px; }
  .collection-name { font-size: 0.45rem; }
  
  .token-icon { width: 50px; height: 50px; }
  
  .cta-button { font-size: 0.7rem; padding: 0.8rem 1.2rem; }
  
  .halving-chart { 
    height: 140px; 
    gap: 0.15rem; 
    padding: 1.2rem 0.3rem 0.6rem 0.3rem; 
  }
  .bar-column { max-width: 16px; min-width: 10px; border-width: 1px; }
  .bar-value { font-size: 0.36rem; }
  .bar-label { font-size: 0.32rem; }
  .chart-legend { font-size: 0.45rem; }
  
  .token-facts { gap: 0.6rem; }
  .fact-big { font-size: 0.9rem; }
  .fact-label { font-size: 0.45rem; }
  
  .opp-amount { font-size: 1.8rem; }
  .mult-value { font-size: 1.3rem; }
  
  .col-benefit-icon { font-size: 1.2rem; }
  .col-benefit-title { font-size: 0.7rem; }
  .col-benefit-desc { font-size: 0.55rem; }
  
  .advantage-item {
    font-size: 0.55rem;
  }
  .advantage-icon { font-size: 1rem; }
  
  /* Intro overlay */
  .intro-text { font-size: 1rem; }
  .intro-text span { font-size: 0.7rem; }
  .intro-swipe-icon { width: 60px; height: 60px; }
  .intro-swipe-icon svg { width: 30px; height: 30px; }
}
