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

:root {
  --bg:          #02010a;
  --bg-2:        #06041a;
  --bg-card:     #09071e;
  --bg-card-h:   #0e0b28;
  --border:      rgba(170, 0, 255, 0.22);
  --border-h:    rgba(200, 60, 255, 0.6);

  --p1:          #9900ff;
  --p2:          #c000ff;
  --p3:          #d455ff;
  --p4:          #e080ff;
  --p-glow:      rgba(180, 0, 255, 0.6);
  --p-glow-soft: rgba(150, 0, 230, 0.28);
  --p-glow-mid:  rgba(180, 0, 255, 0.45);

  --blue:        #00cfff;
  --blue-glow:   rgba(0, 207, 255, 0.4);

  --online:      #c000ff;
  --online-glow: rgba(192, 0, 255, 0.55);

  --discord:     #5865f2;

  --gold:        #f5c842;
  --gold-glow:   rgba(245, 200, 66, 0.5);
  --gold-dim:    rgba(245, 200, 66, 0.15);

  --text:        #f2eaff;
  --text-dim:    #9070bb;
  --text-muted:  #3f2e60;

  --font-head:   'Orbitron', sans-serif;
  --font-ui:     'Rajdhani', sans-serif;
  --font-body:   'Inter', sans-serif;
  --r:           14px;
  --r-lg:        22px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Background ── */
.bg-scene {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(130, 0, 220, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 0% 60%, rgba(100, 0, 200, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 70%, rgba(170, 0, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 110%, rgba(80, 0, 160, 0.32) 0%, transparent 55%),
    linear-gradient(180deg, #02010a 0%, #07041c 40%, #04021a 70%, #02010c 100%);
}

/* Animated nebula blobs — GPU optimized */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); /* Reduced from 110px */
  pointer-events: none;
  will-change: transform;
  animation: blob-drift linear infinite alternate;
}
.blob-1 {
  width: 700px; height: 700px; /* Smaller */
  background: radial-gradient(circle, rgba(160,0,255,0.22) 0%, transparent 70%);
  top: -250px; left: -200px;
  animation-duration: 22s;
}
.blob-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(200,0,255,0.18) 0%, transparent 70%);
  top: 30%; right: -220px;
  animation-duration: 28s; animation-delay: -8s;
}
.blob-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(120,0,200,0.25) 0%, transparent 70%);
  bottom: -150px; left: 20%;
  animation-duration: 20s; animation-delay: -14s;
}
.blob-4 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(80,0,180,0.16) 0%, transparent 70%);
  top: 55%; left: 10%;
  animation-duration: 30s; animation-delay: -5s;
}
@keyframes blob-drift {
  0%   { transform: translate3d(0px, 0px, 0) scale(1); }
  50%  { transform: translate3d(35px, 28px, 0) scale(1.04); }
  100% { transform: translate3d(-20px, -25px, 0) scale(0.97); }
}

.glow-text {
  color: var(--p3);
  text-shadow: 0 0 24px var(--p-glow), 0 0 60px rgba(180,0,255,0.3);
}

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 0 28px;
  background: rgba(2, 1, 10, 0.55);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid rgba(170,0,255,0.12);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: rgba(2, 1, 10, 0.92);
  border-bottom-color: rgba(170,0,255,0.32);
  box-shadow: 0 4px 50px rgba(0,0,0,0.65), 0 0 24px rgba(150,0,255,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 70px; display: flex;
  align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 44px; width: auto;
  filter: drop-shadow(0 0 12px rgba(180,0,255,0.65));
  transition: filter 0.3s;
  will-change: filter;
}
.nav-logo-img:hover { filter: drop-shadow(0 0 24px rgba(200,0,255,0.9)); }
.nav-links { display: flex; align-items: center; gap: 3px; list-style: none; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-family: var(--font-ui); font-size: 0.95rem; font-weight: 600;
  padding: 8px 15px; border-radius: 9px; letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(170,0,255,0.14); }
