:root {
  --green:#00ff88;
  --pink:#ff2fd6;
  --text:#eafff3;
  --muted:#8affc2;
}

* { box-sizing:border-box; }

html,body {
  margin:0;
  background:#020204;
  color:var(--text);
  font-family:"JetBrains Mono", monospace;
}

.bg-banner {
  position:fixed;
  inset:0;
  background:url("./assets/banner.png") center/cover no-repeat;
  opacity:.5;
  filter:blur(4px);
  z-index:-2;
}

.bg-overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  z-index:-1;
}

.frame {
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

.tabs {
  display:flex;
  gap:16px;
  margin-bottom:40px;
}

.tab {
  border:1px solid var(--green);
  background:transparent;
  color:var(--green);
  padding:10px 18px;
  cursor:pointer;
}

.tab.active {
  background:var(--green);
  color:#000;
}

.panel {
  display:none;
  max-width:900px;
  width:100%;
  padding:48px 32px;
  border:2px solid var(--green);
  background:rgba(0,0,0,.55);
  text-align:center;
}

.panel.active { display:block; }

.title {
  font-family:"Rubik Glitch", cursive;
  font-size:clamp(56px, 9vw, 120px);
  color:var(--green);
}

.stats {
  display:flex;
  justify-content:center;
  gap:40px;
}

.qty {
  display:flex;
  justify-content:center;
  gap:12px;
}

.qty button {
  width:44px;
}

.actions {
  display:flex;
  justify-content:center;
  gap:20px;
}

.btn {
  padding:14px 26px;
  border:1px solid var(--green);
  background:transparent;
  color:var(--green);
  cursor:pointer;
}

.btn.primary {
  background:var(--green);
  color:#000;
}

.links {
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.status {
  margin-top:20px;
  opacity:.7;
}

.stake-box {
  display:flex;
  justify-content:center;
  gap:14px;
}
