/* ============================================================
   GOKUPOKU // DESIGN TOKENS + BASE
   The minimal foundation. Almost every experiment wants this.
   ============================================================ */
:root{
  --void:#050505;
  --cream:#f3ecdc;
  --mag:#ff0066;
  --cyan:#00f0ff;
  --blood:#e02020;
  --yellow:#ffe60a;
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

html,body{
  background:var(--void);color:var(--cream);
  font-family:"Space Mono",monospace;
  overflow-x:hidden;
  cursor:none;
}
body{min-height:100vh;position:relative}

::selection{background:var(--mag);color:var(--cream)}
