@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --purple: #CC44FF;
  --pink: #FF66DD;
  --dark: #08080F;
  --dark2: #0D0D1A;
  --card: #111120;
  --border: rgba(204, 68, 255, 0.15);
  --text: #E8E8FF;
  --muted: #7777AA;
  --gradient: linear-gradient(135deg, #CC44FF 0%, #FF66DD 100%);
  --glow: 0 0 40px rgba(204, 68, 255, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── UTILITY ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(204,68,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(204,68,255,0.6); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-outline:hover { background: rgba(204,68,255,0.1); transform: translateY(-2px); }

.btn-discord {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(88,101,242,0.4);
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

/* ── CANVAS ── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(8,8,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 34px; width: 34px; object-fit: contain; border-radius: 6px; }
.nav-logo span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(204,68,255,0.1); }
.nav-links .nav-cta { background: var(--gradient); color: #fff !important; margin-left: 8px; border-radius: 8px; }
.nav-links .nav-cta:hover { opacity: 0.9; }

.nav-menu-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; font-size: 22px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(204,68,255,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 90%, rgba(255,102,221,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,68,255,0.1);
  border: 1px solid rgba(204,68,255,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: #44FF88;
  border-radius: 50%;
  box-shadow: 0 0 8px #44FF88;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(52px, 9vw, 92px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-ip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(204,68,255,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.2s;
  user-select: none;
}
.hero-ip:hover { background: rgba(204,68,255,0.15); border-color: rgba(204,68,255,0.4); }
.copy-hint { font-size: 12px; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 34px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--purple);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* ── HOW TO ── */
.howto { padding: 100px 0 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,68,255,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover { transform: translateY(-5px); border-color: rgba(204,68,255,0.35); }
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 56px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}
.step-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.75; }

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

/* ── MODES ── */
.modes { padding: 100px 0; }
.modes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.mode-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.mode-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.mode-card:hover { transform: translateY(-5px); border-color: rgba(204,68,255,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(204,68,255,0.08); }
.mode-card:hover::after { opacity: 1; }
.mode-icon { font-size: 44px; margin-bottom: 18px; }
.mode-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.mode-card p { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.mode-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: rgba(204,68,255,0.1);
  border: 1px solid rgba(204,68,255,0.2);
  color: var(--purple);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── VIP TEASER ── */
.vip-teaser { padding: 20px 0 100px; }
.vip-teaser-inner {
  background: linear-gradient(135deg, rgba(204,68,255,0.1), rgba(255,102,221,0.04));
  border: 1px solid rgba(204,68,255,0.2);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vip-teaser-inner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,68,255,0.08), transparent 70%);
  pointer-events: none;
}
.vip-teaser h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(28px,4vw,44px); font-weight: 700; margin-bottom: 14px; }
.vip-teaser p { color: var(--muted); font-size: 16px; max-width: 480px; margin: 0 auto 32px; }
.vip-preview { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.rank-pill {
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid;
}

/* ── DISCORD CTA ── */
.discord-cta { padding: 0 0 100px; }
.discord-inner {
  background: linear-gradient(135deg, rgba(88,101,242,0.12), rgba(88,101,242,0.04));
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.discord-inner h2 { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.discord-inner p { color: var(--muted); font-size: 15px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer-logo img { height: 32px; width: 32px; object-fit: contain; border-radius: 6px; }
.footer-logo span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(204,68,255,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(204,68,255,0.2); border-color: rgba(204,68,255,0.4); transform: translateY(-2px); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(204,68,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  position: relative;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px,5vw,58px);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero p { position: relative; color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ── SHOP ── */
.shop-section { padding: 0 0 100px; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 20px; margin-bottom: 48px; }

.vip-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.vip-card.featured { border-color: rgba(204,68,255,0.45); box-shadow: 0 0 40px rgba(204,68,255,0.12); }
.vip-card:hover { transform: translateY(-5px); border-color: rgba(204,68,255,0.5); box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 40px rgba(204,68,255,0.1); }

.featured-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vip-header { margin-bottom: 20px; margin-top: 8px; }
.vip-rank { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 2px; }
.vip-sub { font-size: 13px; color: var(--muted); }
.vip-price { display: flex; align-items: baseline; gap: 4px; margin: 16px 0; }
.vip-price .amount { font-size: 38px; font-weight: 800; }
.vip-price .period { font-size: 14px; color: var(--muted); }

.vip-features { list-style: none; flex: 1; margin-bottom: 24px; }
.vip-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vip-features li:last-child { border-bottom: none; }
.vip-features li .check { flex-shrink: 0; margin-top: 1px; }

.vip-buy { width: 100%; justify-content: center; padding: 13px; margin-top: auto; }

.payment-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 20px;
}
.payment-box h3 { font-family: 'Rajdhani', sans-serif; font-size: 20px; margin-bottom: 8px; }
.payment-box p { color: var(--muted); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.payment-methods { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pay-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
}
.pay-tag.auto { border-color: rgba(68,255,136,0.3); color: #44FF88; background: rgba(68,255,136,0.06); }

/* ── VOTE ── */
.vote-section { padding: 0 0 100px; }
.vote-reward {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,68,255,0.1);
  border: 1px solid rgba(204,68,255,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--purple);
  font-weight: 600;
  margin-top: 20px;
}
.vote-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 16px; margin-bottom: 40px; }
.vote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.vote-card:hover { transform: translateY(-4px); border-color: rgba(204,68,255,0.4); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.vote-num {
  width: 42px; height: 42px;
  background: rgba(204,68,255,0.1);
  border: 1px solid rgba(204,68,255,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: var(--purple);
}
.vote-site { font-weight: 600; font-size: 15px; }
.vote-cta { font-size: 13px; color: var(--muted); }
.vote-note {
  background: rgba(204,68,255,0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(8,8,15,0.98);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    z-index: 99;
  }
  .nav-menu-btn { display: block; }
  .hero-stats { gap: 28px; }
  .discord-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .shop-grid, .modes-grid { grid-template-columns: 1fr; }
  .vip-teaser-inner { padding: 48px 24px; }
}
