:root {
  --primary: #e63946;
  --secondary: #f4a261;
  --accent: #1d3557;
  --sky-blue: #a8dadc;
  --soft-white: #fff8f0;

  --dark: #1d3557;
  --dark-gray: #457b9d;
  --light-gray: #f1faee;
  --white: #ffffff;
  --cream: #fff8f0;

  /* Maple Reserve Gradients */
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --maple-gradient: linear-gradient(135deg, #e63946, #f4a261, #a8dadc, #1d3557);
  --distribution-gradient: linear-gradient(135deg, #e63946 0%, #f4a261 100%);
  --presale-gradient: linear-gradient(135deg, #a8dadc 0%, #f4a261 100%);
  --contract-gradient: linear-gradient(135deg, #1d3557 0%, #a8dadc 100%);
  --soft-gradient: linear-gradient(135deg, #fff8f0 0%, #f1faee 100%);
  --crypto-gradient: var(--maple-gradient);

  /* Maple Reserve Accent Colors */
  --canadian-red: #ff0000;
  --forest-green: #228b22;

  /* Maple Reserve Shadows */
  --card-shadow: 0 8px 25px rgba(230, 57, 70, 0.15),
    0 15px 35px rgba(29, 53, 87, 0.1);
  --hover-shadow: 0 15px 35px rgba(230, 57, 70, 0.25),
    0 25px 50px rgba(29, 53, 87, 0.15);
  --cartoon-shadow: 4px 4px 0px rgba(29, 53, 87, 0.2);
  --inset-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3);
  --maple-glow: 0 0 20px rgba(230, 57, 70, 0.4),
    0 0 40px rgba(244, 162, 97, 0.3);

  /* Animation Variables */
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Border Radius */
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;
  --border-radius-xl: 40px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comic Neue", "Inter", cursive, sans-serif;
}

h1,
h2,
h3,
.section-title {
  font-family: "Bangers", "Comic Neue", cursive, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-subtitle,
p,
.faq-question {
  font-family: "Comic Neue", "Inter", cursive, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(244, 162, 97, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(168, 218, 220, 0.12) 0%,
      transparent 50%
    );
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Cartoon Background Patterns */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><circle cx="20" cy="20" r="2" fill="%23FF6B6B"/><circle cx="80" cy="40" r="1.5" fill="%234ECDC4"/><circle cx="40" cy="70" r="1" fill="%23FFE66D"/><circle cx="70" cy="80" r="1.8" fill="%23A8E6CF"/></svg>');
  background-repeat: repeat;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: transparent;
  backdrop-filter: none;
  padding: 1.2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: none;
  transition: all 0.4s var(--bounce);
  border-bottom: 3px solid transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  padding: 0.6rem 0;
  box-shadow: var(--card-shadow);
  border-image: var(--crypto-gradient) 1;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crypto-gradient);
  animation: crypto-slide 3s ease-in-out infinite;
}

@keyframes crypto-slide {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Bangers", cursive;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  transition: transform 0.3s var(--bounce);
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.logo-icon {
  color: white;
  width: 56px;
  height: 56px;
  position: relative;
  overflow: hidden;
  animation: logo-pulse 2s ease-in-out infinite;
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: logo-shine 3s ease-in-out infinite;
}

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

@keyframes logo-shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 400;
  font-family: "Bangers", cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s var(--bounce);
  position: relative;
  padding: 0.8rem 1.2rem;
  border-radius: 25px 20px 28px 18px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: all 0.3s var(--elastic);
  transform: translateX(-50%);
  border-radius: 2px;
}

nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: var(--border-radius-sm);
  z-index: -1;
}

nav a:hover::after {
  width: 80%;
}

nav a:hover::before {
  opacity: 0.1;
}

nav a:hover {
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  border-radius: 28px 18px 25px 22px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 3px 10px rgba(255, 59, 59, 0.15);
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s var(--bounce);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--cartoon-shadow), 0 8px 25px rgba(255, 59, 59, 0.3);
  border: 3px solid var(--white);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--cartoon-shadow), 0 12px 35px rgba(255, 59, 59, 0.4);
  animation: btn-wiggle 0.5s ease-in-out;
}

@keyframes btn-wiggle {
  0%,
  100% {
    transform: translateY(-4px) scale(1.05) rotate(0deg);
  }
  25% {
    transform: translateY(-4px) scale(1.05) rotate(1deg);
  }
  75% {
    transform: translateY(-4px) scale(1.05) rotate(-1deg);
  }
}

.btn-outline {
  background: var(--white);
  color: var(--dark);
  border: 3px solid var(--primary);
  box-shadow: var(--cartoon-shadow);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--cartoon-shadow), 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
  border: 3px solid var(--accent);
  box-shadow: var(--cartoon-shadow), 0 8px 25px rgba(244, 162, 97, 0.3);
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--cartoon-shadow), 0 12px 35px rgba(29, 53, 87, 0.4);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s var(--bounce);
  position: relative;
  z-index: 1001;
}

