/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f5c842;
  --gold-dark: #c9a020;
  --dark: #0a0a0f;
  --dark2: linear-gradient(90deg, #b34789, #7d7f3a, #448d6b, #d9944d);
  --dark3: linear-gradient(90deg, #b34789, #7d7f3a, #448d6b, #d9944d);
  --text: #e8e0c8;
  --text-muted: #9a9080;
  --white: #ffffff;
  --thunder: #7b5cff;
  --thunder-light: #a98fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: linear-gradient(90deg, #f295cf, #f4f865, #8df1c3, #d9a773);
  opacity: 0.8;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 200, 66, 0.15);
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #f9ff00;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(245, 200, 66, 0.5);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #692899;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-socials a { color: #372e12; transition: color 0.2s; }
.nav-socials a:hover { color: #332c19; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #f295cf, #f4f865, #8df1c3, #d9a773);
  color: var(--dark);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(245, 200, 66, 0.3);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 200, 66, 0.5);
}

.btn-buy {
  display: inline-block;
  background: linear-gradient(90deg, #f295cf, #f4f865, #8df1c3, #d9a773);
  color: var(--dark);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 5px;
  transition: background 0.2s;
}

.btn-buy:hover { background: var(--gold-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== SECTION SHARED ===== */
.section-dark { background: var(--dark2); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 48px;
  background: linear-gradient(90deg, #f295cf, #f4f865, #8df1c3, #d9a773);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-decor { width: 100%; line-height: 0; }
.section-decor img { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: radial-gradient(ellipse at 50% 0%, #1a1040 0%, var(--dark) 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

/* Lightning bolt decorative lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(123, 92, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(245, 200, 66, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-logo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(245, 200, 66, 0.4), 0 0 120px rgba(123, 92, 255, 0.2);
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder when no image */
.hero-logo-wrap:not(:has(img[src*="webp"])) {
  background: linear-gradient(135deg, #1a1040, #2a1060);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1;
  background: linear-gradient(90deg, #f295cf, #f4f865, #8df1c3, #d9a773);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.8));
}

.hero-symbol {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #f295cf, #f4f865, #8df1c3, #d9a773);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-ca {
  font-size: 0.8rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(176 239 237 / 5%);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgb(37 179 145 / 40%);
}

.copy-btn {
  background: linear-gradient(90deg, #f295cf, #f4f865, #8df1c3, #d9a773);
  color: var(--dark);
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.copy-btn:hover { background: var(--gold-dark); }

.hero-char {
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: 2;
  width: clamp(200px, 30vw, 420px);
  pointer-events: none;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-img {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(245, 200, 66, 0.2);
  box-shadow: 0 0 40px rgba(245, 200, 66, 0.1);
  background: var(--dark3);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img img { width: 100%; border-radius: 14px; }

/* ===== TOKENOMICS ===== */
.tokenomics {
  position: relative;
  padding: 80px 0;
  background: var(--dark3);
}

.token-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.token-card {
  background: rgba(245, 200, 66, 0.05);
  border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.token-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(245, 200, 66, 0.2);
}

.token-card-icon { font-size: 2rem; margin-bottom: 12px; }

.token-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.token-card-value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.token-card-link {
  font-size: 0.75rem;
  color: var(--thunder-light);
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.token-card-link:hover { color: var(--gold); }

.token-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 60px;
}

.supply-breakdown {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245, 200, 66, 0.15);
  border-radius: 16px;
  padding: 40px;
}

.supply-breakdown h3 {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 32px;
}

.supply-bars { display: flex; flex-direction: column; gap: 20px; }

.supply-bar-item {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  align-items: center;
  gap: 16px;
}

.supply-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
}

.supply-bar-track {
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.supply-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s ease;
}

.supply-bar-fill.locked { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.supply-bar-fill.burned { background: linear-gradient(90deg, #ff6b35, #ff3300); }
.supply-bar-fill.circulating { background: linear-gradient(90deg, var(--thunder), var(--thunder-light)); }

.supply-pct {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
}

/* ===== MEMES ===== */
.memes {
  padding: 80px 0;
}

.memes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.meme-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 66, 0.1);
  background: var(--dark3);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s;
}

.meme-item:hover {
  transform: scale(1.03);
  border-color: rgba(245, 200, 66, 0.4);
}

.meme-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HOW TO BUY ===== */
.how-to-buy {
  padding: 80px 0;
  background: var(--dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step {
  background: rgba(123, 92, 255, 0.08);
  border: 1px solid rgba(123, 92, 255, 0.25);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.step:hover {
  border-color: var(--thunder-light);
  transform: translateY(-4px);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--thunder-light);
  opacity: 0.4;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.buy-cta { text-align: center; }

/* ===== ROADMAP ===== */
.roadmap {
  position: relative;
  padding: 80px 0;
}

.roadmap-list {
  position: relative;
  padding-left: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-list::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--thunder), transparent);
}

.roadmap-item {
  position: relative;
  margin-bottom: 48px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.roadmap-item.done,
.roadmap-item.active { opacity: 1; }

.roadmap-item:hover { opacity: 1; }

.roadmap-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid var(--text-muted);
}

.roadmap-item.done .roadmap-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(245, 200, 66, 0.6);
}

.roadmap-item.active .roadmap-dot {
  background: var(--thunder);
  border-color: var(--thunder-light);
  box-shadow: 0 0 12px rgba(123, 92, 255, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(123, 92, 255, 0.6); }
  50% { box-shadow: 0 0 24px rgba(123, 92, 255, 1); }
}

.roadmap-content h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}

.roadmap-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== JOIN ===== */
.join {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, #1a1040 0%, var(--dark) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.join-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.join-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.join-char {
  position: absolute;
  left: 5%;
  bottom: 0;
  z-index: 1;
  width: clamp(150px, 20vw, 300px);
  pointer-events: none;
}

.join-content {
  position: relative;
  z-index: 2;
}

.join-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 4px;
  text-shadow: 0 0 40px rgba(245, 200, 66, 0.5);
  margin-bottom: 16px;
}

.join-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.join-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(245, 200, 66, 0.1);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img { min-height: 200px; }

  .token-cards { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .hero-char { display: none; }
  .join-char { display: none; }

  .supply-bar-item { grid-template-columns: 120px 1fr 50px; }
}

@media (max-width: 600px) {
  .token-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .memes-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-bar-item { grid-template-columns: 1fr; gap: 8px; }
  .supply-pct { text-align: left; }
}
