@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Space+Mono:wght@400;700&display=swap');

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Space Mono', monospace;
  background: #fff;
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: #e5e5e5;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Creepster', cursive;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.8rem;
  color: #777;
  transition: color 0.2s;
}

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

.nav-buy {
  background: #00C805;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}

.nav-buy:hover {
  opacity: 0.85;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #222;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-text {
  flex: 1;
}

.hero-chain {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00C805;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Creepster', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #111;
  letter-spacing: 2px;
}

.hero h1 span {
  color: #00C805;
}

.hero-desc {
  font-size: 1rem;
  color: #888;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: #00C805;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-main:hover { opacity: 0.85; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: transparent;
  color: #222;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-outline:hover { border-color: #999; }

.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 0.78rem;
  max-width: 100%;
}

.ca-label {
  color: #999;
  flex-shrink: 0;
}

.ca-addr {
  color: #00C805;
  word-break: break-all;
  font-family: 'Space Mono', monospace;
}

.ca-copy {
  background: #e8e8e8;
  border: none;
  color: #555;
  padding: 4px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'Space Mono', monospace;
  transition: background 0.2s;
  flex-shrink: 0;
}

.ca-copy:hover { background: #ddd; }

.hero-img {
  flex: 0 0 300px;
}

.hero-img img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid #e5e5e5;
}

/* ===== SECTIONS ===== */
section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00C805;
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: 'Creepster', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #111;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-head p {
  color: #666;
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== TOKENOMICS ===== */
.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.token-item {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.token-item:hover {
  border-color: #ccc;
}

.token-emoji {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.token-pct {
  font-family: 'Creepster', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.token-pct.liq { color: #00C805; }
.token-pct.burn { color: #ef4444; }
.token-pct.div { color: #f59e0b; }
.token-pct.cre { color: #8b5cf6; }

.token-name {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* ===== FEATURES ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feat-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 24px;
  transition: border-color 0.2s;
}

.feat-card:hover {
  border-color: #ccc;
}

.feat-card .emoji {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.feat-card h3 {
  font-family: 'Creepster', cursive;
  font-size: 1.05rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.feat-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ===== HOW TO BUY ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  text-align: center;
  padding: 32px 16px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: border-color 0.2s;
}

.step:hover { border-color: #ccc; }

.step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00C805;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
}

.step h3 {
  font-family: 'Creepster', cursive;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.step p {
  font-size: 0.82rem;
  color: #666;
}

/* ===== ROADMAP ===== */
.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e5e5;
}

.tl-item {
  position: relative;
  margin-bottom: 32px;
}

.tl-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #00C805;
  border-radius: 50%;
}

.tl-dot.later {
  background: #e5e5e5;
  border: 2px solid #ccc;
}

.tl-phase {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00C805;
  margin-bottom: 6px;
}

.tl-item h3 {
  font-family: 'Creepster', cursive;
  font-size: 1.2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.tl-item li {
  font-size: 0.85rem;
  color: #666;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.tl-item li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #444;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
}

/* ===== COMMUNITY ===== */
.community-section {
  text-align: center;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #222;
  transition: border-color 0.2s;
}

.social-btn:hover { border-color: #ccc; color: #000; }

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.quick-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.quick-btn {
  padding: 8px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #666;
  transition: color 0.2s, border-color 0.2s;
}

.quick-btn:hover { color: #000; border-color: #999; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid #e8e8e8;
  padding: 32px 0;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Creepster', cursive;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1px;
}

.foot-brand img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.foot-note {
  font-size: 0.72rem;
  color: #444;
  max-width: 440px;
  text-align: center;
}

.foot-copy {
  font-size: 0.75rem;
  color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-img { order: -1; flex: 0 0 auto; }
  .hero-img img { width: 200px; height: 200px; }
  .hero-btns { justify-content: center; }

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

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 260px; height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right 0.3s;
    border-left: 1px solid #e5e5e5;
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; }

  section { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .social-row { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-main, .btn-outline { justify-content: center; width: 100%; }
  .ca-box { flex-direction: column; align-items: flex-start; width: 100%; }

  footer .container { flex-direction: column; text-align: center; }
}

/* ===== SCROLL FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