.nav-discord {
  display: flex !important; align-items: center; gap: 6px;
  background: rgba(88,101,242,0.12) !important;
  border: 1px solid rgba(88,101,242,0.28) !important;
  color: #8a96f8 !important;
}
.nav-discord:hover {
  background: rgba(88,101,242,0.22) !important;
  border-color: rgba(88,101,242,0.55) !important;
  color: #fff !important;
}
.nav-store {
  display: flex !important; align-items: center; gap: 6px;
  background: linear-gradient(135deg, rgba(245,200,66,0.12), rgba(255,160,0,0.08)) !important;
  border: 1px solid rgba(245,200,66,0.32) !important;
  color: var(--gold) !important;
}
.nav-store:hover {
  background: linear-gradient(135deg, rgba(245,200,66,0.22), rgba(255,160,0,0.14)) !important;
  border-color: rgba(245,200,66,0.6) !important;
  color: #fff !important;
  box-shadow: 0 0 18px rgba(245,200,66,0.22);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dim); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Section helpers ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--p4);
  background: rgba(180,0,255,0.1);
  border: 1px solid rgba(180,0,255,0.3);
  border-radius: 100px; padding: 4px 16px; margin-bottom: 16px;
}
.section-tag.gold-tag {
  color: var(--gold);
  background: rgba(245,200,66,0.08);
  border-color: rgba(245,200,66,0.28);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: 0.02em;
  line-height: 1.15; margin-bottom: 12px;
}
.section-desc { color: var(--text-dim); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ── Buttons ── */
.btn-discord {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 11px; text-decoration: none;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, #5865f2 0%, #4251d1 100%);
  border: 1px solid rgba(88,101,242,0.5);
  box-shadow: 0 0 24px rgba(88,101,242,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
  will-change: transform;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-discord:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(88,101,242,0.65), 0 10px 28px rgba(0,0,0,0.45);
}
.btn-discord:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 11px; text-decoration: none;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--p4);
  background: rgba(170,0,255,0.08);
  border: 1px solid rgba(170,0,255,0.38);
  will-change: transform;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(180,0,255,0.16);
  border-color: rgba(200,60,255,0.65);
  box-shadow: 0 0 26px rgba(180,0,255,0.28);
  transform: translateY(-3px);
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; overflow: hidden;
  padding: 120px 28px 100px; text-align: center;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(180,0,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,0,255,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
}
.hero-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background-image:
    linear-gradient(rgba(180,0,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,0,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(65deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 30%, rgba(180,0,255,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 50% 20%, rgba(220,80,255,0.14) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(180,0,255,0.12);
  border: 1px solid rgba(200,0,255,0.32);
  border-radius: 100px; padding: 6px 20px;
  font-family: var(--font-ui); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--p4); margin-bottom: 28px;
  animation: fade-down 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--p3);
  box-shadow: 0 0 0 0 rgba(200,0,255,0.7);
  animation: ping-purple 2s ease-out infinite;
}
@keyframes ping-purple {
  0%   { box-shadow: 0 0 0 0 rgba(200,0,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(200,0,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,0,255,0); }
}

/* Hero logo — simplified animation (no filter change per frame) */
.hero-logo-wrap {
  margin-bottom: 16px;
  animation: fade-up 0.7s 0.1s ease both;
}
.hero-logo-img {
  width: min(500px, 92vw); height: auto;
  filter: drop-shadow(0 0 45px rgba(180,0,255,0.7)) drop-shadow(0 0 80px rgba(150,0,220,0.35));
  animation: logo-float 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 2.4vw, 1.35rem);
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--p3); margin-bottom: 10px;
  text-shadow: 0 0 22px var(--p-glow), 0 0 45px rgba(180,0,255,0.22);
  animation: fade-up 0.7s 0.2s ease both;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-dim);
  margin-bottom: 40px; animation: fade-up 0.7s 0.3s ease both;
}

