-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
416 lines (399 loc) · 20.6 KB
/
Copy pathindex.html
File metadata and controls
416 lines (399 loc) · 20.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Goldenstone Games — Links</title>
<meta name="description" content="Trying to be solo indie dev, building TIMBERHEIM. All links: Discord, YouTube, devlogs, socials.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://goldenstonegames.com/">
<meta property="og:title" content="Goldenstone Games — Links">
<meta property="og:description" content="Trying to be solo indie dev, building TIMBERHEIM. All links: Discord, YouTube, devlogs, socials.">
<meta property="og:image" content="https://goldenstonegames.com/avatar.jpg">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://goldenstonegames.com/avatar.jpg">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="apple-touch-icon" href="favicon.png">
<!-- Fontlar inline CSS'ten keşfediliyor ama indirme layout'a kadar başlamıyordu; preload
ile erken başlar, yedek fontla görünme süresi kısalır. crossorigin ŞART (aynı origin
olsa bile fontlar CORS ile çekilir; atlanırsa dosya iki kez inar). -->
<link rel="preload" as="font" type="font/woff2" href="fonts/metamorphous-latin.woff2" crossorigin>
<link rel="preload" as="font" type="font/woff2" href="fonts/alegreyasans-500-latin.woff2" crossorigin>
<style>
/* ---- Fontlar (kaynak: stream-console) ----
size-adjust: her fontun kendi iç ölçüsü farklı (Alegreya %8 küçük, Metamorphous %7 büyük
çizer). Değerler fontların gerçek metriklerinden hesaplandı; hedef = Segoe UI
(x-yüksekliği 0.50 em / büyük harf yüksekliği 0.70 em). Gövde fontu x-yüksekliğine,
başlık fontu (hep BÜYÜK HARF) büyük harf yüksekliğine göre normalize edildi.
Böylece font yüklenmeden önce/sonra algılanan boyut sabit kalır. */
@font-face {
font-family: 'Metamorphous'; font-style: normal; font-weight: 400; font-display: swap;
size-adjust: 94%; /* cap 0.747 → 0.70 */
src: url(fonts/metamorphous-latin.woff2) format('woff2');
}
@font-face {
font-family: 'Alegreya Sans'; font-style: normal; font-weight: 500; font-display: swap;
size-adjust: 108%; /* x 0.461 → 0.50 */
src: url(fonts/alegreyasans-500-latin.woff2) format('woff2');
}
/* ---- Çözünürlüğe göre ölçekleme ----
Sayfadaki bütün ölçüler rem cinsinden; kök font boyutu büyüyünce sayfa tümüyle büyür.
Kademeler hem GENİŞLİK hem YÜKSEKLİK şartı ister: geniş ama alçak ekranlarda
(ör. 1920x1080, kullanılabilir yükseklik ~940px) büyütmek sayfayı kaydırmaya sokardı. */
html { font-size: 16px; }
@media (min-width: 1400px) and (min-height: 800px) { html { font-size: 17.5px; } }
@media (min-width: 1800px) and (min-height: 1000px) { html { font-size: 19px; } }
@media (min-width: 2200px) and (min-height: 1200px) { html { font-size: 22px; } }
@media (min-width: 2800px) and (min-height: 1500px) { html { font-size: 24.5px; } }
/* Alçak ekranlar (ör. 1366x768 dizüstü, kullanılabilir yükseklik ~660px): tek ekrana
sığması için küçülür. Yukarıdaki kademelerden SONRA gelir ki onları ezebilsin.
Dar ekranlarda (mobil) uygulanmaz — orada kaydırma zaten normal. */
@media (min-width: 781px) and (max-height: 880px) { html { font-size: 15px; } }
@media (min-width: 781px) and (max-height: 780px) { html { font-size: 13.5px; } }
@media (min-width: 781px) and (max-height: 680px) { html { font-size: 12px; } }
/* ---- Sayfa teması: TIMBERHEIM (buz mavisi + köz turuncusu) ---- */
:root {
--bg: #060b14;
--panel: #0c1524;
--c1: #7cc7ff; /* birincil vurgu */
--c1-hot: #ff9a3c;
--c2: #ff9a3c; /* ikincil vurgu */
--text: #eef6ff;
--dim: #8aa3c0;
--title-font: 'Metamorphous', 'Segoe UI', serif;
--body-font: 'Alegreya Sans', 'Segoe UI', sans-serif;
--glow1: rgba(124, 199, 255, 0.5);
--glow2: rgba(255, 154, 60, 0.35);
--bg-image: radial-gradient(ellipse at 50% -20%, rgba(124, 199, 255, 0.14), transparent 60%),
radial-gradient(ellipse at 50% 120%, rgba(255, 154, 60, 0.09), transparent 55%);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background-color: var(--bg);
background-image: var(--bg-image);
color: var(--text);
font-family: var(--body-font);
/* Satır yükseklikleri her yerde sabit sayı: "normal" fontun kendi metriğinden geldiği için
kutu boyları fonta göre oynuyordu. Sabitlenince buton/kart boyu fonttan bağımsız. */
line-height: 1.35;
min-height: 100vh;
display: flex;
justify-content: center;
padding: 1.6rem 1.3rem;
}
/* margin-block:auto → uzun ekranlarda içerik dikeyde ortalanır; içerik ekrandan uzunsa
(mobil) align-items:center'ın aksine üstten kırpmaz. */
.page { width: 100%; max-width: 80rem; margin-block: auto; display: flex; flex-direction: column; }
/* ---- Üst kimlik ---- */
.hero { text-align: center; margin-bottom: 1.2rem; }
.avatar {
width: 5.2rem;
height: 5.2rem;
border-radius: 50%;
margin-bottom: 0.6rem;
border: 2px solid var(--c1);
box-shadow: 0 0 24px var(--glow1), 0 0 48px var(--glow2);
}
h1 {
font-family: var(--title-font);
font-size: 2rem;
line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--c1);
text-shadow: 0 0 18px var(--glow1);
}
.tagline { color: var(--dim); margin-top: 0.5rem; font-size: 1.02rem; line-height: 1.4; }
/* ---- Üst blok: Socials (iki sütuna yayılır) | Live Development ---- */
.columns { display: grid; grid-template-columns: 2fr 1fr; gap: 1.6rem; align-items: start; }
.section {
color: var(--dim);
font-size: 0.8rem;
line-height: 1.3;
letter-spacing: 0.24em;
text-transform: uppercase;
text-align: center;
font-weight: 600;
margin-bottom: 0.8rem;
}
/* ---- Link butonları ---- */
.links { display: flex; flex-direction: column; gap: 0.9rem; }
/* Socials 6 link: iki sütun × üç satır → yan sütunla aynı hizada kalır, sayfa kısalır */
.links.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.links a {
display: flex;
align-items: center;
gap: 0.9rem;
background: var(--panel);
border: 1px solid color-mix(in srgb, var(--c2) 30%, transparent);
border-radius: 0.8rem;
padding: 1.15rem 1.3rem;
color: var(--text);
text-decoration: none;
font-size: 1.16rem;
line-height: 1.3;
transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.links a:hover {
border-color: var(--c2);
box-shadow: 0 0 16px color-mix(in srgb, var(--c2) 30%, transparent);
transform: translateY(-1px);
}
.links a.primary { border-color: color-mix(in srgb, var(--c1-hot) 65%, transparent); box-shadow: 0 0 14px color-mix(in srgb, var(--c1-hot) 20%, transparent); }
.links a.primary:hover { border-color: var(--c1); box-shadow: 0 0 20px var(--glow1); }
.links a .icon { width: 1.8rem; height: 1.8rem; flex-shrink: 0; }
.links a .label { flex: 1; text-align: left; }
.links a .sub { display: block; color: var(--dim); font-size: 0.84rem; line-height: 1.3; margin-top: 0.18rem; }
/* ---- Timberheim vitrini: sayfanın alt ortası, ana odak ---- */
.showcase { margin-top: 1.5rem; }
.game {
position: relative;
display: block;
max-width: 44rem;
margin: 0 auto;
text-align: center;
border-radius: 0.9rem;
padding: 2.1rem 1.6rem 2rem;
text-decoration: none;
overflow: hidden;
}
div.game { cursor: default; }
.gname { display: block; font-size: 3rem; line-height: 1.15; letter-spacing: 0.14em; }
.gsub { display: block; margin-top: 0.6rem; font-size: 0.9rem; line-height: 1.3; letter-spacing: 0.06em; }
.cta {
display: inline-block;
margin-top: 1.05rem;
padding: 0.68rem 2.1rem;
border-radius: 999px;
font-size: 0.92rem;
line-height: 1.4;
font-weight: 700;
letter-spacing: 0.22em;
color: #ffe0bd;
border: 1px solid rgba(255, 154, 60, 0.75);
background: rgba(255, 154, 60, 0.1);
animation: ctaPulse 2.8s ease-in-out infinite;
transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
@keyframes ctaPulse {
0%, 100% { box-shadow: 0 0 10px rgba(255, 154, 60, 0.22); }
50% { box-shadow: 0 0 22px rgba(255, 154, 60, 0.5); }
}
/* TIMBERHEIM — buz mavisi + köz turuncusu, kar */
.g-th {
background: rgba(7, 13, 24, 0.92);
border: 1px dashed rgba(124, 199, 255, 0.35);
}
.g-th::before {
content: ""; position: absolute; left: 8%; right: 8%; bottom: 0; height: 3px; border-radius: 2px;
background: linear-gradient(90deg, transparent 0%, #7cc7ff 22%, #b5e0ff 50%, #ff9a3c 78%, transparent 100%);
box-shadow: 0 0 12px rgba(124, 199, 255, 0.4);
}
.g-th::after {
content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.28;
background-image:
radial-gradient(1.5px 1.5px at 12% 22%, rgba(255, 255, 255, 0.8) 50%, transparent 51%),
radial-gradient(1px 1px at 38% 64%, rgba(255, 255, 255, 0.6) 50%, transparent 51%),
radial-gradient(1.5px 1.5px at 61% 18%, rgba(214, 236, 255, 0.7) 50%, transparent 51%),
radial-gradient(1px 1px at 79% 51%, rgba(255, 255, 255, 0.55) 50%, transparent 51%),
radial-gradient(1.5px 1.5px at 91% 82%, rgba(214, 236, 255, 0.6) 50%, transparent 51%);
}
.g-th .gname {
font-family: 'Metamorphous', serif; font-weight: 400;
color: #fff; text-shadow: 0 0 16px rgba(124, 199, 255, 0.7), 0 0 40px rgba(124, 199, 255, 0.3);
}
.g-th .gsub { color: #8aa3c0; }
a.g-th:hover { border-color: #ff9a3c; box-shadow: 0 0 22px rgba(255, 154, 60, 0.3); }
a.g-th:hover .cta { background: rgba(255, 154, 60, 0.9); color: #10131a; box-shadow: 0 0 26px rgba(255, 154, 60, 0.6); }
footer { margin-top: 1.3rem; text-align: center; color: var(--dim); font-size: 0.84rem; line-height: 1.45; }
footer a { color: var(--c1); text-decoration: none; }
/* ---- Tema efektleri (sabit katmanlar, tıklamayı engellemez) ---- */
/* Kar: iki katman × üçer karo, asal-benzeri boy ve süreler → desen uzun süre tekrarlamaz */
#fx-snow {
position: fixed; inset: 0; pointer-events: none; z-index: 5; opacity: 0.95;
background-image:
radial-gradient(2px 2px at 40px 60px, rgba(255, 255, 255, 0.9) 50%, transparent 51%),
radial-gradient(1.5px 1.5px at 150px 20px, rgba(255, 255, 255, 0.7) 50%, transparent 51%),
radial-gradient(1px 1px at 90px 180px, rgba(214, 236, 255, 0.6) 50%, transparent 51%),
radial-gradient(1.5px 1.5px at 220px 140px, rgba(255, 255, 255, 0.75) 50%, transparent 51%),
radial-gradient(2px 2px at 300px 80px, rgba(214, 236, 255, 0.8) 50%, transparent 51%),
radial-gradient(1px 1px at 250px 300px, rgba(255, 255, 255, 0.55) 50%, transparent 51%),
radial-gradient(1.5px 1.5px at 430px 240px, rgba(255, 255, 255, 0.7) 50%, transparent 51%),
radial-gradient(2px 2px at 60px 420px, rgba(214, 236, 255, 0.75) 50%, transparent 51%);
background-size: 260px 260px, 260px 260px, 260px 260px, 380px 380px, 380px 380px, 380px 380px, 500px 500px, 500px 500px;
animation: snowFallA 17s linear infinite;
}
#fx-snow::before {
content: ""; position: absolute; inset: 0;
background-image:
radial-gradient(3px 3px at 60px 40px, rgba(255, 255, 255, 0.9) 50%, transparent 51%),
radial-gradient(1px 1px at 180px 150px, rgba(214, 236, 255, 0.6) 50%, transparent 51%),
radial-gradient(1.5px 1.5px at 280px 60px, rgba(255, 255, 255, 0.7) 50%, transparent 51%),
radial-gradient(1.5px 1.5px at 30px 260px, rgba(255, 255, 255, 0.65) 50%, transparent 51%),
radial-gradient(2px 2px at 330px 210px, rgba(255, 255, 255, 0.8) 50%, transparent 51%),
radial-gradient(1px 1px at 200px 390px, rgba(214, 236, 255, 0.55) 50%, transparent 51%),
radial-gradient(1.5px 1.5px at 480px 130px, rgba(255, 255, 255, 0.7) 50%, transparent 51%),
radial-gradient(2px 2px at 300px 520px, rgba(214, 236, 255, 0.75) 50%, transparent 51%);
background-size: 320px 320px, 320px 320px, 320px 320px, 440px 440px, 440px 440px, 440px 440px, 590px 590px, 590px 590px;
animation: snowFallB 27s linear infinite;
}
@keyframes snowFallA {
from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
to { background-position: 30px 260px, 30px 260px, 30px 260px, -40px 380px, -40px 380px, -40px 380px, 15px 500px, 15px 500px; }
}
@keyframes snowFallB {
from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
to { background-position: -35px 320px, -35px 320px, -35px 320px, 25px 440px, 25px 440px, 25px 440px, -12px 590px, -12px 590px; }
}
/* Kamp ateşi: alt ortada titreşen ışık (iki katman, farklı tempo → organik) */
#fx-fire {
position: fixed; left: 0; right: 0; bottom: 0; height: 46vh;
pointer-events: none; z-index: 4; mix-blend-mode: screen;
}
#fx-fire::before, #fx-fire::after { content: ""; position: absolute; inset: 0; transform-origin: 50% 100%; }
#fx-fire::before {
background: radial-gradient(ellipse 70% 55% at 50% 108%, rgba(255, 154, 60, 0.42), rgba(255, 154, 60, 0.14) 45%, transparent 72%);
animation: fireBreath 5.2s ease-in-out infinite;
}
#fx-fire::after {
background: radial-gradient(ellipse 34% 30% at 50% 106%, rgba(255, 201, 122, 0.5), rgba(255, 120, 40, 0.16) 55%, transparent 75%);
animation: fireFlicker 2.3s ease-in-out infinite;
}
@keyframes fireBreath {
0%, 100% { opacity: 0.75; transform: scaleX(1) scaleY(1); }
30% { opacity: 0.95; transform: scaleX(1.06) scaleY(1.05); }
55% { opacity: 0.7; transform: scaleX(0.97) scaleY(0.99); }
78% { opacity: 0.9; transform: scaleX(1.03) scaleY(1.02); }
}
@keyframes fireFlicker {
0%, 100% { opacity: 0.8; transform: scaleX(1) translateY(0); }
18% { opacity: 1; transform: scaleX(1.08) translateY(-2px); }
37% { opacity: 0.65; transform: scaleX(0.94) translateY(1px); }
58% { opacity: 0.95; transform: scaleX(1.04) translateY(-1px); }
81% { opacity: 0.7; transform: scaleX(0.98) translateY(0); }
}
#fx-rune {
position: fixed; right: 1.4rem; bottom: 1.1rem; pointer-events: none; z-index: 5;
filter: drop-shadow(0 0 10px rgba(124, 199, 255, 0.35));
}
#fx-rune svg { display: block; width: 7rem; height: 8.2rem; }
#fx-rune .runes { animation: runeGlow 3s ease-in-out infinite; }
@keyframes runeGlow { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
#fx-snow, #fx-snow::before, #fx-rune .runes, #fx-fire::before, #fx-fire::after, .cta { animation: none; }
}
/* ---- Orta ekran: Socials iki sütun kalır, sadece oranlar sıkışır ---- */
@media (max-width: 1100px) {
.columns { grid-template-columns: 1.7fr 1fr; gap: 1.2rem; }
.links, .links.two-col { gap: 0.75rem; }
}
/* ---- Dar ekran: tek sütun ---- */
@media (max-width: 780px) {
body { padding: 2rem 1rem; }
.columns { grid-template-columns: 1fr; gap: 1.75rem; max-width: 30rem; margin: 0 auto; width: 100%; }
.links, .links.two-col { gap: 0.9rem; }
.showcase { max-width: 30rem; margin-left: auto; margin-right: auto; width: 100%; }
/* vw tabanlı: 360px'lik dar telefonlarda TIMBERHEIM harf aralığıyla birlikte taşmasın */
.gname { font-size: clamp(1.55rem, 8.4vw, 2.1rem); }
.game { padding: 1.6rem 1.1rem 1.5rem; }
#fx-rune { display: none; }
}
</style>
</head>
<body>
<main class="page">
<header class="hero">
<!-- 384px JPEG: ekranda en fazla ~127px görünüyor, 2x/3x ekranlarda bile yeterli.
Görsel opak olduğu için JPEG güvenli — daire CSS'teki border-radius ile kesiliyor.
fetchpriority=high: sayfanın en büyük görseli, ilk boyamayı bu belirliyor. -->
<img class="avatar" src="avatar.jpg" alt="Goldenstone Games avatar" width="384" height="384" fetchpriority="high" decoding="async">
<h1>Goldenstone Games</h1>
<p class="tagline">Trying to be solo indie dev.</p>
</header>
<div class="columns">
<section>
<h2 class="section">Socials</h2>
<nav class="links two-col">
<a class="primary" target="_blank" rel="noopener" data-count="/click-discord" href="https://discord.gg/Y9uU22UqtH">
<img class="icon" src="icons/discord.svg" alt="">
<span class="label">Discord<span class="sub">Join the community</span></span>
</a>
<a target="_blank" rel="noopener" data-count="/click-x" href="https://x.com/GoldenstoneGmes">
<img class="icon" src="icons/x.svg" alt="">
<span class="label">X / Twitter</span>
</a>
<a target="_blank" rel="noopener" data-count="/click-youtube" href="https://www.youtube.com/@goldenstonegames">
<img class="icon" src="icons/youtube.svg" alt="">
<span class="label">YouTube<span class="sub">Devlogs & shorts (English)</span></span>
</a>
<a target="_blank" rel="noopener" data-count="/click-tiktok" href="https://www.tiktok.com/@goldenstonegamess">
<img class="icon" src="icons/tiktok.svg" alt="">
<span class="label">TikTok</span>
</a>
<a target="_blank" rel="noopener" data-count="/click-bluesky" href="https://bsky.app/profile/goldenstonegames.bsky.social">
<img class="icon" src="icons/bluesky.svg" alt="">
<span class="label">Bluesky<span class="sub">Daily progress</span></span>
</a>
<a target="_blank" rel="noopener" data-count="/click-instagram" href="https://www.instagram.com/goldenstonegamess/">
<img class="icon" src="icons/instagram.svg" alt="">
<span class="label">Instagram</span>
</a>
</nav>
</section>
<section>
<h2 class="section">Live Development (Turkish)</h2>
<nav class="links">
<a target="_blank" rel="noopener" data-count="/click-youtube-live" href="https://www.youtube.com/@burakaltintas0">
<img class="icon" src="icons/youtube.svg" alt="">
<span class="label">YouTube Live<span class="sub">Watch the game being built</span></span>
</a>
<a target="_blank" rel="noopener" data-count="/click-kick" href="https://kick.com/burak-altintas">
<img class="icon" src="icons/kick.svg" alt="">
<span class="label">Kick</span>
</a>
</nav>
</section>
</div>
<section class="showcase">
<a class="game g-th" target="_blank" rel="noopener" data-count="/click-timberheim-steam" href="https://store.steampowered.com/app/4674360/Timberheim">
<span class="gname">TIMBERHEIM</span>
<span class="gsub">In development — wishlist on Steam</span>
<span class="cta">WISHLIST NOW</span>
</a>
</section>
<footer>Contact: <a data-count="/click-email" href="mailto:goldenstonegames@gmail.com">goldenstonegames@gmail.com</a><br>© 2026 Goldenstone Games</footer>
</main>
<div id="fx-snow" aria-hidden="true"></div>
<div id="fx-fire" aria-hidden="true"></div>
<div id="fx-rune" aria-hidden="true">
<svg viewBox="0 0 130 152" width="112" height="131">
<defs>
<linearGradient id="stoneg" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#26374b"/>
<stop offset="1" stop-color="#0c1524"/>
</linearGradient>
</defs>
<path d="M65 6 L104 24 L116 72 L100 134 L62 146 L24 130 L14 68 L30 22 Z"
fill="url(#stoneg)" stroke="#7cc7ff" stroke-opacity="0.5" stroke-width="2"/>
<g class="runes" stroke="#ff9a3c" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none">
<path d="M40 60 V96 M31 70 L40 60 L49 70"/>
<path d="M65 56 V100 M65 56 L78 66 L65 76 M65 76 L78 86 L65 96"/>
<path d="M92 60 V96 M106 60 V96 M92 72 L106 84"/>
</g>
</svg>
</div>
<!-- src'de "https:" ŞART, protokolsüz "//gc.zgo.at/..." KULLANMA (GoatCounter'ın kendi
örneği öyle veriyor ama hatalı): yerel dosyayı file:// ile açınca protokolsüz adres
"file://gc.zgo.at/..." olarak çözülüyor, Windows bunu ağ paylaşımı sanıp SMB ile
aramaya çalışıyor ve ~20 sn takılıyor. Ölçüldü 2026-08-14: file:// açılışta
protokolsüz 21876 ms, https:// ile 563 ms. Canlı https sitede fark yok. -->
<script data-goatcounter="https://goldenstonegames.goatcounter.com/count" async src="https://gc.zgo.at/count.js"></script>
<script>
document.addEventListener('click', function (e) {
var a = e.target.closest('a[data-count]');
if (!a || !window.goatcounter || !window.goatcounter.count) return;
window.goatcounter.count({ path: a.dataset.count, title: a.dataset.count, event: true });
});
</script>
</body>
</html>