-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
329 lines (305 loc) · 21.4 KB
/
Copy pathstyle.css
File metadata and controls
329 lines (305 loc) · 21.4 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
/* ============================================================
MONKSILLY — Shared Stylesheet
Fonts: Press Start 2P · Bebas Neue · IBM Plex Mono
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Bebas+Neue&family=IBM+Plex+Mono:ital,wght@0,400;0,700;1,400&display=swap');
:root {
--bg: #0f0e0c;
--surface: #1b1a17;
--surface2: #242220;
--border: #3c3a36;
--yellow: #FFE135;
--red: #FF3B1F;
--white: #F0EDE5;
--gray: #7a7670;
--green: #7FFF00;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg); color: var(--white);
font-family: 'IBM Plex Mono', monospace; font-size: 15px;
line-height: 1.65; overflow-x: hidden;
}
body::after {
content: ''; position: fixed; inset: 0; pointer-events: none;
z-index: 9000; opacity: 0.035;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
mix-blend-mode: overlay;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--yellow); }
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
/* ── Ticker ── */
.ticker {
background: var(--yellow); color: var(--bg); padding: 7px 0;
overflow: hidden; white-space: nowrap;
font-family: 'Press Start 2P', monospace; font-size: 8px;
letter-spacing: 0.04em; border-bottom: 3px solid var(--bg);
position: relative; z-index: 200;
}
.ticker-inner { display: inline-block; animation: tickerScroll 60s linear infinite; }
.ticker-inner span { margin: 0 36px; }
.ticker-inner span::before { content: '▶ '; }
@keyframes tickerScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }
/* ── Navigation ── */
nav {
position: sticky; top: 0; z-index: 100; background: var(--bg);
border-bottom: 3px solid var(--yellow); padding: 0 2rem;
display: flex; align-items: center; justify-content: space-between; height: 58px;
}
.nav-logo {
font-family: 'Press Start 2P', monospace; font-size: 12px; color: var(--yellow);
cursor: pointer; user-select: none; letter-spacing: 0.06em;
text-decoration: none; transition: color 0.1s;
}
.nav-logo:hover { color: var(--white); text-decoration: none; }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--white);
text-transform: uppercase; letter-spacing: 0.1em;
text-decoration: none; padding: 5px 11px; border: 2px solid transparent; transition: all 0.1s;
}
.nav-links a:hover { border-color: var(--yellow); color: var(--yellow); text-decoration: none; }
.nav-links a.active { border-color: var(--yellow); color: var(--yellow); }
/* ── Utility ── */
.page-wrap { border-top: 3px solid var(--border); }
section { padding: 5rem 2rem; max-width: 1120px; margin: 0 auto; }
.sec-label {
font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--yellow);
text-transform: uppercase; letter-spacing: 0.35em;
border-left: 4px solid var(--yellow); padding-left: 10px;
margin-bottom: 0.6rem; display: block;
}
.sec-title {
font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 9vw, 6rem);
color: var(--white); line-height: 0.9; margin-bottom: 2.5rem;
}
.btn {
display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 11px;
font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 11px 22px;
border: 3px solid var(--yellow); color: var(--bg); background: var(--yellow);
cursor: pointer; text-decoration: none; transition: all 0.1s; white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--yellow); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--yellow); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); box-shadow: 4px 4px 0 var(--white); }
.btn-red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-red:hover { background: transparent; color: var(--red); box-shadow: 4px 4px 0 var(--red); }
.btn-sm { font-size: 9px; padding: 7px 13px; }
/* ── Breadcrumb ── */
.breadcrumb {
font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gray);
text-transform: uppercase; letter-spacing: 0.15em;
margin-bottom: 2rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--yellow); text-decoration: none; }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--yellow); }
/* ── Badges ── */
.badge { font-family: 'Press Start 2P', monospace; font-size: 6.5px; padding: 4px 7px; letter-spacing: 0.04em; white-space: nowrap; display: inline-block; }
.b-ver { background: var(--yellow); color: var(--bg); }
.b-wip { background: var(--red); color: #fff; }
.b-stable{ background: var(--green); color: var(--bg); }
.b-lib { border: 2px solid var(--gray); color: var(--gray); }
.b-rc { border: 2px solid var(--red); color: var(--red); }
/* ── Hero ── */
#hero {
min-height: calc(100vh - 90px); display: flex; flex-direction: column;
justify-content: center; padding: 4rem 2rem 5rem;
max-width: 100%; position: relative; overflow: hidden;
}
#hero::before {
content: ''; position: absolute; inset: 0;
background-image: linear-gradient(var(--surface) 1px, transparent 1px), linear-gradient(90deg, var(--surface) 1px, transparent 1px);
background-size: 48px 48px; opacity: 0.6;
}
.hero-inner { max-width: 1120px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-eyebrow { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--yellow); letter-spacing: 0.3em; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.7s ease forwards 0.15s; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(6rem, 16vw, 14rem); line-height: 0.86; color: var(--white); opacity: 0; animation: fadeUp 0.7s ease forwards 0.35s; }
.hero-title .c-yellow { color: var(--yellow); }
.hero-title .c-red { color: var(--red); }
.hero-sub { font-size: 13px; color: var(--gray); max-width: 520px; margin: 1.5rem 0 2.5rem; line-height: 1.8; opacity: 0; animation: fadeUp 0.7s ease forwards 0.55s; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s ease forwards 0.75s; }
.hero-bg-text { position: absolute; right: -1%; bottom: -8%; font-family: 'Bebas Neue', sans-serif; font-size: clamp(14rem, 36vw, 30rem); color: var(--surface); line-height: 1; user-select: none; pointer-events: none; z-index: 0; letter-spacing: -0.05em; }
.hero-shaft { position: absolute; right: 180px; top: 0; bottom: 0; width: 3px; background: repeating-linear-gradient(to bottom, var(--border) 0px, var(--border) 12px, transparent 12px, transparent 20px); opacity: 0.5; }
.climber { position: absolute; right: 120px; top: 38%; transform: translateY(-50%); opacity: 0; animation: fadeIn 1s ease forwards 1.2s, climberBob 3s ease-in-out infinite 2.2s; }
/* ── Mods ── */
.mods-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; background: var(--border); border: 3px solid var(--border); }
.mod-card { background: var(--surface); padding: 1.75rem; border: 2px solid var(--border); border-bottom: 4px solid var(--border); transition: all 0.12s; cursor: default; }
.mod-card:hover { border-color: var(--yellow); border-bottom-color: var(--yellow); background: var(--surface2); }
.mod-card.mod-wip { border-bottom-color: var(--red); }
.mod-card.mod-wip:hover { border-color: var(--red); }
.mod-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.mod-name { font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; line-height: 1; color: var(--white); }
.badges { display: flex; gap: 5px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
.mod-desc { font-size: 12.5px; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.75; }
.mod-links { display: flex; gap: 7px; flex-wrap: wrap; }
.mod-link { font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 11px; border: 2px solid var(--border); color: var(--gray); text-decoration: none; transition: all 0.1s; }
.mod-link:hover { border-color: var(--yellow); color: var(--yellow); text-decoration: none; }
.mod-link.hl { border-color: var(--yellow); color: var(--yellow); }
.mod-link.hl-red { border-color: var(--red); color: var(--red); }
.mod-link.disabled{ opacity: 0.35; pointer-events: none; }
/* ── Roadmap ── */
.roadmap-wrap { position: relative; }
.rm-line { position: absolute; left: 22px; top: 8px; bottom: 8px; width: 3px; background: var(--border); }
.rm-line-fill { position: absolute; top: 0; left: 0; width: 100%; height: 55%; background: var(--yellow); }
.rm-phases { padding-left: 68px; display: flex; flex-direction: column; gap: 2.5rem; }
.rm-phase-title { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--yellow); letter-spacing: 0.18em; margin-bottom: 1rem; position: relative; }
.rm-phase-title::before { content: ''; position: absolute; left: -52px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; background: var(--yellow); border: 3px solid var(--bg); outline: 3px solid var(--yellow); }
.rm-phase-title.gray-dot::before { background: var(--border); outline-color: var(--border); }
.rm-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; }
.rm-card { background: var(--surface); border: 2px solid var(--border); padding: 1.2rem 1.25rem; transition: all 0.12s; }
.rm-card:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--border); }
.rm-card.done { border-color: var(--green); }
.rm-card.active { border-color: var(--yellow); }
.rm-card.planned { opacity: 0.65; }
.rm-status { font-family: 'Press Start 2P', monospace; font-size: 6.5px; padding: 3px 7px; display: inline-block; margin-bottom: 0.7rem; letter-spacing: 0.04em; }
.rm-card.done .rm-status { background: var(--green); color: var(--bg); }
.rm-card.active .rm-status { background: var(--yellow); color: var(--bg); }
.rm-card.planned .rm-status { border: 2px solid var(--gray); color: var(--gray); }
.rm-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; color: var(--white); margin-bottom: 0.3rem; }
.rm-card-desc { font-size: 12px; color: var(--gray); line-height: 1.65; }
/* ── Devlog list ── */
.devlog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 3px; background: var(--border); border: 3px solid var(--border); }
.devlog-card { background: var(--surface); padding: 1.75rem; border: 2px solid var(--border); border-bottom: 4px solid var(--yellow); transition: all 0.12s; text-decoration: none; display: block; cursor: pointer; }
.devlog-card:hover { border-color: var(--yellow); background: var(--surface2); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--yellow); text-decoration: none; }
.devlog-card:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--yellow); }
.devlog-num { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--yellow); letter-spacing: 0.12em; margin-bottom: 0.6rem; }
.devlog-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--white); line-height: 1.05; margin-bottom: 0.6rem; }
.devlog-excerpt { font-size: 12px; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.devlog-meta { font-size: 10px; color: var(--gray); display: flex; gap: 1rem; flex-wrap: wrap; }
.devlog-meta strong { color: var(--white); }
/* ── Devlog article ── */
.article-wrap { max-width: 760px; }
.article-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,8vw,5rem); color: var(--white); line-height: 0.95; margin-bottom: 1rem; }
.article-byline { font-size: 11px; color: var(--gray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0.75rem 0; margin-bottom: 2rem; display: flex; gap: 2rem; flex-wrap: wrap; }
.article-byline strong { color: var(--white); }
.article-body { font-size: 14px; color: var(--gray); line-height: 1.9; }
.article-body p { margin-bottom: 1.25rem; }
.article-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); margin: 2.5rem 0 0.75rem; }
.article-body h3 { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.15em; margin: 1.75rem 0 0.5rem; }
.article-body code { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; background: var(--surface2); color: var(--yellow); padding: 2px 6px; border: 1px solid var(--border); }
.article-body pre { background: var(--surface2); border: 2px solid var(--border); border-left: 4px solid var(--yellow); padding: 1.25rem; margin: 1.25rem 0; overflow-x: auto; }
.article-body pre code { background: none; border: none; padding: 0; color: var(--white); font-size: 12.5px; }
.article-body blockquote { border-left: 4px solid var(--yellow); padding: 0.75rem 1.25rem; margin: 1.25rem 0; background: var(--surface); color: var(--white); font-style: italic; }
.article-nav { display: flex; gap: 0.75rem; margin-top: 3rem; padding-top: 2rem; border-top: 3px solid var(--border); flex-wrap: wrap; }
/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--border); border: 3px solid var(--border); }
.team-card { background: var(--surface); padding: 2.5rem 1.5rem; text-align: center; border: 2px solid transparent; transition: all 0.12s; }
.team-card:hover { border-color: var(--yellow); background: var(--surface2); }
.team-avatar { width: 76px; height: 76px; margin: 0 auto 1.25rem; background: var(--surface2); border: 3px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; position: relative; overflow: hidden; }
.team-avatar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,225,53,0.08) 0%, transparent 60%); }
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--yellow); line-height: 1; margin-bottom: 0.3rem; }
.team-role { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.team-pronouns { font-family: 'Press Start 2P', monospace; font-size: 6px; color: var(--border); letter-spacing: 0.06em; transition: color 0.1s; }
.team-card:hover .team-pronouns { color: var(--gray); }
/* ── Changelog hub ── */
.cl-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 3px; background: var(--border); border: 3px solid var(--border); }
.cl-hub-card { background: var(--surface); padding: 1.75rem; border: 2px solid var(--border); border-bottom: 4px solid var(--yellow); transition: all 0.12s; display: block; text-decoration: none; cursor: pointer; }
.cl-hub-card:hover { border-color: var(--yellow); background: var(--surface2); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--yellow); text-decoration: none; }
.cl-hub-card:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--yellow); }
.cl-hub-card.wip { border-bottom-color: var(--red); }
.cl-hub-card.wip:hover { border-color: var(--red); box-shadow: 4px 4px 0 var(--red); }
.cl-hub-name { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); margin-bottom: 0.5rem; }
.cl-hub-desc { font-size: 12px; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.cl-hub-latest { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--gray); }
.cl-hub-latest span { color: var(--yellow); }
.cl-hub-card.wip .cl-hub-name { color: var(--red); }
/* ── Changelog entries ── */
.cl-list { display: flex; flex-direction: column; gap: 3px; }
.cl-entry { background: var(--surface); border: 2px solid var(--border); }
.cl-entry.open { border-color: var(--yellow); }
.cl-header { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.4rem; cursor: pointer; user-select: none; transition: background 0.1s; border-bottom: 2px solid transparent; flex-wrap: wrap; }
.cl-entry.open .cl-header { background: var(--surface2); border-bottom-color: var(--border); }
.cl-header:hover { background: var(--surface2); }
.cl-version { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--yellow); white-space: nowrap; }
.cl-tag { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
.cl-date { font-size: 11px; color: var(--gray); margin-left: auto; white-space: nowrap; }
.cl-caret { font-size: 10px; color: var(--border); transition: transform 0.2s; flex-shrink: 0; }
.cl-entry.open .cl-caret { transform: rotate(180deg); color: var(--yellow); }
.cl-body { display: none; padding: 1.1rem 1.4rem; }
.cl-entry.open .cl-body { display: block; }
.cl-items { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.cl-items li { font-size: 12.5px; color: var(--gray); padding-left: 1.4rem; position: relative; line-height: 1.6; }
.cl-items li::before { position: absolute; left: 0; font-weight: 700; font-family: 'IBM Plex Mono', monospace; }
.cl-items li.add::before { content: '+'; color: var(--green); }
.cl-items li.fix::before { content: '~'; color: var(--yellow); }
.cl-items li.remove::before { content: '−'; color: var(--red); }
/* ── Contact ── */
.discord-box { background: var(--surface); border: 3px solid var(--border); box-shadow: 8px 8px 0 var(--yellow); padding: 3rem 2.5rem; max-width: 580px; width: 100%; margin: 0 auto 2rem; transition: box-shadow 0.15s; text-align: center; }
.discord-box:hover { box-shadow: 12px 12px 0 var(--yellow); }
.discord-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.discord-title { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--white); margin-bottom: 0.75rem; }
.discord-sub { font-size: 13px; color: var(--gray); margin-bottom: 2rem; line-height: 1.7; }
.extra-links { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
/* ── Footer ── */
footer { border-top: 3px solid var(--border); padding: 1.5rem 2rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 11px; color: var(--gray); }
.footer-logo { font-family: 'Press Start 2P', monospace; font-size: 9px; color: var(--yellow); }
.secret-px { display: inline-block; width: 8px; height: 8px; background: var(--surface2); cursor: pointer; transition: background 0.1s; }
.secret-px:hover { background: var(--yellow); }
/* ── Konami overlay ── */
.konami-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.konami-bg.show { opacity: 1; pointer-events: all; }
.konami-box { background: var(--bg); border: 3px solid var(--yellow); box-shadow: 8px 8px 0 var(--yellow); padding: 3rem; max-width: 480px; text-align: center; }
.konami-title { font-family: 'Press Start 2P', monospace; font-size: 13px; color: var(--yellow); line-height: 2; margin-bottom: 1.5rem; }
.konami-msg { font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }
/* ── Keyframes ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(18px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0;} to{opacity:0.85;} }
@keyframes climberBob { 0%,100%{transform:translateY(-50%);} 50%{transform:translateY(calc(-50% - 8px));} }
/* ── Responsive ── */
/* ── Hamburger button ── */
.nav-burger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 36px; height: 36px;
background: none; border: 2px solid var(--border);
cursor: pointer; padding: 6px;
transition: border-color 0.1s;
flex-shrink: 0;
}
.nav-burger:hover { border-color: var(--yellow); }
.nav-burger span {
display: block; width: 100%; height: 2px;
background: var(--white); transition: all 0.2s;
}
/* X state */
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
.mods-grid { grid-template-columns: 1fr; }
.team-grid { grid-template-columns: 1fr; }
.hero-bg-text, .climber, .hero-shaft { display: none; }
section { padding: 3.5rem 1.25rem; }
.nav-burger { display: flex; }
.nav-links {
display: none;
position: absolute;
top: 58px; left: 0; right: 0;
background: var(--bg);
border-bottom: 3px solid var(--yellow);
flex-direction: column;
gap: 0; z-index: 99;
}
.nav-links.open { display: flex; }
.nav-links a {
padding: 14px 2rem;
border: none;
border-bottom: 1px solid var(--border);
font-size: 12px;
}
.nav-links a:last-child { border-bottom: none; }
nav { position: sticky; } /* ensure dropdown is relative to nav */
}
@media (max-width: 560px) {
.rm-cards, .devlog-grid, .cl-hub-grid { grid-template-columns: 1fr; }
}