/* IP Card */
.ip-card {
  display: inline-block; margin-bottom: 36px;
  animation: fade-up 0.7s 0.35s ease both;
}
.ip-card-inner {
  display: flex; align-items: center;
  background: rgba(9,7,30,0.9);
  border: 1px solid rgba(180,0,255,0.42);
  border-radius: var(--r); overflow: hidden;
  box-shadow:
    0 0 40px rgba(180,0,255,0.14),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.ip-info { display: flex; flex-direction: column; padding: 12px 22px; gap: 2px; }
.ip-tag {
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--p3);
}
.ip-text {
  font-family: var(--font-head);
  font-size: clamp(0.82rem, 2.8vw, 1.08rem);
  color: var(--text); letter-spacing: 0.04em; white-space: nowrap;
}
.btn-copy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 22px; height: 100%; min-height: 58px;
  border: none; border-left: 1px solid rgba(180,0,255,0.32);
  cursor: pointer; font-family: var(--font-ui); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--p2) 0%, var(--p1) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
  transition: filter 0.2s; white-space: nowrap;
}
.btn-copy:hover { filter: brightness(1.15); }
.btn-copy.copied {
  background: linear-gradient(135deg, var(--p2) 0%, #7800cc 100%);
}

.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  animation: fade-up 0.7s 0.45s ease both;
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0.3;
  font-family: var(--font-ui); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--p3);
  animation: float-scroll 3s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(180,0,255,0.45);
  border-radius: 20px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--p3); border-radius: 3px;
  animation: wheel-anim 2s ease-in-out infinite;
}
@keyframes wheel-anim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
@keyframes float-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Status Banner ── */
.status-banner { position: relative; z-index: 1; padding: 0 28px 80px; }
.status-banner-inner {
  max-width: 1000px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  box-shadow: 0 0 60px rgba(150,0,255,0.08);
}
.status-item { display: flex; align-items: center; gap: 10px; padding: 8px 28px; }
.status-divider { width: 1px; height: 36px; background: var(--border); }
.status-dot-wrap { position: relative; display: flex; align-items: center; }
.status-dot-online {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--p2);
  box-shadow: 0 0 0 0 var(--p-glow);
  animation: ping-dot-p 2s ease-out infinite;
}
@keyframes ping-dot-p {
  0%   { box-shadow: 0 0 0 0 rgba(192,0,255,0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(192,0,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,0,255,0); }
}
.status-label { font-family: var(--font-ui); font-size: 0.95rem; color: var(--text-dim); }
.status-label strong { color: var(--text); }
.stat-icon { font-size: 1rem; }

/* ── Features ── */
.features-section { position: relative; z-index: 1; padding: 100px 28px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, rgba(12,9,32,0.95) 0%, rgba(8,6,22,0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px 30px;
  cursor: default;
  will-change: transform;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(28px);
}
.feature-card.visible { animation: reveal-up 0.6s ease forwards; }
.feat-glow {
  position: absolute; inset: -1px; border-radius: var(--r-lg);
  opacity: 0;
  background: linear-gradient(135deg, rgba(180,0,255,0.18) 0%, transparent 55%);
  transition: opacity 0.3s; pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200,0,255,0.5);
  box-shadow: 0 22px 65px rgba(160,0,255,0.18);
}
.feature-card:hover .feat-glow { opacity: 1; }
.feat-icon-box {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(180,0,255,0.12);
  border: 1px solid rgba(180,0,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
  transition: box-shadow 0.3s;
}
.feature-card:hover .feat-icon-box { box-shadow: 0 0 22px var(--p-glow-mid); }
.feature-card h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }
.feat-border-bottom {
  position: absolute; bottom: 0; left: 20px; right: 20px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--p2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover .feat-border-bottom { opacity: 1; }

/* ── How to Join ── */
.join-section { position: relative; z-index: 1; padding: 100px 28px; }
.steps-wrap { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 0; }
.step-arrow {
  font-size: 1.6rem; color: var(--p2); opacity: 0.7;
  flex-shrink: 0; margin-top: 60px;
  text-shadow: 0 0 14px var(--p-glow);
}
.step-card {
  flex: 1; position: relative; overflow: hidden;
  background: linear-gradient(145deg, rgba(12,9,32,0.95) 0%, rgba(8,6,22,0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px 26px;
  will-change: transform;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(24px);
}
.step-card.visible { animation: reveal-up 0.6s ease forwards; }
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180,0,255,0.38);
  box-shadow: 0 16px 50px rgba(160,0,255,0.15);
}
.step-num {
  font-family: var(--font-head); font-size: 3.2rem; font-weight: 900;
  color: rgba(180,0,255,0.1);
  position: absolute; top: 16px; right: 18px;
  line-height: 1; user-select: none; letter-spacing: -0.02em;
}
.step-icon-big { font-size: 2rem; margin-bottom: 14px; }
.step-card h3 {
  font-family: var(--font-head); font-size: 0.98rem; font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 10px;
}
.step-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }
.step-ip-box {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(180,0,255,0.22);
  border-radius: 9px; padding: 8px 12px;
}
.step-ip-box code {
  flex: 1; font-family: 'Courier New', monospace;
  font-size: 0.82rem; color: var(--blue); word-break: break-all;
}
.step-copy {
  background: rgba(180,0,255,0.12);
  border: 1px solid rgba(180,0,255,0.32);
  color: var(--p4); border-radius: 7px;
  padding: 4px 12px; font-family: var(--font-ui);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.step-copy:hover { background: rgba(180,0,255,0.24); box-shadow: 0 0 12px var(--p-glow-soft); }

/* ── Staff Application ── */
.staff-section { position: relative; z-index: 1; padding: 100px 28px; }
.staff-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(14,10,38,0.98) 0%, rgba(8,5,24,0.99) 100%);
  border: 1px solid rgba(180,0,255,0.35);
  border-radius: 28px; padding: 70px 60px;
  display: flex; align-items: center; gap: 60px;
  box-shadow: 0 0 100px rgba(160,0,255,0.1);
}
.staff-glow-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 60% at 0% 50%, rgba(160,0,255,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 50%, rgba(200,0,255,0.1) 0%, transparent 60%);
}
.staff-content { position: relative; z-index: 1; flex: 1; }
.staff-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(180,0,255,0.1);
  border: 1px solid rgba(200,0,255,0.28);
  border-radius: 100px; padding: 5px 16px;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--p4); margin-bottom: 20px;
}
.staff-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: 0.02em;
  line-height: 1.2; margin-bottom: 18px;
}
.staff-desc {
  font-size: 0.95rem; color: var(--text-dim);
  line-height: 1.75; margin-bottom: 28px; max-width: 520px;
}
.staff-reqs { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.staff-reqs li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-dim); }
.req-check { color: var(--p3); font-size: 0.8rem; text-shadow: 0 0 10px var(--p-glow); }
.btn-staff {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: 11px; text-decoration: none;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--p2) 0%, var(--p1) 100%);
  border: 1px solid rgba(200,0,255,0.42);
  box-shadow: 0 0 30px var(--p-glow-mid), inset 0 1px 0 rgba(255,255,255,0.12);
  will-change: transform;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-staff:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 55px var(--p-glow), 0 12px 40px rgba(0,0,0,0.5);
}

