-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
314 lines (272 loc) · 7.68 KB
/
index.html
File metadata and controls
314 lines (272 loc) · 7.68 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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support & Donate — ArtechFuz3D</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&family=DM+Sans:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0a0f;
--surface: #111118;
--surface2: #1a1a24;
--border: rgba(255,255,255,0.07);
--accent: #ff4c29;
--accent2: #ff8c42;
--glow: rgba(255,76,41,0.35);
--text: #f0eee8;
--muted: #7a7a8a;
--card-bg: #13131d;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: 'DM Sans', sans-serif;
min-height: 100vh;
overflow-x: hidden;
}
/* Grain overlay */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 9999;
opacity: 0.5;
}
/* Radial glow bg */
.bg-glow {
position: fixed;
top: -20%;
left: 50%;
transform: translateX(-50%);
width: 900px;
height: 500px;
background: radial-gradient(ellipse at center, rgba(255,76,41,0.12) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
.container {
max-width: 780px;
margin: 0 auto;
padding: 0 24px;
position: relative;
z-index: 1;
}
/* ── Header ── */
header {
padding: 64px 24px 0;
text-align: center;
position: relative;
z-index: 1;
}
.eyebrow {
font-family: 'Space Mono', monospace;
font-size: 11px;
letter-spacing: 0.25em;
color: var(--accent);
text-transform: uppercase;
margin-bottom: 16px;
opacity: 0;
animation: fadeUp 0.6s 0.1s forwards;
}
h1 {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(56px, 12vw, 110px);
line-height: 0.92;
letter-spacing: 0.01em;
color: var(--text);
opacity: 0;
animation: fadeUp 0.7s 0.25s forwards;
}
h1 span {
-webkit-text-stroke: 1.5px var(--accent);
color: transparent;
}
.subtitle {
margin-top: 20px;
font-size: 16px;
color: var(--muted);
max-width: 480px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
font-weight: 300;
opacity: 0;
animation: fadeUp 0.7s 0.4s forwards;
}
/* ── Divider ── */
.divider {
width: 48px;
height: 2px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
margin: 40px auto;
opacity: 0;
animation: fadeUp 0.6s 0.55s forwards;
}
/* ── Cards ── */
.cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
padding: 0 24px 32px;
position: relative;
z-index: 1;
}
@media (max-width: 560px) {
.cards { grid-template-columns: 1fr; }
}
.card {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: 16px;
padding: 32px 28px;
text-decoration: none;
color: var(--text);
display: flex;
flex-direction: column;
gap: 14px;
position: relative;
overflow: hidden;
transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
opacity: 0;
animation: fadeUp 0.7s forwards;
cursor: pointer;
}
.card:nth-child(1) { animation-delay: 0.65s; }
.card:nth-child(2) { animation-delay: 0.8s; }
.card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,76,41,0.06) 0%, transparent 60%);
opacity: 0;
transition: opacity 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
border-color: rgba(255,76,41,0.4);
box-shadow: 0 20px 60px rgba(255,76,41,0.15), 0 0 0 1px rgba(255,76,41,0.15);
}
.card:hover::before { opacity: 1; }
.card-icon {
font-size: 28px;
line-height: 1;
}
.card-tag {
font-family: 'Space Mono', monospace;
font-size: 10px;
letter-spacing: 0.18em;
color: var(--accent);
text-transform: uppercase;
}
.card-title {
font-family: 'Bebas Neue', sans-serif;
font-size: 32px;
letter-spacing: 0.03em;
line-height: 1;
color: var(--text);
}
.card-desc {
font-size: 14px;
color: var(--muted);
line-height: 1.55;
flex: 1;
}
.card-cta {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: 'Space Mono', monospace;
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent);
transition: gap 0.2s ease;
margin-top: 4px;
}
.card:hover .card-cta { gap: 12px; }
.card-cta-arrow {
display: inline-block;
transition: transform 0.2s ease;
}
.card:hover .card-cta-arrow { transform: translateX(3px); }
/* ── Footer note ── */
.footer-note {
text-align: center;
padding: 0 24px 64px;
position: relative;
z-index: 1;
opacity: 0;
animation: fadeUp 0.7s 1s forwards;
}
.footer-note p {
font-size: 13px;
color: var(--muted);
line-height: 1.7;
}
.footer-note strong {
color: var(--text);
font-weight: 600;
}
.heart {
color: var(--accent);
display: inline-block;
animation: pulse 1.6s ease-in-out infinite;
}
/* ── Animations ── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(22px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.25); }
}
/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 3px; }
</style>
</head>
<body>
<div class="bg-glow"></div>
<header>
<div class="container">
<p class="eyebrow">Support the work</p>
<h1>FUEL THE <span>FIRE</span></h1>
<p class="subtitle">Every tip, sponsorship, or shout-out keeps the content alive and the machines running. Pick your move below.</p>
<div class="divider"></div>
</div>
</header>
<main>
<div class="container">
<div class="cards">
<a class="card" href="https://streamelements.com/hewfunkingknewit/tip" target="_blank" rel="noopener">
<div class="card-icon">💸</div>
<span class="card-tag">Quick tip</span>
<div class="card-title">Send a Tip</div>
<p class="card-desc">Drop a one-time tip via StreamElements. Fast, easy, and it goes directly to the creator.</p>
<span class="card-cta">Tip now <span class="card-cta-arrow">→</span></span>
</a>
<a class="card" href="https://shop.artechfuz3d.xyz/products/sponsor" target="_blank" rel="noopener">
<div class="card-icon">🚀</div>
<span class="card-tag">Sponsor</span>
<div class="card-title">Become a Sponsor</div>
<p class="card-desc">Get your name or brand in front of the audience. Grab a sponsorship slot from the official shop.</p>
<span class="card-cta">Sponsor now <span class="card-cta-arrow">→</span></span>
</a>
</div>
</div>
</main>
<div class="footer-note">
<div class="container">
<p>Made with <span class="heart">♥</span> by <strong>ArtechFuz3D</strong>. Every contribution — big or small — means the world and keeps this project going.</p>
</div>
</div>
</body>
</html>