.mobile-menu:hover {
  background: var(--light-gray);
  transform: scale(1.1);
}

.mobile-menu:active {
  transform: scale(0.95);
}

.mobile-menu.active {
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: var(--soft-gradient);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url("assets/hero_bg_clouds.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 0;
  animation: hero-clouds-float 25s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 247, 255, 0.3) 0%,
    rgba(230, 243, 255, 0.2) 50%,
    rgba(255, 230, 225, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
}

@keyframes hero-clouds-float {
  0%,
  100% {
    transform: translateX(0px) translateY(0px) scale(1.05);
    opacity: 0.8;
  }
  33% {
    transform: translateX(8px) translateY(-5px) scale(1.06);
    opacity: 0.9;
  }
  66% {
    transform: translateX(-8px) translateY(3px) scale(1.04);
    opacity: 0.85;
  }
}

@keyframes hero-bg-move {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  text-align: left;
  max-width: none;
}

.hero h1 {
  font-family: "Bangers", cursive;
  font-size: 4rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #e63946 0%, #f4a261 50%, #e63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 3px;
  font-weight: 900;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: title-bounce 2s ease-in-out infinite;
  background-size: 200% 200%;
  animation: title-bounce 2s ease-in-out infinite,
    gradient-shift 4s ease-in-out infinite;
}

@keyframes title-bounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* .hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  font-weight: 500;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  border: 3px solid var(--primary);
  position: relative;
  display: inline-block;
} */

.hero p::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--white);
  transform: translateX(-50%);
}

.hero p::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--primary);
  transform: translateX(-50%);
  z-index: -1;
}

.cta-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 1.2rem 0.8rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  text-align: center;
  transition: all 0.4s var(--bounce);
  border: 4px solid var(--secondary);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    var(--primary),
    var(--secondary),
    var(--accent),
    var(--primary)
  );
  animation: stat-rotate 8s linear infinite;
  z-index: -1;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: var(--white);
  border-radius: calc(var(--border-radius-lg) - 4px);
  z-index: -1;
}

@keyframes stat-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--cartoon-shadow), var(--hover-shadow);
  animation: stat-wiggle 0.5s ease-in-out;
}

@keyframes stat-wiggle {
  0%,
  100% {
    transform: translateY(-8px) scale(1.05) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) scale(1.05) rotate(2deg);
  }
  75% {
    transform: translateY(-8px) scale(1.05) rotate(-2deg);
  }
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-email {
  margin-top: 2rem;
  font-size: 1.1rem;
  background: var(--white);
  display: inline-block;
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  border: 3px solid var(--accent);
  position: relative;
  animation: support-float 3s ease-in-out infinite;
}

.support-email::before {
  content: "💌";
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 2rem;
  background: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: var(--cartoon-shadow);
}

@keyframes support-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.support-email a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.support-email a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Hero Mascot Styles */
.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: mascot-float 3s ease-in-out infinite;
}

.mascot-moose {
  width: 350px;
  height: auto;
  filter: drop-shadow(var(--cartoon-shadow));
  transition: all 0.3s var(--bounce);
}

.mascot-moose:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(var(--cartoon-shadow))
    drop-shadow(0 0 20px rgba(52, 211, 153, 0.4))
    drop-shadow(0 0 40px rgba(255, 217, 61, 0.3));
}

/* Tap Indicator Styles */
.tap-indicator {
  position: absolute;
  top: -20px;
  right: -10px;
  z-index: 5;
  pointer-events: none;
}

.tap-pulse {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.8);
  position: relative;
  animation: tap-pulse 2s infinite;
}

.tap-pulse::before,
.tap-pulse::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: tap-ripple 2s infinite;
}

.tap-pulse::after {
  animation-delay: 1s;
}

