-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
611 lines (516 loc) · 24.7 KB
/
index.html
File metadata and controls
611 lines (516 loc) · 24.7 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ThrowTop</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="C++ developer
CS2 enjoyer">
<!-- Social -->
<meta property="og:title" content="ThrowTop">
<meta property="og:description" content="C++ developer
CS2 enjoyer">
<meta property="og:type" content="website">
<meta property="og:image" content="https://throwtop.dev/pfp.jpg">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="400">
<meta property="og:image:height" content="400">
<meta property="og:url" content="https://throwtop.dev/">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="ThrowTop">
<meta name="twitter:description" content="C++ developer, Counter-Strike 2 enjoyer">
<meta name="twitter:image" content="https://throwtop.dev/pfp.jpg">
<meta name="color-scheme" content="dark">
<link rel="icon" type="image/png" sizes="64x64" href="/pfp-64.png">
<link rel="shortcut icon" type="image/png" href="pfp-64.png">
<link rel="apple-touch-icon" href="pfp-64.png">
<script src="https://cdn.tailwindcss.com"></script>
<!-- Custom CSS for glow, bg, and Steam badge -->
<style>
:root {
--stroke: rgba(255, 255, 255, 0.12);
}
/* ========================
Frosted cards + proximity glow ring
======================== */
.glow-card {
position: relative;
}
.glow-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px;
background: radial-gradient(256px 256px at var(--glow-x, 50%) var(--glow-y, 50%),
rgba(59, 130, 246, var(--glow-a, 0)) 0%,
rgba(168, 85, 247, calc(var(--glow-a, 0)*0.9)) 45%,
transparent 78%);
/* Safari/WebKit */
-webkit-mask: linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
mask: linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
/* Standard syntax (Firefox, Chrome) */
mask-image: linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
mask-composite: exclude;
mask-repeat: no-repeat;
pointer-events: none;
opacity: var(--glow-o, 0);
transition: opacity .12s linear;
z-index: 2;
}
.glow-card::after {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
border: 1px solid var(--stroke);
z-index: 1;
}
/* ========================
Background layers (no motion)
======================== */
.bg-layer {
position: fixed;
inset: 0;
z-index: -10;
}
/* Split the grid into two layers so we can animate X and Y independently */
.bg-grid-x,
.bg-grid-y {
position: absolute;
inset: 0;
mask-image: radial-gradient(ellipse at center,
rgba(0, 0, 0, .9),
rgba(0, 0, 0, .25) 70%,
rgba(0, 0, 0, 0) 100%);
will-change: background-position;
}
/* vertical lines (move right) */
.bg-grid-x {
background-image: linear-gradient(to right, rgba(255, 255, 255, .03) 1px, transparent 1px);
background-size: 32px 32px;
/* tile width must match animation distance for seamless loop */
background-position: 0 0;
animation: move-grid-x 4s linear infinite;
}
/* horizontal lines (move down) */
.bg-grid-y {
background-image: linear-gradient(to bottom, rgba(255, 255, 255, .03) 1px, transparent 1px);
background-size: 32px 32px;
background-position: 0 0;
animation: move-grid-y 2s linear infinite;
}
@keyframes move-grid-x {
from {
background-position: 0 0;
}
to {
background-position: 32px 0;
}
/* shift exactly one cell width */
}
@keyframes move-grid-y {
from {
background-position: 0 0;
}
to {
background-position: 0 32px;
}
/* shift exactly one cell height */
}
.bg-blob {
filter: blur(72px);
opacity: .38;
}
.bg-shear {
background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 40%, transparent 60%, rgba(255, 255, 255, .03));
filter: blur(6px);
opacity: .7;
}
/* Gradient text (violet → blue) */
.text-gradient {
background-image: linear-gradient(90deg, #a78bfa 0%, #60a5fa 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
display: inline-block;
}
/* ========================
Steam level sprite (32x320). Level 250 => y:160..192
======================== */
.steam-level {
position: relative;
width: 32px;
height: 32px;
background-image: url("https://community.fastly.steamstatic.com/public/shared/images/community/levels_shields.png");
background-size: 32px 320px;
background-repeat: no-repeat;
background-position: 0 -160px;
display: inline-block;
flex: 0 0 auto;
}
.steam-level .friendPlayerLevelNum {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 11px;
font-weight: 700;
color: #fff;
letter-spacing: -.2px;
text-shadow: 0 1px 0 rgba(0, 0, 0, .6), 0 0 2px rgba(0, 0, 0, .6), 0 0 4px rgba(0, 0, 0, .4);
line-height: 1;
pointer-events: none;
user-select: none;
}
/* ========================
Main boxes: simple hover lift (no resize, no scale)
======================== */
:where(aside .glow-card, main > section.glow-card) {
transition: transform 160ms ease, box-shadow 160ms ease;
}
:where(aside .glow-card, main > section.glow-card):hover {
transform: translateY(-2px);
box-shadow:
inset 0 0 0 1px var(--stroke),
0 10px 30px rgba(0, 0, 0, .35);
}
/* ============================================================
Clickables: lift + diagonal shine (only on these; no other elements)
Targets: #discord-copy-btn, #backup-copy-card, .glow-card a
============================================================ */
:where(#discord-copy-btn, #backup-copy-card, .glow-card a) {
position: relative;
overflow: hidden;
transform: translateY(0);
transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, opacity .2s ease;
box-shadow: inset 0 0 0 1px var(--stroke);
/* static ring */
}
:where(#discord-copy-btn, #backup-copy-card, .glow-card a):hover {
transform: translateY(-1px);
}
:where(#discord-copy-btn, #backup-copy-card, .glow-card a):active {
transform: translateY(0);
}
/* Prevent border riding on ::after for elements that use sweep */
:where(#backup-copy-card, a.glow-card)::after {
border: none !important;
}
/* Shine sweep (one way, starts immediately on hover-in) */
:where(#discord-copy-btn, #backup-copy-card, .glow-card a)::after {
content: "";
position: absolute;
inset: auto -40% auto -40%;
top: 0;
height: 140%;
transform: translateX(-90%) rotate(12deg);
/* already intersecting */
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .12) 50%, rgba(255, 255, 255, 0) 100%);
pointer-events: none;
z-index: 3;
}
:where(#discord-copy-btn, #backup-copy-card, .glow-card a):hover::after {
animation: shine .9s linear forwards;
}
@keyframes shine {
to {
transform: translateX(90%) rotate(12deg);
}
}
/* Copy icon tiny bounce */
@keyframes pop {
0% {
transform: scale(.6);
opacity: .4
}
60% {
transform: scale(1.15);
opacity: 1
}
100% {
transform: scale(1)
}
}
.icon-pop {
animation: pop .25s ease-out;
}
.copy-check-pop {
animation: pop .25s ease-out;
}
.icon-swap {
position: relative;
display: inline-block;
width: 1rem;
/* matches h-4 w-4 */
height: 1rem;
}
.icon-swap>svg {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.18s ease;
transform: scale(1);
/* do not transition transform; leave to pop keyframe */
pointer-events: none;
will-change: opacity;
}
.icon-swap>svg.is-visible {
opacity: 1 !important;
/* override Tailwind opacity-80 on the copy icon */
}
a.no-shine::after {
display: none !important;
}
/* Swedish flag (8:5) built with layered gradients, no external image */
.flag-se {
width: 30px;
/* tweak to taste: 18..28px works well */
aspect-ratio: 8 / 5;
/* correct flag ratio */
background-color: #005293;
/* Swedish blue */
background-image:
linear-gradient(to bottom,
transparent 0, transparent 40%, #fecb00 40%, #fecb00 60%, transparent 60%, transparent 100%),
linear-gradient(to right,
transparent 0, transparent 31.25%, #fecb00 31.25%, #fecb00 43.75%, transparent 43.75%, transparent 100%);
border-radius: 2px;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
display: inline-block;
vertical-align: middle;
}
.flag-chip {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 3px 8px;
border-radius: 9999px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
font-size: 11px;
line-height: 1;
color: #d4d4d8;
/* neutral-300 */
}
</style>
</head>
<body class="min-h-screen font-sans antialiased bg-neutral-950 text-neutral-100 selection:bg-blue-400/20">
<!-- Background -->
<div class="bg-layer" aria-hidden="true">
<!-- Grid split into two layers so X and Y can scroll independently -->
<div class="absolute inset-0 bg-grid-x opacity-90"></div>
<div class="absolute inset-0 bg-grid-y opacity-90"></div>
<!-- Color blobs (unchanged) -->
<div class="absolute -top-24 -left-20 w-[40rem] h-[40rem] rounded-full bg-fuchsia-600/20 bg-blob"></div>
<div class="absolute -bottom-28 -right-16 w-[44rem] h-[44rem] rounded-full bg-blue-500/20 bg-blob"></div>
<!-- Shear highlight -->
<div class="absolute inset-0 bg-shear pointer-events-none"></div>
</div>
<div class="max-w-6xl mx-auto px-4 pt-10 md:pt-16 pb-10">
<div class="grid md:grid-cols-[280px_minmax(0,1fr)] gap-6">
<!-- Sidebar -->
<aside class="md:sticky md:top-8 self-start">
<div class="glow-card rounded-2xl bg-white/5 backdrop-blur shadow-sm p-5">
<div class="flex items-center gap-4">
<a href="pfp.jpg" target="_blank" rel="noopener" class="glow-card rounded-full p-[2px] block no-shine">
<img src="pfp.jpg" alt="ThrowTop profile picture" class="w-16 h-16 rounded-full border border-white/10 object-cover bg-black block">
</a>
<div class="min-w-0">
<div class="flex items-center gap-2">
<h1 class="text-2xl font-bold leading-tight tracking-tight text-gradient">Throw</h1>
<span class="flag-se" aria-label="Sweden" title="Sweden"></span>
<div class="steam-level friendPlayerLevel lvl_200 lvl_plus_50" aria-label="Steam level 250">
<span class="friendPlayerLevelNum">250</span>
</div>
</div>
<p class="text-sm text-neutral-400">C++ developer. </p>
<p class="text-sm text-neutral-400">CS2 enjoyer.</p>
</div>
</div>
<!-- Buttons stack -->
<div class="mt-4 space-y-2">
<!-- Discord copy button (icon left, copy/check right) -->
<button id="discord-copy-btn" data-copy="ThrowTop" class="btn w-full flex items-center justify-between rounded-lg bg-white/5 hover:bg-white/10 active:bg-white/15 text-sm px-4 py-2 transition">
<span class="inline-flex items-center gap-2 truncate">
<img src="https://cdn.simpleicons.org/discord/ffffff" alt="Discord" class="brand-icon h-4 w-4" loading="lazy" decoding="async" referrerpolicy="no-referrer">
<span class="font-medium">ThrowTop</span>
</span>
<span class="inline-flex items-center">
<svg class="h-4 w-4 opacity-80" data-icon="copy" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<rect x="9" y="9" width="13" height="13" rx="2"></rect>
<path d="M5 15V5a2 2 0 0 1 2-2h10"></path>
</svg>
<svg class="h-4 w-4 hidden text-emerald-400" data-icon="check" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
</button>
<!-- Social open-link buttons (uniform glossy style) -->
<a href="https://steamcommunity.com/profiles/76561198952505877" target="_blank" rel="noopener noreferrer" class="btn w-full flex items-center justify-between rounded-lg bg-white/5 hover:bg-white/10 active:bg-white/15 text-sm px-4 py-2 transition text-neutral-200">
<span class="inline-flex items-center gap-2">
<img src="https://cdn.simpleicons.org/steam/ffffff" alt="Steam" class="brand-icon h-4 w-4" loading="lazy" decoding="async" referrerpolicy="no-referrer">
<span>Steam</span>
</span>
<svg class="h-4 w-4 opacity-80" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M18 13v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path>
<path d="M15 3h6v6"></path>
<path d="M10 14 21 3"></path>
</svg>
</a>
<a href="https://github.com/ThrowTop" target="_blank" rel="noopener noreferrer" class="btn w-full flex items-center justify-between rounded-lg bg-white/5 hover:bg-white/10 active:bg-white/15 text-sm px-4 py-2 transition text-neutral-200">
<span class="inline-flex items-center gap-2">
<img src="https://cdn.simpleicons.org/github/ffffff" alt="GitHub" class="brand-icon h-4 w-4" loading="lazy" decoding="async" referrerpolicy="no-referrer">
<span>GitHub</span>
</span>
<svg class="h-4 w-4 opacity-80" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M18 13v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path>
<path d="M15 3h6v6"></path>
<path d="M10 14 21 3"></path>
</svg>
</a>
<a href="https://www.youtube.com/@ThrowTop" target="_blank" rel="noopener noreferrer" class="btn w-full flex items-center justify-between rounded-lg bg-white/5 hover:bg-white/10 active:bg-white/15 text-sm px-4 py-2 transition text-neutral-200">
<span class="inline-flex items-center gap-2">
<img src="https://cdn.simpleicons.org/youtube/ffffff" alt="YouTube" class="brand-icon h-4 w-4" loading="lazy" decoding="async" referrerpolicy="no-referrer">
<span>Main YouTube</span>
</span>
<svg class="h-4 w-4 opacity-80" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M18 13v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path>
<path d="M15 3h6v6"></path>
<path d="M10 14 21 3"></path>
</svg>
</a>
<a href="https://www.youtube.com/@ThrowClips" target="_blank" rel="noopener noreferrer" class="btn w-full flex items-center justify-between rounded-lg bg-white/5 hover:bg-white/10 active:bg-white/15 text-sm px-4 py-2 transition text-neutral-200">
<span class="inline-flex items-center gap-2">
<img src="https://cdn.simpleicons.org/youtube/ffffff" alt="YouTube" class="brand-icon h-4 w-4" loading="lazy" decoding="async" referrerpolicy="no-referrer">
<span>Clips YouTube</span>
</span>
<svg class="h-4 w-4 opacity-80" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M18 13v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path>
<path d="M15 3h6v6"></path>
<path d="M10 14 21 3"></path>
</svg>
</a>
</div>
</div>
<!-- CS2 Settings sidebar card -->
<div class="mt-6 glow-card rounded-2xl bg-white/5 backdrop-blur shadow-sm p-5">
<h2 class="text-base font-semibold tracking-tight mb-3">CS2 Settings</h2>
<ul class="space-y-1 text-sm">
<li><span class="text-neutral-400">DPI</span> <span class="font-code text-gradient">800</span></li>
<li><span class="text-neutral-400">Sensitivity</span> <span class="font-code text-gradient">1.10</span></li>
<li><span class="text-neutral-400">Resolution</span> <span class="font-code text-gradient">1440x1080 @ 360Hz</span></li>
<li><span class="text-neutral-400">Aspect Ratio</span> <span class="font-code text-gradient">4:3 Stretch</span></li>
</ul>
</div>
</aside>
<!-- Main -->
<main class="space-y-6">
<!-- Projects -->
<section class="glow-card rounded-2xl p-5 bg-white/5 backdrop-blur shadow-sm" data-glow-threshold="220">
<h2 class="text-lg font-semibold tracking-tight mb-3">Projects</h2>
<ul class="grid gap-3 sm:grid-cols-2 list-none p-0 m-0">
<li>
<a href="https://github.com/ThrowTop/HyprWin" target="_blank" rel="noopener" class="glow-card block rounded-xl p-3 bg-white/5 backdrop-blur hover:-translate-y-0.5 hover:shadow-md transition" data-glow-threshold="200">
<span class="font-semibold">HyprWin</span>
<span class="block text-sm text-neutral-400">C++ Shortcut Tool and Window Manager.</span>
</a>
</li>
<li>
<a href="https://github.com/ThrowTop/auto_uploader" target="_blank" rel="noopener" class="glow-card block rounded-xl p-3 bg-white/5 backdrop-blur hover:-translate-y-0.5 hover:shadow-md transition" data-glow-threshold="200">
<span class="font-semibold">Youtube Uploader</span>
<span class="block text-sm text-neutral-400">Simple and efficient Youtube uploader.</span>
</a>
</li>
<li>
<div id="backup-copy-card" role="button" tabindex="0" data-copy="irm backup.throwtop.dev | iex" class="glow-card cursor-pointer select-none rounded-xl p-3 bg-white/5 backdrop-blur hover:-translate-y-0.5 hover:shadow-md transition" data-glow-threshold="200">
<div class="inline-flex items-center gap-2">
<span class="font-semibold">Backup Scripts</span>
<span class="inline-flex items-center">
<svg class="h-4 w-4 opacity-80" data-icon="copy" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<rect x="9" y="9" width="13" height="13" rx="2"></rect>
<path d="M5 15V5a2 2 0 0 1 2-2h10"></path>
</svg>
<svg class="h-4 w-4 hidden text-emerald-400" data-icon="check" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
</div>
<pre class="block text-sm text-blue-400 mt-1 font-code">irm backup.throwtop.dev | iex</pre>
</div>
</li>
<li>
<a href="https://github.com/ThrowTop/finalmouse" target="_blank" rel="noopener" class="glow-card block rounded-xl p-3 bg-white/5 backdrop-blur hover:-translate-y-0.5 hover:shadow-md transition" data-glow-threshold="200">
<span class="font-semibold">Finalmouse CLI</span>
<span class="block text-sm text-neutral-400">Simple finalmouse polling rate changer CLI</span>
</a>
</li>
</ul>
</section>
<!-- Setup -->
<section class="glow-card rounded-2xl p-5 bg-white/5 backdrop-blur shadow-sm" data-glow-threshold="220">
<div class="grid sm:grid-cols-2 gap-4">
<!-- PC -->
<div class="rounded-xl bg-white/5 p-4">
<h2 class="text-lg font-semibold tracking-tight mb-3">Setup</h2>
<ul class="space-y-1 text-sm">
<li><span class="text-neutral-400">CPU</span> <span class="font-code text-gradient">Ryzen 7 7800X3D</span></li>
<li><span class="text-neutral-400">GPU</span> <span class="font-code text-gradient">RTX 4070 Super</span></li>
<li><span class="text-neutral-400">RAM</span> <span class="font-code text-gradient">DDR5 6000 MT/s</span></li>
<li><span class="text-neutral-400">Storage</span> <span class="font-code text-gradient">Samsung 990 Pro 2 TB NVMe</span></li>
<li><span class="text-neutral-400">Motherboard</span> <span class="font-code text-gradient">B650E Aorus Elite X AX ICE</span></li>
<li><span class="text-neutral-400">OS</span> <span class="font-code text-gradient">Windows 11 24H2</span></li>
<li><span class="text-neutral-400">Display</span> <span class="font-code text-gradient">Zowie XL2566K 360Hz</span></li>
</ul>
</div>
<!-- Audio & Peripherals -->
<div class="rounded-xl bg-white/5 p-4">
<h2 class="text-lg font-semibold tracking-tight mb-3">Audio & Peripherals</h2>
<ul class="space-y-1 text-sm">
<li><span class="text-neutral-400">Mic</span> <span class="font-code text-gradient">RODE XDM-100</span></li>
<li><span class="text-neutral-400">Headset/IEM</span> <span class="font-code text-gradient">HyperX Cloud II / KZ ZS10 Pro</span></li>
<li><span class="text-neutral-400">DAC</span> <span class="font-code text-gradient">FiiO JA11</span></li>
<li><span class="text-neutral-400">Mouse</span> <span class="font-code text-gradient">Finalmouse ULX Prophecy 8KHz</span></li>
<li><span class="text-neutral-400">Keyboard</span> <span class="font-code text-gradient">IROK MG75 Pro 8KHz</span></li>
<li><span class="text-neutral-400">Tools</span> <span class="font-code text-gradient">OBS, Equalizer APO, HyprWin</span></li>
</ul>
</div>
</div>
</section>
</main>
</div>
</div>
<!-- Footer in normal flow (no overlap) -->
<footer class="text-center text-sm text-neutral-400 px-4 py-8">
Built with <span class="font-semibold">TailwindCSS</span>. Hosted on
<a href="https://pages.github.com" target="_blank" rel="noopener" class="text-blue-400 hover:underline">
GitHub Pages
</a>.
</footer>
<div id="live" class="sr-only" aria-live="polite" aria-atomic="true"></div>
<script src="scripts.js"></script>
<!-- JSON-LD -->
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"Person",
"name":"ThrowTop",
"url":"https://throwtop.github.io/",
"sameAs":[
"https://github.com/ThrowTop",
"https://steamcommunity.com/profiles/76561198952505877",
"https://www.youtube.com/@ThrowTop",
"https://www.youtube.com/@ThrowClips"
]
}
</script>
</body>
</html>