File size: 1,053 Bytes
c453128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
:root {
  --bg: #1a1a2e;
  --bg2: #16213e;
  --bg3: #0f3460;
  --floor: #2d2d4e;
  --floor-line: #3a3a5c;
  --wall: #1e1e3a;
  --desk-wood: #6b4c2a;
  --desk-top: #8b6340;
  --desk-shadow: #3d2a14;
  --accent: #e94560;
  --accent2: #0f9bba;
  --text: #e8e8f0;
  --text-dim: #8888aa;
  --green: #4ecca3;
  --yellow: #ffd166;
  --red: #ef476f;
  --purple: #9b5de5;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --radius: 8px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

#root { height: 100vh; display: flex; flex-direction: column; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
}