*{margin:0;padding:0;box-sizing:border-box}

:root{
  --bg:#0a0a0e;
  --card:rgba(10,10,14,0.85);
  --card-border:rgba(255,255,255,0.06);
  --text:#e4e4e7;
  --muted:#a1a1aa;
  --dim:#52525b;
  --input-bg:rgba(255,255,255,0.06);
  --accent:#3b82f6;
  --accent-hover:#2563eb;
  --green:#22c55e;
  --red:#ef4444;
  --amber:#f59e0b;
  --gold:#fbbf24;
  --silver:#94a3b8;
  --bronze:#d97706;
  --shadow:0 2px 8px rgba(0,0,0,0.4);
  --panel-bg:rgba(10,10,14,0.88);
}

html,body{
  height:100%;
  background:#0a0a0e;
  color:var(--text);
  font-family:'Inter',system-ui,sans-serif;
  overflow:hidden;
}

*,*::before,*::after{cursor:none !important}
button{font-family:inherit;outline:none}
input,select{font-family:inherit;outline:none}

#cursor-overlay{
  position:fixed;
  inset:0;
  z-index:99999;
  pointer-events:none;
  width:100%;
  height:100%;
  background:transparent !important;
}
