-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
233 lines (216 loc) · 6.94 KB
/
index.html
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Heavy Helms - Coming Soon</title>
<link rel="stylesheet" href="./assets/css/fonts.css">
<link rel="stylesheet" href="./assets/css/header.css">
<link rel="stylesheet" href="./assets/css/footer.css">
<style>
body {
margin: 0;
padding: 0;
background: #000;
color: #fff;
font-family: 'Inter', sans-serif;
min-height: 100vh;
background-image: url('./assets/main_site_bkg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
pointer-events: none;
}
.hero-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 80vh;
position: relative;
padding: 0 20px;
gap: 1rem;
}
.title-container {
text-align: center;
margin-bottom: 1rem;
}
.game-title {
font-family: 'Bokor', cursive;
font-size: 140px;
letter-spacing: 0.05em;
margin: 0;
padding: 0;
background: linear-gradient(180deg,
#e8f1ff 0%,
#a8c6e8 40%,
#5d89b3 50%,
#a8c6e8 60%,
#e8f1ff 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 2.5px #000;
text-shadow:
-1px -1px 0px rgba(232,241,255,0.4),
1px 1px 2px rgba(93,137,179,0.4);
filter:
drop-shadow(0 0 8px rgba(0, 0, 0, 0.8))
drop-shadow(4px 4px 0 #000)
drop-shadow(0 0 12px rgba(168,198,232,0.25));
}
.tagline {
font-family: 'Inter', sans-serif;
font-size: 28px;
font-weight: 600;
color: #e8f1ff;
margin: 0.5rem 0 4rem;
text-shadow:
0 2px 4px rgba(0, 0, 0, 0.6),
0 4px 8px rgba(0, 0, 0, 0.4),
0 0 30px rgba(168, 198, 232, 0.5);
letter-spacing: 0.5px;
opacity: 0.95;
transform: scale(1.02);
}
.cta-container {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 380px;
gap: 1.5rem;
}
.cta-button {
display: block;
width: 100%;
padding: 1.25rem 2rem;
font-size: 1.125rem;
font-weight: 600;
text-align: center;
text-decoration: none;
border: none;
border-radius: 12px;
background: linear-gradient(
180deg,
rgba(168, 198, 232, 0.15) 0%,
rgba(93, 137, 179, 0.25) 100%
);
backdrop-filter: blur(8px);
color: #e8f1ff;
transition: all 0.2s ease-in-out;
box-shadow:
0 2px 4px rgba(0, 0, 0, 0.2),
0 4px 12px rgba(0, 0, 0, 0.1),
inset 0 1px 1px rgba(255, 255, 255, 0.1);
border: 1px solid rgba(168, 198, 232, 0.2);
cursor: pointer;
}
.cta-button-wrapper {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.cta-button:hover {
transform: translateY(-2px);
background: linear-gradient(
180deg,
rgba(168, 198, 232, 0.2) 0%,
rgba(93, 137, 179, 0.3) 100%
);
box-shadow:
0 4px 8px rgba(0, 0, 0, 0.25),
0 8px 16px rgba(0, 0, 0, 0.15),
inset 0 1px 1px rgba(255, 255, 255, 0.15);
border: 1px solid rgba(168, 198, 232, 0.3);
}
.cta-button:active {
transform: translateY(0);
box-shadow:
0 2px 4px rgba(0, 0, 0, 0.2),
inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.battle-caption {
font-size: 0.875rem;
color: rgba(232, 241, 255, 0.7);
text-align: center;
margin-top: 0.5rem;
font-style: italic;
letter-spacing: 0.02em;
}
.battle-caption span {
color: rgba(232, 241, 255, 0.85);
font-weight: 500;
}
.battle-info {
font-size: 0.875rem;
color: rgba(232, 241, 255, 0.7);
text-align: center;
margin-top: -1rem;
font-style: italic;
}
.early-access {
font-size: 1rem;
color: rgba(255, 255, 255, 0.6);
text-align: center;
margin-top: 2rem;
}
.shape-link {
color: #a8c6e8;
text-decoration: none;
transition: color 0.2s ease;
}
.shape-link:hover {
color: #fff;
text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}
</style>
</head>
<body>
<div class="hero-section">
<div class="title-container">
<h1 class="game-title">Heavy Helms</h1>
<div class="tagline">Every hit counts, every fight is forever!</div>
</div>
<div class="cta-container">
<a href="/game.html" class="cta-button">Watch Practice Battle</a>
<div class="cta-button-wrapper">
<a href="/game.html?txId=0x18c91a5e670581d37c8a565f98fbae40b443fed8f4a588692cf243dfe37b4c33&network=shape-mainnet" class="cta-button">Witness First Onchain Battle</a>
<div class="battle-caption"><span>Lee Lightbringer</span> vs <span>Iris the Bold</span></div>
</div>
</div>
<div class="early-access">Early Access Registration Opens January 2025</div>
</div>
<footer class="footer">
<div class="footer-content">
<div class="contracts-section">
<div class="contracts-label">Shape Mainnet Contracts</div>
<ul class="contracts-row">
<li><a href="https://shapescan.xyz/address/0xA909501cEe754bfE0F00DF7c21653957caaAdF03" class="contract-link">Player</a></li>
<li><a href="https://shapescan.xyz/address/0xEF804F79014F937973f37Bb80D5dc9Bf16543e1e" class="contract-link">GameEngine</a></li>
<li><a href="https://shapescan.xyz/address/0x84c0b41D8792afB4E333E8E849cC9B4ce8CCA1cF" class="contract-link">PracticeGame</a></li>
<li><a href="https://shapescan.xyz/address/0xF2b9189e0Aa4C495220F201459e97D33D637f700" class="contract-link">DuelGame</a></li>
</ul>
</div>
<div class="footer-attribution">
<div class="powered-by">Powered by <a href="https://shape.network/" class="shape-link">Shape Network</a></div>
<div class="copyright">© 2024 <a href="https://heavyhelms.xyz">Heavy Helms</a></div>
<div class="built-by">Built by <a href="https://www.webmodularity.com/" class="webmod-text">WebModularity</a></div>
</div>
</div>
</footer>
</body>
</html>