@keyframes tap-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes tap-ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes tap-hint-bounce {
  0%,
  50%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  25% {
    transform: translateX(-50%) translateY(-5px);
  }
  75% {
    transform: translateX(-50%) translateY(-3px);
  }
}

.mascot-speech-bubble {
  font-size: 1rem;
  margin-bottom: 2rem;
  background: var(--white);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--card-shadow);
  border: 3px solid var(--primary);
  display: inline-block;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--border-radius-md);
  font-weight: 600;
  color: var(--dark);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--elastic);
  z-index: 10;
  cursor: pointer;
  max-width: 280px;
}

.mascot-speech-bubble.show {
  opacity: 1;
  visibility: visible;
  animation: speech-bubble-bounce 0.6s var(--elastic) forwards;
}

.contract-info {
  text-align: center;
}

.contract-label {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.contract-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--contract-gradient);
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--secondary);
}

#mascot-contract-address {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: ltr;
}

.copy-btn-mini {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  padding: 0.3rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.copy-btn-mini:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@keyframes mascot-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes speech-bubble-bounce {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.5) translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1) translateY(-5px);
  }
  80% {
    transform: translateX(-50%) scale(0.95) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0px);
  }
}

@keyframes speech-bubble-pop {
  0%,
  70% {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  75%,
  95% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
  position: relative;
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 6px;
  background: var(--crypto-gradient);
  margin: 20px auto;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--cartoon-shadow);
}

.section-title::before {
  content: "✨";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: sparkle 2s ease-in-out infinite;
}

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

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-image {
  text-align: center;
}

.section-svg {
  width: 85%;
  height: 85%;
  background: var(--crypto-gradient);
  border: 5px solid rgb(249, 183, 83);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  object-fit: cover;
  transition: transform 0.3s var(--bounce), box-shadow 0.3s ease;
}

.section-svg:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--hover-shadow);
}

.image-placeholder {
  width: 100%;
  height: 350px;
  background: var(--crypto-gradient);
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  position: relative;
  overflow: hidden;
  border: 4px solid var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: image-float 4s ease-in-out infinite;
}

@keyframes image-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(1deg);
  }
  75% {
    transform: translateY(5px) rotate(-1deg);
  }
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 25%
    );
  animation: image-shine 6s ease-in-out infinite;
}

.image-placeholder::after {
  content: "🎨";
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--cartoon-shadow);
  animation: image-icon-spin 8s linear infinite;
}

@keyframes image-shine {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes image-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* About Section */
.about {
  background-image: url("assets/about.png");
  background-size: cover;
}

.section-text {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  border: 3px solid var(--cloud-white);
}

.section-text h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list li::before {
  content: "✓";
  color: var(--mint-green);
  font-weight: bold;
  background: rgba(52, 211, 153, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Tokenomics Section */
.tokenomics {
  background-image: url("assets/tokenomics.png");
  background-size: cover;
}
.tokenomics-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tokenomics-card {
  background: var(--white);
  padding: 3rem 2.5rem 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  transition: all 0.4s var(--bounce);
  border: 4px solid var(--accent);
  position: relative;
  overflow: visible;
  margin-top: 3rem;
}

.tokenomics-card::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: 8px;
  background: var(--rainbow-gradient);
  border-radius: 100px 100px 0 0;
  overflow: hidden;
  z-index: 1;
}

/* Individual Tokenomics Card Gradients */
.tokenomics-card:nth-child(1)::before {
  background: var(--distribution-gradient);
}

.tokenomics-card:nth-child(2)::before {
  background: var(--presale-gradient);
}

.tokenomics-card:nth-child(3)::before {
  background: var(--contract-gradient);
}

.tokenomics-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--cartoon-shadow), var(--hover-shadow);
  animation: card-bounce 0.6s ease-in-out;
}

@keyframes card-bounce {
  0%,
  100% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-12px) scale(1.05);
  }
}