.staff-visual {
  position: relative; width: 220px; height: 220px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.staff-diamond {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--p2), var(--p1));
  transform: rotate(45deg); border-radius: 16px;
  box-shadow: 0 0 50px var(--p-glow), 0 0 100px rgba(160,0,255,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: diamond-spin 12s linear infinite; z-index: 1;
  will-change: transform;
}
.diamond-inner { transform: rotate(-45deg); font-size: 2.5rem; }
@keyframes diamond-spin { 0% { transform: rotate(45deg); } 100% { transform: rotate(405deg); } }
.staff-rings { position: absolute; inset: 0; }
.ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border-style: solid;
  will-change: transform;
}
.ring-1 {
  width: 150px; height: 150px; margin: -75px 0 0 -75px;
  border-width: 1px; border-color: rgba(180,0,255,0.35);
  animation: ring-spin 8s linear infinite;
}
.ring-2 {
  width: 185px; height: 185px; margin: -92.5px 0 0 -92.5px;
  border-width: 1px; border-color: rgba(180,0,255,0.18);
  animation: ring-spin 14s linear infinite reverse;
}
.ring-3 {
  width: 215px; height: 215px; margin: -107.5px 0 0 -107.5px;
  border-width: 1px; border-color: rgba(180,0,255,0.1);
  animation: ring-spin 20s linear infinite;
}
@keyframes ring-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ── Store Section ── */
.store-section { position: relative; z-index: 1; padding: 100px 28px; }

.store-notice {
  text-align: center; margin-bottom: 48px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.store-notice-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.28);
  border-radius: 100px; padding: 8px 20px;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
}
.store-notice-text {
  font-size: 0.9rem; color: var(--text-dim);
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}

