-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (116 loc) · 3.29 KB
/
index.html
File metadata and controls
124 lines (116 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Cyber Birthday Quest</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<style>
body {
background-color: #0d0d0d;
color: #e0e0ff;
font-family: 'Courier New', monospace;
margin: 0;
padding: 40px;
}
h1 {
color: #c77dff;
font-size: 2.5em;
animation: typing 4s steps(40, end), blink-caret .75s step-end infinite;
overflow: hidden;
white-space: nowrap;
border-right: .15em solid #c77dff;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #c77dff; }
}
.station {
background: rgba(255,255,255,0.05);
padding: 1.5em;
margin: 2em 0;
border-left: 4px solid #c77dff;
border-radius: 8px;
}
a {
color: #c77dff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
audio {
margin-top: 0.8em;
width: 100%;
}
footer {
text-align: center;
color: #888;
font-size: 0.9em;
margin-top: 4em;
}
button {
padding: 0.7em 1.2em;
font-size: 1em;
background: #c77dff;
color: #000;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background: #a64dff;
color: #fff;
}
#secret {
margin-top: 1em;
display: none;
}
</style>
</head>
<body>
<h1>Cyber Birthday Quest</h1>
<div class="station">
<h2>Station 1: Initiation</h2>
<p><a href="qr/station_1_qr.png" target="_blank">Scan QR</a></p>
<audio controls src="audio/station1_with_background.mp3"></audio>
</div>
<div class="station">
<h2>Station 2: Phase Shift</h2>
<p><a href="qr/station_2_qr.png" target="_blank">Scan QR</a></p>
<audio controls src="audio/station2_with_background.mp3"></audio>
</div>
<div class="station">
<h2>Station 3: Glitch Core</h2>
<p><a href="qr/station_3_qr.png" target="_blank">Scan QR</a></p>
<audio controls src="audio/station3_with_background.mp3"></audio>
</div>
<div class="station">
<h2>Station 4: Memory Vault</h2>
<p><a href="https://photos.app.goo.gl/EZJtH51eKuW6Chub8" target="_blank">View Shared Memories</a></p>
<audio controls src="audio/station4_with_background.mp3"></audio>
</div>
<div class="station">
<h2>Station 5: Final Drop</h2>
<button onclick="revealFinal()">Activate Final Drop</button>
<div id="secret">
<p><strong>Shelsi, you found secret chest!</strong></p>
<p><a href="https://youtu.be/dQw4w9WgXcQ?si=RTE7XIRE3dA2oDoM" target="_blank">Unlock Surprise</a></p>
<img src="happy_cyber_birthday_card.png" alt="Cyber Birthday" style="max-width:100%; margin-top:1em;">
<audio controls src="audio/station5_with_background.mp3"></audio>
</div>
</div>
<footer>
Crafted by <strong style="color:#c77dff;">Nyx Protocol</strong>. Powered by <strong style="color:#c77dff;">dnull_systems</strong>.
</footer>
<script>
function revealFinal() {
document.getElementById("secret").style.display = "block";
}
</script>
</body>
</html>