.tokenomics-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tokenomics-card:nth-child(1) h3 {
  background: var(--distribution-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tokenomics-card:nth-child(2) h3 {
  background: var(--presale-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tokenomics-card:nth-child(3) h3 {
  background: var(--contract-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tokenomics-card h3 i {
  color: var(--secondary);
  font-size: 1.8rem;
  background: var(--soft-gradient);
  padding: 10px;
  border-radius: 50%;
  box-shadow: var(--cartoon-shadow);
}

.tokenomics-card:nth-child(1) h3 i {
  color: var(--primary);
}

.tokenomics-card:nth-child(2) h3 i {
  color: var(--trust-blue);
}

.tokenomics-card:nth-child(3) h3 i {
  color: var(--accent);
}

.tokenomics-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 4px solid var(--primary);
  box-shadow: var(--cartoon-shadow), var(--card-shadow), 0 0 0 4px var(--white);
  background: var(--white);
  padding: 2px;
  transition: transform 0.3s var(--bounce), box-shadow 0.3s ease;
  z-index: 10;
}

.tokenomics-image:hover {
  transform: translateX(-50%) scale(1.15) rotate(10deg);
  box-shadow: var(--cartoon-shadow), var(--hover-shadow),
    0 0 20px rgba(255, 107, 107, 0.4);
}

.progress-container {
  margin: 1.5rem 0;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius-sm);
  margin: 1rem 0;
  border: 2px solid var(--rainbow-gradient);
  background: linear-gradient(var(--light-gray), var(--light-gray)) padding-box,
    var(--rainbow-gradient) border-box;
  box-shadow: var(--cartoon-shadow);
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(255, 255, 255, 0.1) 5px,
    rgba(255, 255, 255, 0.1) 10px
  );
  pointer-events: none;
}

.progress-fill {
  height: 100%;
  background: var(--secondary);
  width: 0%;
  border-radius: var(--border-radius-sm);
  transition: width 2s var(--elastic);
  position: relative;
  animation: progress-shine 3s ease-in-out infinite;
}

.progress-fill::after {
  content: "🚀";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  animation: rocket-bounce 1s ease-in-out infinite;
}

@keyframes progress-shine {
  0%,
  100% {
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: inset 0 1px 8px rgba(255, 255, 255, 0.6);
  }
}

@keyframes rocket-bounce {
  0%,
  100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(5px);
  }
}

.contract-address-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contract-address {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  font-family: monospace;
  word-break: break-all;
  border: 1px solid #e9ecef;
  flex: 1;
  font-size: 0.9rem;
}

.copy-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--bounce);
  box-shadow: var(--cartoon-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
}

.copy-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--hover-shadow);
}

.copy-btn:active {
  transform: translateY(0) scale(0.98);
}

.copy-btn.copied {
  background: var(--forest-green);
  animation: copy-success 0.5s ease;
}

@keyframes copy-success {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Roadmap Section - Rainbow Road */
.roadmap {
  background-image: url("assets/roadmap.png");
  background-color: #ecd5cc;

  background-size: contain;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: bg-sparkle 20s linear infinite;
}

@keyframes bg-sparkle {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 200px;
  }
}

.rainbow-road {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
}

.road-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.road-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

#roadPath {
  animation: crypto-flow 4s linear infinite;
  stroke-dasharray: 30 10;
}

@keyframes crypto-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 40;
  }
}

@keyframes road-draw {
  0% {
    stroke-dasharray: 0 1000;
  }
  100% {
    stroke-dasharray: 30 10;
  }
}

/* Milestones */
.milestone {
  position: absolute;
  z-index: 10;
  transition: all 0.4s var(--bounce);
}

.milestone[data-milestone="1"] {
  top: 45%;
  left: 2%;
}

.milestone[data-milestone="2"] {
  top: 20%;
  left: 22%;
}

.milestone[data-milestone="3"] {
  top: 35%;
  left: 45%;
}

.milestone[data-milestone="4"] {
  top: 55%;
  left: 68%;
}

.milestone[data-milestone="5"] {
  top: 25%;
  left: 88%;
}

.milestone-marker {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  border: 6px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  transition: all 0.3s var(--bounce);
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  animation: milestone-float 3s ease-in-out infinite;
}

/* Milestone Icon Colors */
.milestone[data-milestone="1"] .milestone-marker {
  border-color: var(--primary);
}

.milestone[data-milestone="2"] .milestone-marker {
  border-color: var(--secondary);
}

.milestone[data-milestone="3"] .milestone-marker {
  border-color: var(--mint-green);
}

.milestone[data-milestone="4"] .milestone-marker {
  border-color: var(--accent);
}

.milestone[data-milestone="5"] .milestone-marker {
  border-color: var(--trust-blue);
}

.milestone-marker.animate-in {
  animation: marker-bounce-in 0.8s var(--bounce) forwards,
    milestone-float 3s ease-in-out infinite;
}

