File size: 2,072 Bytes
c162b0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --color-bg-dark: #0A0A0B;
  --color-surface: #111114;
  --color-surface-lighter: #1A1A1E;
  --color-accent: #6366F1; /* Indigo-500 */
  --color-accent-hover: #4F46E5; /* Indigo-600 */
  --color-success: #10B981; /* Emerald-500 */
  --color-error: #EF4444; /* Red-500 */
  --color-text-muted: #94A3B8; /* Slate-400 */
  --color-text-bright: #F8FAFC; /* Slate-50 */

  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
}

@layer base {
  body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-bright);
    font-family: var(--font-sans);
  }
}

.panel-flat {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-card {
  background: var(--color-surface-lighter);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
}

.crt-overlay {
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 3px, 3px 100%;
  pointer-events: none;
}

.crt-overlay::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

.scanline {
  width: 100%;
  height: 100px;
  z-index: 3;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(99, 102, 241, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.1;
  position: absolute;
  bottom: 100%;
  animation: scanline 10s linear infinite;
}

@keyframes scanline {
  0% { bottom: 100%; }
  100% { bottom: -100px; }
}

@keyframes flicker {
  0% { opacity: 0.1; }
  50% { opacity: 0.05; }
  100% { opacity: 0.1; }
}