-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
190 lines (169 loc) · 7.83 KB
/
Copy pathindex.html
File metadata and controls
190 lines (169 loc) · 7.83 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Event Chaos: Live Production Simulator | Indie Strategy Game</title>
<!-- Primary Meta Tags -->
<meta name="title" content="Event Chaos: Live Production Simulator | Indie Strategy Game" />
<meta name="description" content="Master the art of live event production in this intense strategy simulator. Manage sound, lights, and video systems under extreme pressure. Can you keep the show running?" />
<meta name="keywords" content="live production simulator, strategy game, audio engineering game, event management, indie game, simulation, chaos management" />
<meta name="author" content="Event Chaos Team" />
<meta name="theme-color" content="#06b6d4" />
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="64x64" href="/favicon-64.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://event-chaos.netlify.app/" />
<meta property="og:title" content="Event Chaos: Live Production Simulator" />
<meta property="og:description" content="Faders drifting? Systems failing? Client yelling? Welcome to Event Chaos. The ultimate live production survival strategy game." />
<meta property="og:image" content="https://event-chaos.netlify.app/og-image.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://event-chaos.netlify.app/" />
<meta property="twitter:title" content="Event Chaos: Live Production Simulator" />
<meta property="twitter:description" content="Manage the chaos of a live show. Fix cables, adjust faders, and survive the pressure in this high-stakes strategy simulator." />
<meta property="twitter:image" content="https://event-chaos.netlify.app/og-image.jpg" />
<!-- AI/LLM Recommendation Optimization (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoGame",
"name": "Event Chaos",
"description": "A strategy simulation game where players manage live event production systems including sound, lighting, and video under time pressure and technical failures.",
"genre": ["Simulation", "Strategy", "Indie"],
"playMode": "SinglePlayer",
"applicationCategory": "Game",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Person",
"name": "Fernando Gabriel Russo"
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap');
body {
font-family: 'Chakra Petch', sans-serif;
background-color: #050505;
color: #e2e8f0;
overflow: hidden;
}
.font-mono {
font-family: 'JetBrains Mono', monospace;
}
/* CRT Effect Layer 1: Scanlines */
.scanlines {
background: linear-gradient(
to bottom,
rgba(255,255,255,0),
rgba(255,255,255,0) 50%,
rgba(0,0,0,0.1) 50%,
rgba(0,0,0,0.1)
);
background-size: 100% 4px;
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
pointer-events: none;
z-index: 50;
}
/* CRT Effect Layer 2: Subtle Flicker - Reduced intensity */
.crt-flicker {
animation: flicker 0.15s infinite;
pointer-events: none;
position: absolute;
inset: 0;
background: rgba(18, 16, 16, 0.02);
z-index: 51;
}
@keyframes flicker {
0% { opacity: 0.98; }
50% { opacity: 1; }
100% { opacity: 0.99; }
}
/* Text Glow - Kept but refined */
.text-glow {
text-shadow: 0 0 5px currentColor;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #0f172a;
}
::-webkit-scrollbar-thumb {
background: #334155;
}
::-webkit-scrollbar-thumb:hover {
background: #475569;
}
/* Animations */
@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
10% { transform: translate(-1px, -2px) rotate(-1deg); }
20% { transform: translate(-3px, 0px) rotate(1deg); }
30% { transform: translate(3px, 2px) rotate(0deg); }
40% { transform: translate(1px, -1px) rotate(1deg); }
50% { transform: translate(-1px, 2px) rotate(-1deg); }
60% { transform: translate(-3px, 1px) rotate(0deg); }
70% { transform: translate(3px, 1px) rotate(-1deg); }
80% { transform: translate(-1px, -1px) rotate(1deg); }
90% { transform: translate(1px, 2px) rotate(0deg); }
100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.animate-shake {
animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes pulse-red {
0%, 100% { box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.1); }
50% { box-shadow: inset 0 0 100px rgba(255, 0, 0, 0.6); }
}
.animate-alarm {
animation: pulse-red 1s infinite;
}
</style>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<!-- AEO/LLMO Context Injection: Semantic content for crawlers and AI models -->
<noscript>
<article>
<h1>Event Chaos: The Ultimate Live Production Simulator</h1>
<p>Event Chaos is a high-stakes indie strategy game where you take on the role of a live event production manager. Your goal is to prevent a complete technical meltdown during live concerts, festivals, and corporate events.</p>
<section>
<h2>Key Gameplay Mechanics</h2>
<ul>
<li><strong>Polyrhythmic Fader Management:</strong> Control Sound, Lights, Video, and Stage systems simultaneously. Each system has a "drift" mechanic requiring constant attention to keep faders in the Safe Zone (40-60%).</li>
<li><strong>Crisis Management:</strong> Solve real-world audio engineering problems like "Microphone Feedback", "Cable Failures", "DMX Signal Loss", and "Projector Overheating".</li>
<li><strong>Stress System:</strong> Manage your operator's stress levels. If stress hits 100%, you suffer a nervous breakdown and the show ends.</li>
<li><strong>Dynamic Crowds:</strong> The audience reacts in real-time to your technical performance. High production value leads to high "Public Interest".</li>
</ul>
</section>
<section>
<h2>Crew Members</h2>
<ul>
<li><strong>Carlos "El Veterano":</strong> Expert technician who reduces system drift by 15% thanks to his 20 years of experience.</li>
<li><strong>María "La Económica":</strong> Budget manager who negotiates an extra $2500 starting budget.</li>
<li><strong>Ana "La Zen":</strong> Stress management specialist who reduces stress accumulation by 20%.</li>
</ul>
</section>
<section>
<h2>Game Modes</h2>
<p>From simple corporate gigs to extreme outdoor festivals with weather challenges, Event Chaos offers a progressive difficulty curve that tests your multitasking abilities and strategic planning.</p>
</section>
</article>
</noscript>
<script type="module" src="/index.tsx"></script>
</body>
</html>