@keyframes marker-bounce-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes milestone-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.milestone-marker:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: var(--cartoon-shadow), var(--hover-shadow);
}

.milestone-icon {
  font-size: 2.2rem;
  animation: icon-bounce 2s ease-in-out infinite;
}

/* Milestone Icon Colors */
.milestone[data-milestone="1"] .milestone-icon {
  color: var(--primary);
}

.milestone[data-milestone="2"] .milestone-icon {
  color: var(--secondary);
}

.milestone[data-milestone="3"] .milestone-icon {
  color: var(--mint-green);
}

.milestone[data-milestone="4"] .milestone-icon {
  color: var(--accent);
}

.milestone[data-milestone="5"] .milestone-icon {
  color: var(--trust-blue);
}

@keyframes icon-bounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

.milestone-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.milestone-content {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  border: 3px solid var(--accent);
  min-width: 250px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--elastic);
  z-index: 20;
}

.milestone-content::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid var(--accent);
}

/* Always visible milestone content with animation */
.milestone-content.animate-in {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  animation: milestone-slide-in 0.8s var(--elastic) forwards;
}

@keyframes milestone-slide-in {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(30px) scale(0.8);
  }
  60% {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* Enhanced hover effect for better interaction */
.milestone:hover .milestone-content {
  transform: translateX(-50%) translateY(-5px) scale(1.02);
  box-shadow: var(--cartoon-shadow), var(--hover-shadow);
}

/* Staggered animation delays for milestones */
.milestone[data-milestone="1"] .milestone-content {
  animation-delay: 0.2s;
}

.milestone[data-milestone="2"] .milestone-content {
  animation-delay: 0.4s;
}

.milestone[data-milestone="3"] .milestone-content {
  animation-delay: 0.6s;
}

.milestone[data-milestone="4"] .milestone-content {
  animation-delay: 0.8s;
}

.milestone[data-milestone="5"] .milestone-content {
  animation-delay: 1s;
}

.milestone-date {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.milestone-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}

.milestone-content p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  font-weight: 500;
  line-height: 1.5;
}

/* Floating Decorations */
.road-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.floating-coin,
.floating-star,
.floating-gem,
.floating-rocket {
  position: absolute;
  font-size: 2rem;
  opacity: 0.7;
  animation: float-around 15s ease-in-out infinite;
}

.floating-coin {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.floating-star {
  top: 70%;
  left: 35%;
  animation-delay: 3s;
}

.floating-gem {
  top: 15%;
  left: 70%;
  animation-delay: 6s;
}

.floating-rocket {
  top: 80%;
  left: 80%;
  animation-delay: 9s;
}

@keyframes float-around {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 0.9;
  }
}

/* After Roadmap Image - Bottom Center */
.after-roadmap-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto 2rem;
  width: 100%;
  z-index: 8;
}

.after-roadmap-svg {
  width: 500px;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(255, 107, 107, 0.2));
  transition: all 0.6s var(--elastic);
  animation: bottom-float 5s ease-in-out infinite;
  opacity: 1;
}

.after-roadmap-svg:hover {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 20px 50px rgba(255, 107, 107, 0.3));
}

@keyframes bottom-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  transition: all 0.4s var(--bounce);
  border: 3px solid var(--cloud-white);
  background: var(--white);
}

.faq-item:hover {
  box-shadow: var(--cartoon-shadow), var(--hover-shadow);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.faq-question {
  background: var(--white);
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  position: relative;
}

.faq-question::before {
  content: "❓";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  background: var(--mint-green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: var(--cartoon-shadow);
}

.faq-answer {
  background: var(--soft-gradient);
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--elastic);
  font-weight: 500;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 2rem;
}

.faq-item.active .faq-question::before {
  content: "✅";
  animation: check-bounce 0.5s ease-in-out;
}

@keyframes check-bounce {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-question i {
  transition: all 0.3s ease;
  font-size: 1.3rem;
  color: var(--secondary);
}

/* Community Section */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.4s var(--bounce);
  width: 140px;
  font-weight: 700;
  font-size: 1.1rem;
}

.social-link:hover {
  transform: translateY(-8px) scale(1.05);
  animation: social-wiggle 0.6s ease-in-out;
}

@keyframes social-wiggle {
  0%,
  100% {
    transform: translateY(-8px) scale(1.05) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) scale(1.05) rotate(3deg);
  }
  75% {
    transform: translateY(-8px) scale(1.05) rotate(-3deg);
  }
}

