/* 64 Command Center — custom layer on top of Tailwind */
:root {
  --accent: #e8ff47;
  --accent2: #ff6b35;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.main-wrap { position: relative; z-index: 1; }

.panel { background: #111115; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; }
.panel-head { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:space-between; }
.panel-title { font-family: "Bebas Neue", sans-serif; letter-spacing: 1.5px; font-size: 17px; }

.stat-val { font-family: "Bebas Neue", sans-serif; font-size: 38px; line-height: 1; letter-spacing: 1px; }
.stat-label { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #888; }

.btn-accent { background: var(--accent); color: #0a0a0c; font-weight: 600; padding: 10px 18px; border-radius: 10px; transition: background .15s, transform .1s; }
.btn-accent:hover { background: #d4eb30; }
.btn-accent:active { transform: scale(.97); }

.input {
  background: #18181e;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  padding: 10px 13px;
  color: #efefef;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.input:focus { border-color: rgba(232,255,71,.35); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .4s ease both; }
