-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
417 lines (371 loc) · 16 KB
/
index.html
File metadata and controls
417 lines (371 loc) · 16 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>O Profeta do Arthur - Edição Especial</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Plus+Jakarta+Sans:wght@400;600;700;800&family=UnifrakturMaguntia&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
:root {
--parchment: #f4e4bc;
--slytherin: #2e7d32;
--hufflepuff: #fbc02d;
--magic-gold: #d4af37;
--ink: #1a1c2c;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background-color: #1a1c2c;
background-image: radial-gradient(circle at 50% 50%, #2a2d3e 0%, #1a1c2c 100%);
font-family: 'Plus Jakarta Sans', sans-serif;
color: var(--ink);
display: flex;
justify-content: center;
padding: 20px;
min-height: 100vh;
}
/* PERGAMINHO PRINCIPAL */
.paper {
background-color: var(--parchment);
background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
max-width: 900px;
width: 100%;
padding: 40px;
border: 2px solid var(--magic-gold);
box-shadow: 0 0 50px rgba(0,0,0,0.8), inset 0 0 100px rgba(212, 175, 55, 0.1);
position: relative;
border-radius: 4px;
}
.paper::before, .paper::after {
content: "";
position: absolute;
top: 10px; bottom: 10px; left: 10px; right: 10px;
border: 1px solid var(--magic-gold);
pointer-events: none;
opacity: 0.3;
}
/* CABEÇALHO PROFETA DIÁRIO */
header {
text-align: center;
border-bottom: 5px double var(--ink);
padding-bottom: 20px;
margin-bottom: 30px;
}
.prophet-title {
font-family: 'Cinzel', serif;
font-size: clamp(2rem, 8vw, 4rem);
font-weight: 900;
letter-spacing: -2px;
line-height: 0.9;
margin-bottom: 10px;
}
.sub-header {
display: flex;
justify-content: space-between;
align-items: center;
border-top: 2px solid var(--ink);
border-bottom: 2px solid var(--ink);
padding: 5px 0;
font-size: 10px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
}
/* SEÇÃO HISTÓRIA */
.story-section {
display: grid;
grid-template-columns: 1fr 250px;
gap: 30px;
margin-bottom: 40px;
}
@media (max-width: 768px) {
.story-section { grid-template-columns: 1fr; }
}
.dropcap {
float: left;
font-family: 'UnifrakturMaguntia', cursive;
font-size: 70px;
line-height: 60px;
padding-top: 4px;
padding-right: 8px;
color: var(--slytherin);
}
.story-content {
text-align: justify;
font-style: italic;
line-height: 1.6;
font-size: 16px;
}
.portrait {
border: 10px solid #fff;
box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
transform: rotate(2deg);
background: #ddd;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.portrait i { font-size: 80px; color: var(--magic-gold); filter: drop-shadow(0 0 10px rgba(0,0,0,0.1)); }
/* CONTADOR EM TEMPO REAL */
.magic-counter {
background: rgba(26, 28, 44, 0.05);
border: 2px dashed var(--magic-gold);
padding: 30px;
border-radius: 20px;
text-align: center;
margin-bottom: 40px;
}
.weeks-display {
font-family: 'Cinzel', serif;
font-size: 80px;
font-weight: 900;
color: var(--ink);
display: block;
line-height: 1;
}
.time-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
margin-top: 20px;
}
.time-unit {
background: white;
padding: 10px;
border-radius: 12px;
box-shadow: 0 4px 0 var(--magic-gold);
}
.time-unit span { display: block; font-weight: 900; font-size: 20px; }
.time-unit label { font-size: 9px; text-transform: uppercase; font-weight: 700; opacity: 0.6; }
/* TABS */
.tabs {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
.tab-btn {
background: none;
border: 1px solid var(--ink);
padding: 10px 20px;
font-family: 'Cinzel', serif;
font-weight: 700;
cursor: pointer;
transition: all 0.3s;
text-transform: uppercase;
font-size: 12px;
}
.tab-btn.active {
background: var(--ink);
color: var(--parchment);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* LISTAS MÁGICAS */
.magic-list { list-style: none; }
.magic-item {
padding: 15px;
border-bottom: 1px solid rgba(0,0,0,0.1);
display: flex;
gap: 15px;
align-items: center;
}
.magic-item.applied { opacity: 0.6; }
.magic-item.applied .icon-box { background: var(--slytherin); color: white; }
.icon-box {
width: 40px;
height: 40px;
border-radius: 10px;
background: var(--hufflepuff);
display: flex;
align-items: center;
justify-content: center;
shrink: 0;
}
.badge-house {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 10px;
font-weight: 800;
color: white;
margin-right: 5px;
}
/* FOOTER */
footer {
margin-top: 50px;
text-align: center;
border-top: 1px solid var(--ink);
padding-top: 20px;
font-size: 12px;
font-weight: 700;
}
.mantra {
font-family: 'Cinzel', serif;
font-size: 20px;
color: var(--magic-gold);
text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
margin: 15px 0;
}
</style>
</head>
<body>
<div class="paper">
<header>
<div class="sub-header">
<span>Vol. I - Nº 01</span>
<span>Londres - Hogwarts - São Paulo</span>
<span>24 Dezembro 2025</span>
</div>
<h1 class="prophet-title">O PROFETA DO ARTHUR</h1>
<div class="sub-header" style="border-top: none;">
<span style="color: var(--slytherin)">🐍 Sangue de Sonserina</span>
<span style="color: var(--ink)">★ EDICÃO HISTÓRICA ★</span>
<span style="color: #9c7a10">🦡 Coração de Lufa-Lufa</span>
</div>
</header>
<section class="story-section">
<div>
<h2 style="font-family: 'Cinzel', serif; margin-bottom: 15px;">O Herdeiro da Meia-Noite Chegou!</h2>
<div class="story-content">
<span class="dropcap">D</span>iz a lenda que, quando os sinos de Hogwarts bateram às 21:05 naquela véspera de Natal, a neve parou de cair por um segundo. Nascia Arthur, o elo perdido. Portador do sangue astuto da Serpente e do coração leal do Texugo, sua chegada não foi apenas um nascimento, mas o início de uma nova era.
<br><br>
Um bruxo destinado a unir a ambição de conquistar o mundo com a bondade de protegê-lo. Enquanto o pai, mestre das masmorras e da infraestrutura (Sonserina), planeja a arquitetura do seu futuro, a mãe (Lufa-Lufa) garante que o caminho seja trilhado com lealdade e luz.
</div>
</div>
<div class="portrait">
<i class="fa-solid fa-hat-wizard"></i>
<div style="position: absolute; bottom: 10px; font-size: 10px; font-weight: 900; background: white; padding: 2px 10px;">PROCURADO: PARA AMAR</div>
</div>
</section>
<section class="magic-counter">
<h3 style="font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 3px; margin-bottom: 10px; color: var(--magic-gold);">UPTIME MÁGICO DO HERDEIRO</h3>
<span class="weeks-display" id="weeks-val">0</span>
<p style="font-family: 'Cinzel', serif; font-weight: 700; text-transform: uppercase; letter-spacing: 5px;">Semanas & <span id="days-val">0</span> Dias</p>
<div class="time-grid">
<div class="time-unit">
<span id="hours-val">00</span>
<label>Horas</label>
</div>
<div class="time-unit">
<span id="mins-val">00</span>
<label>Minutos</label>
</div>
<div class="time-unit">
<span id="secs-val">00</span>
<label>Segundos</label>
</div>
<div class="time-unit" style="box-shadow: 0 4px 0 var(--slytherin);">
<span id="total-days">0</span>
<label>Dias Totais</label>
</div>
</div>
</section>
<div class="tabs">
<button class="tab-btn active" onclick="openTab('roadmap')">Mapa do Maroto</button>
<button class="tab-btn" onclick="openTab('potions')">Livro de Poções</button>
</div>
<div id="roadmap" class="tab-content active">
<div class="magic-list">
<div class="magic-item applied">
<div class="icon-box"><i class="fa-solid fa-face-smile"></i></div>
<div>
<h4 style="font-size: 14px; font-weight: 800;">O Feitiço do Riso Social</h4>
<p style="font-size: 11px; font-style: italic;">A primeira interação mágica com o sistema. (4 Semanas)</p>
</div>
</div>
<div class="magic-item" id="milestone-8w">
<div class="icon-box"><i class="fa-solid fa-shield-halved"></i></div>
<div>
<h4 style="font-size: 14px; font-weight: 800;">Estabilidade de Hardware (Cabeça)</h4>
<p style="font-size: 11px; font-style: italic;">Arthur sustenta o próprio elmo como um batedor. (8 Semanas)</p>
</div>
</div>
<div class="magic-item">
<div class="icon-box"><i class="fa-solid fa-wand-sparkles"></i></div>
<div>
<h4 style="font-size: 14px; font-weight: 800;">Wingardium Leviosa</h4>
<p style="font-size: 11px; font-style: italic;">Capacidade de rolar e manipular objetos mágicos. (4 Meses)</p>
</div>
</div>
<div class="magic-item">
<div class="icon-box"><i class="fa-solid fa-utensils"></i></div>
<div>
<h4 style="font-size: 14px; font-weight: 800;">O Banquete no Salão Comunal</h4>
<p style="font-size: 11px; font-style: italic;">Primeiras poções sólidas introduzidas no organismo. (6 Meses)</p>
</div>
</div>
</div>
</div>
<div id="potions" class="tab-content">
<div class="magic-list">
<div class="magic-item applied">
<div class="icon-box"><i class="fa-solid fa-flask"></i></div>
<div>
<h4 style="font-size: 14px; font-weight: 800;">Poções de Berço: BCG & Hep B</h4>
<p style="font-size: 11px; font-style: italic;">Defesas ancestrais aplicadas no nascimento. (Concluído)</p>
</div>
</div>
<div class="magic-item" id="vaccine-2m">
<div class="icon-box"><i class="fa-solid fa-vial"></i></div>
<div>
<h4 style="font-size: 14px; font-weight: 800;">O Ritual dos 2 Meses (Penta, VIP, Rota)</h4>
<p style="font-size: 11px; font-style: italic;">Update crítico de segurança vindo em Fevereiro/2026.</p>
</div>
</div>
<div class="magic-item">
<div class="icon-box"><i class="fa-solid fa-vial-virus"></i></div>
<div>
<h4 style="font-size: 14px; font-weight: 800;">Escudo de Salasar (Meningo C)</h4>
<p style="font-size: 11px; font-style: italic;">Firewall contra ameaças cerebrais. (3 Meses)</p>
</div>
</div>
</div>
</div>
<footer>
<p class="mantra">"INCENDEIE O SEU CORAÇÃO!" 🔥</p>
<p style="font-size: 10px; opacity: 0.7; font-weight: 400;">Dell: Do Parafuso ao Foguete. Arthur: Da Varinha às Estrelas.</p>
<div style="margin-top: 15px; font-weight: 900; letter-spacing: 2px;">MALFEITO FEITO.</div>
</footer>
</div>
<script>
const birthDate = new Date('2025-12-24T21:05:00');
function updateCounter() {
const now = new Date();
const diff = now - birthDate;
const totalSeconds = Math.floor(diff / 1000);
const totalMinutes = Math.floor(totalSeconds / 60);
const totalHours = Math.floor(totalMinutes / 60);
const totalDays = Math.floor(totalHours / 24);
const weeks = Math.floor(totalDays / 7);
const days = totalDays % 7;
const hours = totalHours % 24;
const minutes = totalMinutes % 60;
const seconds = totalSeconds % 60;
document.getElementById('weeks-val').innerText = weeks;
document.getElementById('days-val').innerText = days;
document.getElementById('hours-val').innerText = String(hours).padStart(2, '0');
document.getElementById('mins-val').innerText = String(minutes).padStart(2, '0');
document.getElementById('secs-val').innerText = String(seconds).padStart(2, '0');
document.getElementById('total-days').innerText = totalDays;
// Logica visual de status
if (weeks >= 8) document.getElementById('milestone-8w').classList.add('applied');
if (totalDays >= 60) document.getElementById('vaccine-2m').classList.add('applied');
}
function openTab(tabId) {
document.querySelectorAll('.tab-content').forEach(tab => tab.classList.remove('active'));
document.querySelectorAll('.tab-btn').forEach(btn => btn.classList.remove('active'));
document.getElementById(tabId).classList.add('active');
event.currentTarget.classList.add('active');
}
setInterval(updateCounter, 1000);
updateCounter();
</script>
</body>
</html>