.vip-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(12,9,32,0.97) 0%, rgba(8,6,22,0.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px 32px;
  will-change: transform;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(28px);
}
.vip-card.visible { animation: reveal-up 0.6s ease forwards; }

/* VIP basic */
.vip-card.tier-vip {
  border-color: rgba(160, 0, 255, 0.32);
}
.vip-card.tier-vip:hover {
  transform: translateY(-8px);
  border-color: rgba(200,0,255,0.55);
  box-shadow: 0 24px 70px rgba(160,0,255,0.2);
}

/* VIP+ — featured */
.vip-card.tier-vip-plus {
  border-color: rgba(245,200,66,0.42);
  box-shadow: 0 0 0 1px rgba(245,200,66,0.1), 0 0 60px rgba(245,200,66,0.08);
  background: linear-gradient(160deg, rgba(18,13,40,0.98) 0%, rgba(12,8,28,0.99) 100%);
}
.vip-card.tier-vip-plus:hover {
  transform: translateY(-10px);
  border-color: rgba(245,200,66,0.7);
  box-shadow: 0 28px 80px rgba(245,200,66,0.18);
}

/* MVIP */
.vip-card.tier-mvip {
  border-color: rgba(0,207,255,0.32);
}
.vip-card.tier-mvip:hover {
  transform: translateY(-8px);
  border-color: rgba(0,207,255,0.55);
  box-shadow: 0 24px 70px rgba(0,180,255,0.18);
}

.vip-card-glow {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.tier-vip .vip-card-glow {
  background: linear-gradient(135deg, rgba(180,0,255,0.15) 0%, transparent 55%);
}
.tier-vip-plus .vip-card-glow {
  background: linear-gradient(135deg, rgba(245,200,66,0.12) 0%, transparent 55%);
}
.tier-mvip .vip-card-glow {
  background: linear-gradient(135deg, rgba(0,207,255,0.12) 0%, transparent 55%);
}
.vip-card:hover .vip-card-glow { opacity: 1; }

.vip-popular-badge {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, #f5c842, #e0a820);
  color: #1a0e00; border-radius: 100px; padding: 3px 12px;
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 0 16px rgba(245,200,66,0.5);
}

.vip-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 22px;
}
.tier-vip .vip-icon {
  background: rgba(180,0,255,0.14);
  border: 1px solid rgba(180,0,255,0.28);
}
.tier-vip-plus .vip-icon {
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
}
.tier-mvip .vip-icon {
  background: rgba(0,207,255,0.1);
  border: 1px solid rgba(0,207,255,0.28);
}

.vip-tier-label {
  font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px;
}
.tier-vip .vip-tier-label    { color: var(--p3); }
.tier-vip-plus .vip-tier-label { color: var(--gold); }
.tier-mvip .vip-tier-label   { color: var(--blue); }

.vip-name {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 6px;
}

.vip-duration {
  font-family: var(--font-ui); font-size: 0.82rem; color: var(--text-dim);
  margin-bottom: 20px; letter-spacing: 0.05em;
}

.vip-price-wrap {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vip-price-amount {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; letter-spacing: -0.02em;
}
.tier-vip .vip-price-amount    { color: var(--p3); }
.tier-vip-plus .vip-price-amount { color: var(--gold); }
.tier-mvip .vip-price-amount   { color: var(--blue); }

.vip-price-currency {
  font-family: var(--font-ui); font-size: 1rem; font-weight: 700;
  color: var(--text-dim); letter-spacing: 0.04em;
}

.vip-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.vip-perks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-dim); line-height: 1.5;
}
.perk-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.tier-vip .perk-dot    { background: var(--p3); box-shadow: 0 0 6px var(--p-glow); }
.tier-vip-plus .perk-dot { background: var(--gold); box-shadow: 0 0 6px var(--gold-glow); }
.tier-mvip .perk-dot   { background: var(--blue); box-shadow: 0 0 6px var(--blue-glow); }