.social-icon {
  width: 90px;
  height: 90px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  box-shadow: var(--cartoon-shadow), var(--card-shadow);
  transition: all 0.4s var(--bounce);
  border: 4px solid var(--white);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.social-link:hover .social-icon {
  box-shadow: var(--cartoon-shadow), var(--hover-shadow);
}

.social-link:hover .social-icon::before {
  left: 100%;
}

.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.reddit {
  background: linear-gradient(135deg, #ff4500, #e03d00);
}

.telegram {
  background: linear-gradient(135deg, #0088cc, #0077b3);
}

/* NFT Section */
.nft {
  background-image: url("assets/nft.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;

  background-color: #110336;
  color: var(--white);
}

.nft .section-title,
.nft .section-subtitle {
  color: var(--white);
}

.nft-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.nft-highlight {
  background: var(--accent);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  margin: 1.5rem 0;
  box-shadow: var(--nft-glow);
  animation: nft-pulse 2s ease-in-out infinite;
}

@keyframes nft-pulse {
  0%,
  100% {
    box-shadow: var(--nft-glow);
  }
  50% {
    box-shadow: var(--nft-glow), 0 0 60px rgba(140, 82, 255, 0.4);
  }
}

.nft-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.nft-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.nft-detail-full {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* Claiming Process Styles */
.claiming-process {
  text-align: left;
  margin-top: 1rem;
}

.claim-important {
  background: rgba(230, 57, 70, 0.1);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

.claim-steps {
  margin: 1.5rem 0;
}

.claim-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--secondary);
}

.step-number {
  background: var(--secondary);
  color: var(--dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.step-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0;
}

.step-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--sky-blue);
}

.step-content ul li::before {
  content: "•";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.claim-note {
  background: rgba(168, 218, 220, 0.1);
  border: 2px solid var(--sky-blue);
  border-radius: var(--border-radius-sm);
  padding: 1rem;
  margin-top: 1.5rem;
  color: var(--sky-blue);
  font-weight: 600;
}

.nft-detail {
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid transparent;
  background: linear-gradient(var(--dark), var(--dark)) padding-box,
    linear-gradient(135deg, var(--accent), var(--neon-green)) border-box;
  box-shadow: var(--nft-glow);
  transition: all 0.3s var(--bounce);
}

.nft-detail:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--nft-glow), 0 0 40px rgba(0, 255, 136, 0.4);
}

.nft_image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* OpenSea Button Styling */
.opensea-link-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.opensea-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #2081e2 0%, #1868cc 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid var(--white);
  box-shadow: var(--cartoon-shadow), 0 8px 25px rgba(32, 129, 226, 0.3);
  transition: all 0.3s var(--bounce);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.opensea-btn:hover {
  background: linear-gradient(135deg, #1868cc 0%, #0f4a99 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--cartoon-shadow), 0 12px 35px rgba(32, 129, 226, 0.4);
  color: white;
  text-decoration: none;
}

.opensea-btn i:first-child {
  font-size: 1.3rem;
}

.opensea-btn i:last-child {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #2a2d42 50%,
    var(--dark) 100%
  );
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--rainbow-gradient);
  animation: rainbow-wave 3s ease-in-out infinite;
}

@keyframes rainbow-wave {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.02);
  }
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><circle cx="25" cy="25" r="10" fill="%23FFFFFF"/><circle cx="75" cy="75" r="8" fill="%23FFFFFF"/></svg>');
  background-repeat: repeat;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--crypto-gradient);
  border-radius: var(--border-radius-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--mint-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a1a1a6;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes progress-bounce {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.1);
  }
}

@keyframes ripple-effect {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes bubble-float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    border-radius: var(--border-radius-lg);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
    border-radius: var(--border-radius-xl);
  }
}

/* Add cartoon bubble effects to sections */
.about,
.tokenomics,
.roadmap,
.faq,
.community,
.nft {
  position: relative;
  overflow: hidden;
}

.about::before,
.tokenomics::before,
.roadmap::before,
.faq::before,
.community::before,
.nft::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: bubble-float 8s ease-in-out infinite;
  z-index: 0;
}

.tokenomics::before {
  background: radial-gradient(
    circle,
    rgba(78, 205, 196, 0.1) 0%,
    transparent 70%
  );
  animation-delay: 2s;
  top: auto;
  bottom: -50px;
  right: -50px;
  left: auto;
}

