@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --black:        #08070d;
  --deep-bg:      #0d0c14;
  --panel-bg:     rgba(255,255,255,.035);
  --panel-solid:  #15141e;
  --border:       rgba(255,255,255,.07);
  --border-glow:  rgba(255,255,255,.14);

  --cyan:   #e85d8a;
  --pink:   #e85d8a;
  --green:  #5ec99e;
  --purple: #b18ee8;
  --orange: #e8a05d;
  --yellow: #e8c85d;

  --text:   #eae8f0;
  --dim:    #5a5766;
  --bright: #ffffff;

  --glow-c: 0 0 12px rgba(232,93,138,.2);
  --glow-p: 0 0 12px rgba(232,93,138,.2);
  --glow-g: 0 0 12px rgba(94,201,158,.2);
  --glow-u: 0 0 12px rgba(177,142,232,.2);

  --glass: blur(20px) saturate(1.2);

  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --pixel: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html { font-size: 16px; }

html[data-theme="light"] {
  --black:       #f8f7fc;
  --deep-bg:     #f0eef6;
  --panel-bg:    rgba(0,0,0,.03);
  --panel-solid: #e8e6f0;
  --border:      rgba(0,0,0,.08);
  --border-glow: rgba(0,0,0,.15);
  --text:        #1a1820;
  --dim:         #7a7588;
  --bright:      #000000;
  --cyan:        #d44880;
  --pink:        #d44880;
  --green:       #2ea870;
  --purple:      #7a60c0;
  --glow-c: none;
  --glow-p: none;
  --glow-g: none;
  --glow-u: none;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--mono);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232,93,138,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(177,142,232,.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--cyan); text-decoration: none; transition: opacity .15s; }
a:hover { opacity: .8; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep-bg); }
::-webkit-scrollbar-thumb { background: var(--border-glow); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

::selection {
  background: rgba(232,93,138,.3);
  color: var(--bright);
}