.btn-buy {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px; border-radius: 10px;
  text-decoration: none; font-family: var(--font-ui); font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.07em; text-transform: uppercase;
  border: none; cursor: pointer;
  will-change: transform;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.tier-vip .btn-buy {
  background: linear-gradient(135deg, var(--p2), var(--p1));
  color: #fff;
  box-shadow: 0 0 24px var(--p-glow-mid), inset 0 1px 0 rgba(255,255,255,0.12);
}
.tier-vip .btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--p-glow), 0 8px 24px rgba(0,0,0,0.4);
}
.tier-vip-plus .btn-buy {
  background: linear-gradient(135deg, #f5c842, #d4940e);
  color: #1a0e00;
  box-shadow: 0 0 24px rgba(245,200,66,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}
.tier-vip-plus .btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(245,200,66,0.6), 0 8px 24px rgba(0,0,0,0.4);
}
.tier-mvip .btn-buy {
  background: linear-gradient(135deg, #00cfff, #0099cc);
  color: #001a22;
  box-shadow: 0 0 24px rgba(0,207,255,0.4), inset 0 1px 0 rgba(255,255,255,0.18);
}
.tier-mvip .btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,207,255,0.55), 0 8px 24px rgba(0,0,0,0.4);
}

.store-footer-note {
  text-align: center; margin-top: 40px;
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.7;
}
.store-footer-note a {
  color: var(--p3); text-decoration: none;
}
.store-footer-note a:hover { text-decoration: underline; }

/* ── Kasa Anahtarları ── */
.key-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 32px;
}

.key-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(12,9,32,0.97) 0%, rgba(8,6,22,0.99) 100%);
  border-radius: var(--r-lg); padding: 28px 22px 24px;
  will-change: transform;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(28px);
  border: 1px solid transparent;
  text-align: center;
}
.key-card.visible { animation: reveal-up 0.6s ease forwards; }

.key-gold    { border-color: rgba(245,200,66,0.32); }
.key-prime   { border-color: rgba(180,0,255,0.32); }
.key-crimson { border-color: rgba(220,50,50,0.38); }
.key-amethyst{ border-color: rgba(155,80,255,0.38); }

.key-gold:hover    { transform: translateY(-7px); border-color: rgba(245,200,66,0.65); box-shadow: 0 22px 60px rgba(245,200,66,0.15); }
.key-prime:hover   { transform: translateY(-7px); border-color: rgba(180,0,255,0.6);  box-shadow: 0 22px 60px rgba(160,0,255,0.18); }
.key-crimson:hover { transform: translateY(-7px); border-color: rgba(220,50,50,0.7);  box-shadow: 0 22px 60px rgba(200,40,40,0.18); }
.key-amethyst:hover{ transform: translateY(-7px); border-color: rgba(155,80,255,0.7); box-shadow: 0 22px 60px rgba(140,60,255,0.18); }

.key-card-glow {
  position: absolute; inset: 0; opacity: 0;
  pointer-events: none; transition: opacity 0.3s;
}
.key-gold .key-card-glow    { background: linear-gradient(135deg, rgba(245,200,66,0.1) 0%, transparent 55%); }
.key-prime .key-card-glow   { background: linear-gradient(135deg, rgba(180,0,255,0.12) 0%, transparent 55%); }
.key-crimson .key-card-glow { background: linear-gradient(135deg, rgba(220,50,50,0.1) 0%, transparent 55%); }
.key-amethyst .key-card-glow{ background: linear-gradient(135deg, rgba(155,80,255,0.12) 0%, transparent 55%); }
.key-card:hover .key-card-glow { opacity: 1; }

.key-emoji {
  font-size: 2.4rem; margin-bottom: 12px; display: block;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}
.key-name {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 20px;
  color: var(--text);
}