.roadmap::before {
  background: radial-gradient(
    circle,
    rgba(255, 230, 109, 0.1) 0%,
    transparent 70%
  );
  animation-delay: 4s;
}

.faq::before {
  background: radial-gradient(
    circle,
    rgba(168, 230, 207, 0.1) 0%,
    transparent 70%
  );
  animation-delay: 6s;
  top: auto;
  bottom: -50px;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-image {
    order: -1;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
  }

  .timeline-item:nth-child(odd) .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    right: auto;
    border-right: 10px solid white;
    border-left: none;
  }
}

/* Tablet Responsive Styles */
@media (max-width: 968px) and (min-width: 769px) {
  /* Roadmap tablet adjustments */
  .rainbow-road {
    height: 500px;
  }

  .milestone-content {
    min-width: 220px;
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  .milestone-marker {
    width: 70px;
    height: 70px;
  }

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

  /* Adjust milestone positions for tablet */
  .milestone[data-milestone="1"] {
    top: 40%;
    left: 3%;
  }

  .milestone[data-milestone="2"] {
    top: 18%;
    left: 20%;
  }

  .milestone[data-milestone="3"] {
    top: 32%;
    left: 42%;
  }

  .milestone[data-milestone="4"] {
    top: 52%;
    left: 65%;
  }

  .milestone[data-milestone="5"] {
    top: 22%;
    left: 85%;
  }

  /* Tablet After Roadmap Image */
  .after-roadmap-image {
    margin: 2.5rem auto 1.5rem;
  }

  .after-roadmap-svg {
    width: 400px;
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    border-top: 4px solid var(--secondary);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s var(--bounce);
    margin-top: 3px;
    overflow: hidden;
  }

  nav::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
      90deg,
      var(--primary) 0%,
      var(--accent) 50%,
      var(--secondary) 100%
    );
    z-index: 1;
  }

  nav.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: mobile-nav-slide 0.4s var(--bounce) forwards;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  nav ul li {
    margin: 0;
    border-bottom: 1px solid var(--light-gray);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    display: block;
    padding: 1rem 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: "Bangers", cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    border-radius: 8px;
    transition: all 0.3s var(--bounce);
    margin: 0 -1rem;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  nav ul li a:hover {
    background: var(--light-gray);
    color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.1);
  }

  .mobile-menu {
    display: block;
  }

  .header-actions {
    display: flex;
  }

  .header-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }

  /* Header styling when mobile menu is active */
  header.mobile-menu-open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);
  }

  @keyframes mobile-nav-slide {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .hero-mascot {
    order: 1;
  }

  .mascot-moose {
    width: 250px;
  }

  .tap-indicator {
    top: -15px;
    right: -5px;
  }

  .tap-pulse {
    width: 30px;
    height: 30px;
  }

  .tap-hint {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    top: 35px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .token-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 1.2rem;
  }

  .stat-card {
    padding: 0.8rem 0.5rem;
    border-radius: var(--border-radius-md);
  }

  .stat-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Mobile Roadmap: Switch to vertical timeline */
  .roadmap {
    padding: 3rem 0;
    background-image: none;
  }

  .rainbow-road {
    position: relative;
    height: auto;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  /* Hide the curved SVG path on mobile */
  .road-path {
    display: none;
  }

  /* Create vertical timeline */
  .rainbow-road::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--crypto-gradient);
    border-radius: 4px;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
  }

  /* Stack milestones vertically */
  .milestone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 4rem 0;
    width: 100%;
    padding: 0 1rem;
  }

  .milestone[data-milestone="1"],
  .milestone[data-milestone="2"],
  .milestone[data-milestone="3"],
  .milestone[data-milestone="4"],
  .milestone[data-milestone="5"] {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
  }

  .milestone-marker {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 10;
    margin: 0 auto 1.5rem auto;
  }

  .milestone-icon {
    font-size: 2.2rem;
  }

  .milestone-content {
    position: relative;
    top: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(30px);
    width: calc(100vw - 4rem);
    min-width: 280px;
    max-width: 380px;
    padding: 1.5rem;
    text-align: center;
    margin: 0;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
  }

  .milestone-content::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* All milestones centered on mobile for consistent layout */
  .milestone {
    align-items: center;
  }

  /* Alternate milestone colors for visual interest */
  .milestone:nth-child(even) .milestone-content {
    background: var(--accent);
    border-color: var(--primary);
  }

  .milestone:nth-child(odd) .milestone-content {
    background: var(--white);
    border-color: var(--secondary);
  }

  /* Connect milestones to timeline */
  .milestone::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    width: 30px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  }

  /* Enhanced mobile roadmap animations */
  .milestone-content.animate-in {
    opacity: 1;
    visibility: visible;
    animation: mobile-slide-in 1.2s var(--elastic) forwards;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2),
      0 20px 50px rgba(29, 53, 87, 0.1);
  }

  @keyframes mobile-slide-in {
    0% {
      opacity: 0;
      transform: translateX(-50%) translateY(50px) scale(0.8) rotateY(-15deg);
      filter: blur(3px);
    }
    30% {
      opacity: 0.7;
      transform: translateX(-50%) translateY(20px) scale(0.95) rotateY(-5deg);
      filter: blur(1px);
    }
    60% {
      opacity: 0.9;
      transform: translateX(-50%) translateY(-8px) scale(1.05) rotateY(2deg);
      filter: blur(0px);
    }
    80% {
      opacity: 1;
      transform: translateX(-50%) translateY(2px) scale(0.98) rotateY(0deg);
    }
    100% {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1) rotateY(0deg);
      filter: blur(0px);
    }
  }

  /* Subtle pulse animation for mobile */
  @keyframes milestone-pulse {
    0%,
    100% {
      box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2),
        0 20px 50px rgba(29, 53, 87, 0.1);
    }
    50% {
      box-shadow: 0 15px 35px rgba(230, 57, 70, 0.3),
        0 25px 55px rgba(29, 53, 87, 0.15);
      transform: translateX(-50%) translateY(-2px) scale(1.01);
    }
  }

  /* Stagger mobile animations */
  .milestone:nth-child(1) .milestone-content {
    animation-delay: 0.2s;
  }

  .milestone:nth-child(2) .milestone-content {
    animation-delay: 0.4s;
  }

  .milestone:nth-child(3) .milestone-content {
    animation-delay: 0.6s;
  }

  .milestone:nth-child(4) .milestone-content {
    animation-delay: 0.8s;
  }

  .milestone:nth-child(5) .milestone-content {
    animation-delay: 1s;
  }

  /* Mobile-specific floating decorations */
  .road-decorations {
    display: none;
  }

  /* Mobile After Roadmap Image */
  .after-roadmap-image {
    margin: 2rem auto 1rem;
  }

  .after-roadmap-svg {
    width: 350px;
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 8rem 0 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Extra small mobile adjustments for roadmap */
  .rainbow-road {
    padding: 1rem 0.5rem;
    min-height: 700px;
  }

  .milestone {
    margin: 0 auto 3rem auto;
    max-width: 300px;
    align-items: center;
    justify-content: center;
  }

  .milestone-marker {
    width: 70px;
    height: 70px;
  }

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

  .milestone-content {
    width: 250px;
    max-width: 280px;
    padding: 1.2rem;
    font-size: 0.9rem;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .milestone-date {
    font-size: 0.8rem;
  }

  .milestone-content h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }

  .milestone-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Reduce spacing between elements */
  .roadmap {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Small Mobile After Roadmap Image */
  .after-roadmap-image {
    margin: 1.5rem auto 1rem;
  }

  .after-roadmap-svg {
    width: 300px;
    max-width: 320px;
  }

  /* Mobile NFT Layout */
  .nft-details-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nft-detail {
    padding: 1.2rem;
  }

  .nft-detail-full {
    max-width: 100%;
  }

  /* Mobile claiming process */
  .claim-step {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 0.8rem;
  }

  .step-number {
    align-self: flex-start;
  }

  .step-content h4 {
    font-size: 1rem;
  }

  .claim-important,
  .claim-note {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  /* Mobile Mascot Speech Bubble */
  .mascot-speech-bubble {
    max-width: 240px;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    top: -60px;
  }

  .contract-label {
    font-size: 0.7rem;
  }

  .contract-display {
    padding: 0.5rem 0.8rem;
  }

  #mascot-contract-address {
    font-size: 0.8rem;
    max-width: 160px;
  }

  .copy-btn-mini {
    padding: 0.25rem;
    font-size: 0.7rem;
  }

  .mascot-moose {
    width: 300px;
  }

  .tap-indicator {
    top: -15px;
    right: -5px;
  }

  .tap-pulse {
    width: 35px;
    height: 35px;
  }
}
