/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080c18;
  --bg-card:   #0f1624;
  --bg-card2:  #141d30;
  --border:    rgba(255,255,255,0.07);
  --gold:      #f5a623;
  --gold-glow: #fbbf24;
  --orange:    #f97316;
  --blue:      #3b82f6;
  --blue-dark: #1e3a8a;
  --text:      #e2e8f0;
  --muted:     #94a3b8;
  --dim:       #475569;
  --common:    #6b7280;
  --uncommon:  #22c55e;
  --rare:      #3b82f6;
  --legendary: #a855f7;
  --cosmic:    #f59e0b;
  --radius:    12px;
  --radius-lg: 20px;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-head: 'Nunito', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
code {
  font-family: 'Courier New', monospace;
  background: rgba(255,255,255,0.08);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.88em;
  color: var(--gold);
}
img { max-width: 100%; display: block; }

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

.features{
  padding-top: 0 !important;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: #0a0f1e;
  box-shadow: 0 4px 24px rgba(245,166,35,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(245,166,35,0.55); }

.btn-secondary {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); }

.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 16px rgba(245,166,35,0.35);
}
.btn-nav:hover {
  box-shadow: 0 4px 24px rgba(245,166,35,0.55);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8, 12, 24, 0.9);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:not(.btn):hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-up var(--dur, 6s) linear var(--delay, 0s) infinite;
}
@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: '●'; font-size: 0.55rem; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.hero-tag:hover {
  border-color: rgba(245,166,35,0.35);
  color: var(--text);
  background: rgba(245,166,35,0.06);
}
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-logo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.1); opacity: 1; }
}
.hero-logo {
  width: clamp(360px, 44vw, 640px);
  height: auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(245,166,35,0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* === SECTION BASE === */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto;
}

/* === FEATURES === */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.3);
  box-shadow: 0 8px 32px rgba(245,166,35,0.08);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* === RARITIES === */
.rarities { background: var(--bg-card); }
.rarities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.rarity-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.rarity-card:hover { transform: translateY(-4px); }
.rarity-badge {
  text-align: center;
  padding: 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rarity-stats { padding: 16px; background: rgba(0,0,0,0.25); }
.rarity-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.rarity-stat:last-child { border-bottom: none; }
.rarity-stat .label { color: var(--muted); }
.rarity-stat .value { font-weight: 700; font-family: var(--font-head); }

.rarity-common  { background: linear-gradient(160deg, rgba(107,114,128,0.15), transparent); }
.rarity-common  .rarity-badge { background: rgba(107,114,128,0.2); color: #9ca3af; }
.rarity-common  .value { color: #9ca3af; }

.rarity-uncommon { background: linear-gradient(160deg, rgba(34,197,94,0.12), transparent); }
.rarity-uncommon .rarity-badge { background: rgba(34,197,94,0.15); color: var(--uncommon); }
.rarity-uncommon .value { color: var(--uncommon); }
.rarity-uncommon { border-color: rgba(34,197,94,0.2); }

.rarity-rare  { background: linear-gradient(160deg, rgba(59,130,246,0.12), transparent); }
.rarity-rare  .rarity-badge { background: rgba(59,130,246,0.15); color: var(--blue); }
.rarity-rare  .value { color: var(--blue); }
.rarity-rare  { border-color: rgba(59,130,246,0.2); }

.rarity-legendary { background: linear-gradient(160deg, rgba(168,85,247,0.12), transparent); }
.rarity-legendary .rarity-badge { background: rgba(168,85,247,0.15); color: var(--legendary); }
.rarity-legendary .value { color: var(--legendary); }
.rarity-legendary { border-color: rgba(168,85,247,0.2); }

.rarity-cosmic { background: linear-gradient(160deg, rgba(245,159,11,0.12), transparent); }
.rarity-cosmic .rarity-badge {
  background: linear-gradient(135deg, rgba(245,159,11,0.2), rgba(249,115,22,0.2));
  color: var(--cosmic);
}
.rarity-cosmic .value { color: var(--cosmic); }
.rarity-cosmic { border-color: rgba(245,159,11,0.3); }

/* === COMMANDS === */
.commands { background: var(--bg); }
.cmd-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: var(--radius-lg);
}
.cmd-tab {
  padding: 9px 20px;
  border-radius: var(--radius);
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cmd-tab:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.cmd-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #0a0f1e;
}
.cmd-panel { display: none; }
.cmd-panel.active { display: block; animation: fade-in 0.25s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.cmd-list { display: flex; flex-direction: column; gap: 4px; }
.cmd-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.15s;
}
.cmd-row:hover { border-color: rgba(245,166,35,0.25); }
.cmd-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.cmd-name {
  font-size: 0.95rem;
  padding: 4px 10px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--gold);
  border-radius: 6px;
}
.cmd-alias {
  font-size: 0.78rem;
  color: var(--dim);
  font-style: italic;
}
.cmd-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.cmd-note {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(59,130,246,0.06);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.cmd-note strong { color: var(--text); }
.tag-list { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.tag-list code { display: block; width: fit-content; margin-bottom: 2px; }

/* === ECONOMY === */
.economy { background: var(--bg-card); }
.economy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.econ-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.econ-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,0.2);
}
.econ-card.econ-premium { border-color: rgba(245,166,35,0.2); }
.econ-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.econ-info h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}
.econ-info p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }

/* === SETUP === */
.setup { background: var(--bg); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #0a0f1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.step-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 14px; }
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  margin-top: 26px;
  opacity: 0.4;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, rgba(245,166,35,0.12) 0%, rgba(249,115,22,0.08) 100%);
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  padding: 80px 24px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-text p { color: var(--muted); font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.footer-brand strong { display: block; font-weight: 900; font-size: 1.05rem; }
.footer-brand span { display: block; font-size: 0.8rem; color: var(--muted); }
.footer-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.footer-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { color: var(--dim); font-size: 0.8rem; }

/* === TERMS OF SERVICE === */
.tos-hero {
  padding: 140px 0 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.tos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(245,166,35,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.tos-hero-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.tos-hero-inner h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.tos-hero-inner p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.tos-main {
  padding: 64px 0 100px;
  background: var(--bg);
}
.tos-body {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tos-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  transition: border-color 0.2s ease;
}
.tos-section:hover { border-color: rgba(245,166,35,0.18); }
.tos-section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.tos-section p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.tos-section p:last-child { margin-bottom: 0; }
.tos-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tos-section ul li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.tos-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.8rem;
  top: 1px;
}
.tos-section ul li strong { color: var(--text); font-weight: 700; }
.tos-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.15s;
}
.tos-section a:hover { opacity: 0.75; }
.tos-contact {
  background: linear-gradient(135deg, rgba(245,166,35,0.07) 0%, rgba(249,115,22,0.04) 100%);
  border-color: rgba(245,166,35,0.2);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,166,35,0.3); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero-inner { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-tags { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-logo-wrap {
    position: relative;
    right: auto; top: auto;
    transform: none;
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
  .hero-logo { width: clamp(240px, 72vw, 420px); }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), var(--orange));
  }
  .cta-inner { text-align: center; justify-content: center; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,12,24,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .nav-links .btn-nav { width: 100%; justify-content: center; margin-top: 8px; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .rarities-grid { grid-template-columns: repeat(2, 1fr); }
  .economy-grid { grid-template-columns: 1fr; }
  .cmd-tabs { padding: 6px; }
  .cmd-tab { padding: 7px 14px; font-size: 0.82rem; }
  .hero-tags { gap: 8px; }
}