.key-prices {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 22px;
  padding: 14px 12px;
  background: rgba(0,0,0,0.28);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.key-price-row {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 0.88rem;
  justify-content: center; flex-wrap: wrap;
}
.key-qty { color: var(--text-dim); font-weight: 600; }
.key-arrow { color: var(--text-muted); }
.key-amount { font-weight: 800; font-size: 0.95rem; }
.key-save {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 2px 7px; border-radius: 100px;
  background: rgba(80,200,80,0.15); color: #6dda6d;
  border: 1px solid rgba(80,200,80,0.25);
}

.gold-col     { color: #f5c842; text-shadow: 0 0 8px rgba(245,200,66,0.5); }
.prime-col    { color: var(--p3); text-shadow: 0 0 8px var(--p-glow-soft); }
.crimson-col  { color: #ff6060; text-shadow: 0 0 8px rgba(220,60,60,0.5); }
.amethyst-col { color: #c060ff; text-shadow: 0 0 8px rgba(155,80,255,0.5); }

.btn-key-gold {
  background: linear-gradient(135deg, #f5c842, #d4940e);
  color: #1a0e00;
  box-shadow: 0 0 20px rgba(245,200,66,0.35);
}
.btn-key-gold:hover { transform: translateY(-2px); box-shadow: 0 0 38px rgba(245,200,66,0.55); filter: brightness(1.08); }

.btn-key-prime {
  background: linear-gradient(135deg, var(--p2), var(--p1));
  color: #fff;
  box-shadow: 0 0 20px var(--p-glow-mid);
}
.btn-key-prime:hover { transform: translateY(-2px); box-shadow: 0 0 38px var(--p-glow); filter: brightness(1.1); }

.btn-key-crimson {
  background: linear-gradient(135deg, #e03030, #a01818);
  color: #fff;
  box-shadow: 0 0 20px rgba(200,40,40,0.4);
}
.btn-key-crimson:hover { transform: translateY(-2px); box-shadow: 0 0 38px rgba(220,50,50,0.55); filter: brightness(1.1); }

.btn-key-amethyst {
  background: linear-gradient(135deg, #9b50ff, #6a1fcf);
  color: #fff;
  box-shadow: 0 0 20px rgba(140,60,255,0.4);
}
.btn-key-amethyst:hover { transform: translateY(-2px); box-shadow: 0 0 38px rgba(155,80,255,0.55); filter: brightness(1.1); }

@media (max-width: 960px) {
  .key-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .key-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}

/* ── Footer ── */
.footer { position: relative; z-index: 1; padding: 80px 28px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(180,0,255,0.12);
  margin-bottom: 32px;
}
.footer-brand p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; margin: 14px 0 22px; }
.footer-logo-img { height: 44px; width: auto; filter: drop-shadow(0 0 10px rgba(180,0,255,0.5)); }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 9px; text-decoration: none;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.2s;
}
.discord-btn {
  color: #8a96f8;
  background: rgba(88,101,242,0.1);
  border: 1px solid rgba(88,101,242,0.28);
}
.discord-btn:hover { background: rgba(88,101,242,0.22); border-color: rgba(88,101,242,0.55); color: #fff; }
.footer-col h4 {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--p4); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.9rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--p3); }
.footer-meta-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.footer-ip { font-family: 'Courier New', monospace; font-size: 0.88rem; color: var(--blue); }
.footer-meta-val { font-size: 0.88rem; color: var(--text-dim); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.02em;
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: rgba(14,10,35,0.96);
  border: 1px solid rgba(180,0,255,0.5);
  border-radius: 50px; padding: 12px 22px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 0.88rem; font-weight: 600;
  color: var(--p4); letter-spacing: 0.04em;
  z-index: 999; opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 0 40px rgba(150,0,255,0.3);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Animations ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .staff-card { flex-direction: column; padding: 48px 36px; gap: 36px; }
  .staff-visual { width: 180px; height: 180px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(2,1,10,0.97);
    border-bottom: 1px solid rgba(180,0,255,0.18);
    padding: 12px 16px 20px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 14px; border-radius: 8px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-wrap { flex-direction: column; }
  .step-arrow { margin-top: 0; transform: rotate(90deg); align-self: center; }
  .footer-top { grid-template-columns: 1fr; }
  .status-banner-inner { padding: 18px 20px; gap: 4px; }
  .status-item { padding: 8px 14px; }
  .status-divider { display: none; }
  .hero { padding: 100px 20px 80px; }
  .staff-card { padding: 36px 24px; }
  .section-inner { padding: 0 20px; }
  .features-section, .join-section, .staff-section, .store-section { padding: 80px 20px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-discord, .btn-outline { width: 100%; justify-content: center; }
  .ip-card { width: 100%; }
  .ip-card-inner { flex-direction: column; }
  .btn-copy { width: 100%; justify-content: center; min-height: 44px; border-left: none; border-top: 1px solid rgba(180,0,255,0.32); }
}
