@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --pink: #FF006E;
  --neon-green: #00FF41;
  --yellow: #FFE600;
  --orange: #FF6B00;
  --cyan: #00E5FF;
  --rainbow: linear-gradient(90deg, #FF006E, #FF6B00, #FFE600, #00FF41, #00E5FF, #7B2FFF);
  --glow-pink: 0 0 30px rgba(255,0,110,0.4);
  --glow-green: 0 0 30px rgba(0,255,65,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ======= NAVBAR ======= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(10,10,10,0.95); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--pink); }
.nav-logo span { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.2rem; color: #fff; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--rainbow);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  padding: 10px 24px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--glow-pink);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(255,0,110,0.6); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  width: 28px; height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

/* ======= HERO ======= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,0,110,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(0,255,65,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(123,47,255,0.04) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, 2%) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-logo {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 4px solid transparent;
  background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), var(--rainbow);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  margin: 0 auto 32px;
  animation: logoPulse 3s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(255,0,110,0.3), 0 0 120px rgba(0,255,65,0.1);
  overflow: hidden;
}
.hero-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(255,0,110,0.3), 0 0 120px rgba(0,255,65,0.1); }
  50% { box-shadow: 0 0 80px rgba(255,0,110,0.5), 0 0 160px rgba(0,255,65,0.2); }
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255,0,110,0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { border-color: rgba(255,0,110,0.4); }
  50% { border-color: rgba(255,0,110,0.8); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 8px;
}
.hero h1 .gradient-text {
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  padding: 16px 40px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--glow-pink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(255,0,110,0.6); }

.btn-secondary {
  padding: 16px 40px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
}
.btn-secondary:hover { border-color: var(--neon-green); color: var(--neon-green); transform: translateY(-3px); }

/* ======= CONTRACT ADDRESS ======= */
.ca-section {
  padding: 0 20px 60px;
  text-align: center;
}
.ca-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ca-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rainbow);
}
.ca-box:hover { border-color: rgba(255,0,110,0.3); transform: translateY(-2px); }

.ca-label {
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ca-address {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
  word-break: break-all;
  text-align: left;
  flex: 1;
}
.ca-copy {
  padding: 8px 20px;
  background: rgba(255,0,110,0.15);
  color: var(--pink);
  border: 1px solid rgba(255,0,110,0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
}
.ca-copy:hover { background: var(--pink); color: #fff; }
.ca-copy.copied { background: var(--neon-green); color: #000; border-color: var(--neon-green); }

/* ======= SECTION COMMON ======= */
section { padding: 80px 20px; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.rainbow-line {
  width: 80px; height: 4px;
  background: var(--rainbow);
  border-radius: 4px;
  margin: 0 auto 20px;
}

/* ======= ABOUT / NARRATIVE ======= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-image img { width: 100%; display: block; }
.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-text .highlight {
  color: var(--pink);
  font-weight: 700;
}

/* ======= STATS ======= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(255,0,110,0.2); }
.stat-card:hover::after { opacity: 1; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======= MEME GALLERY ======= */
.meme-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.meme-card {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}
.meme-card:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--pink);
  box-shadow: 0 20px 40px rgba(255,0,110,0.2);
}
.meme-card img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.4s; }
.meme-card:hover img { transform: scale(1.05); }

/* ======= HOW TO BUY ======= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(255,0,110,0.3); }
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(255,0,110,0.3);
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ======= CTA ======= */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,0,110,0.1) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
}
.cta-content p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ======= FOOTER ======= */
.footer {
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer p { color: var(--text-secondary); font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-top: 16px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--pink); }

/* ======= PARTICLES ======= */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0.15;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ======= SCROLLBAR ======= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 4px; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .meme-gallery { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { 
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .mobile-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-logo { width: 160px; height: 160px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .meme-gallery { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .ca-box { flex-direction: column; text-align: center; }
  .ca-address { text-align: center; }
}
@media (max-width: 480px) {
  .meme-gallery { grid-template-columns: 1fr 1fr; }
  .meme-card img { height: 180px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr; }
}
