-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (134 loc) · 5.62 KB
/
index.html
File metadata and controls
147 lines (134 loc) · 5.62 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matrix Breach: Game Hacking Lab</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700;800&family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #050505;
color: #e5e7eb;
margin: 0;
overflow: hidden;
}
.mono { font-family: 'JetBrains Mono', monospace; }
/* CRT Startup Animation */
@keyframes turnOn {
0% { transform: scale(1,0.8) translate3d(0,0,0); -webkit-filter: brightness(30); filter: brightness(30); opacity: 1; }
3.5% { transform: scale(1,0.8) translate3d(0,100%,0); }
3.6% { transform: scale(1,0.8) translate3d(0,-100%,0); }
9% { transform: scale(1.3,0.6) translate3d(0,100%,0); -webkit-filter: brightness(30); filter: brightness(30); opacity: 1; }
11% { transform: scale(1,1) translate3d(0,0,0); -webkit-filter: contrast(0) brightness(0); filter: contrast(0) brightness(0); opacity: 0; }
100% { transform: scale(1,1) translate3d(0,0,0); -webkit-filter: contrast(1) brightness(1.1) saturate(1.1); filter: contrast(1) brightness(1.1) saturate(1.1); opacity: 1; }
}
#root {
animation: turnOn 4s linear;
animation-fill-mode: forwards;
}
/* CRT Scanline Effect - Controlled by CSS Variable --scan-opacity */
.crt::before {
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
z-index: 50;
background-size: 100% 2px, 3px 100%;
pointer-events: none;
opacity: var(--scan-opacity, 0.8); /* Dynamic Clarity */
transition: opacity 2s ease-in-out;
}
/* 1999 RETRO MODE OVERRIDE */
.retro-mode {
filter: sepia(100%) hue-rotate(90deg) saturate(300%) contrast(1.2) !important;
font-family: 'JetBrains Mono', monospace !important;
}
.retro-mode * {
border-radius: 0 !important;
font-family: 'JetBrains Mono', monospace !important;
}
/* Glitch Animation */
.glitch-text {
text-shadow: 2px 0 #00fffc, -2px 0 #fc00ff;
animation: glitch 1s infinite linear alternate-reverse;
}
@keyframes glitch {
0% { text-shadow: 2px 0 #00fffc, -2px 0 #fc00ff; transform: skew(0deg); }
10% { text-shadow: 2px 0 #00fffc, -2px 0 #fc00ff; transform: skew(0deg); }
20% { text-shadow: -2px 0 #00fffc, 2px 0 #fc00ff; transform: skew(-10deg); }
30% { text-shadow: 2px 0 #00fffc, -2px 0 #fc00ff; transform: skew(0deg); }
100% { text-shadow: 2px 0 #00fffc, -2px 0 #fc00ff; transform: skew(0deg); }
}
/* Screen Shake */
.shake {
animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake {
10%, 90% { transform: translate3d(-1px, 0, 0); }
20%, 80% { transform: translate3d(2px, 0, 0); }
30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
40%, 60% { transform: translate3d(4px, 0, 0); }
}
/* Mission Briefing Scan */
@keyframes scan {
0% { top: 0; opacity: 0; }
50% { opacity: 1; }
100% { top: 100%; opacity: 0; }
}
.animate-scan {
animation: scan 2s linear infinite;
}
/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; border: 1px solid #333; }
::-webkit-scrollbar-thumb:hover { background: #22c55e; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
/* Ascension Screen Animations */
@keyframes matrix-rain {
0% { transform: translateY(-100%); }
100% { transform: translateY(100vh); }
}
.animate-matrix-rain {
animation: matrix-rain 10s linear infinite;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.animate-gradient {
background-size: 200% 200%;
animation: gradient 3s ease infinite;
}
@keyframes fade-in-up {
0% { opacity: 0; transform: translateY(30px); }
100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
animation: fade-in-up 0.8s ease-out forwards;
}
</style>
<script type="importmap">
{
"imports": {
"@google/genai": "https://esm.sh/@google/genai@^1.34.0",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>