-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsector2.html
More file actions
115 lines (91 loc) · 3.72 KB
/
sector2.html
File metadata and controls
115 lines (91 loc) · 3.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SKY BARRACKS - Sector 02</title>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/sector.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800;900&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<style>
.hero-center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<header class="header">
<div class="container">
<h1 class="logo">KARNAGE</h1>
<nav class="nav">
<a href="home.html">Home</a>
<a href="home.html#section-highlights">Sectors</a>
<!-- <a href="#">Contact</a> -->
</nav>
</div>
</header>
<section class="hero">
<video class="hero-video" autoplay loop muted playsinline>
<source src="/assets/videos/barracks.mp4" type="video/mp4">
</video>
<div class="hero-fade"></div>
<div class="hero-overlay-dark"></div>
<div class="hero-overlay-full"></div>
<div class="hero-center">
<h1 class="hero-title">SKY BARRACKS</h1>
<p class="hero-tagline">/ / SECTOR 02</p>
<a href="#highlights" class="hero-button">ENTER SECTOR</a>
</div>
</section>
<section class="intel-section" id="highlights">
<h2 class="intel-title">SECTOR SYSTEMS</h2>
<div class="intel-divider"></div>
<p class="intel-subtext">
Every layer of the Megacity has its own war.
</p>
<div class="cards-row">
<div class="card">
<p class="card-sector">// DISTRICTS</p>
<h3 class="card-heading">URBAN<br>LAYERS</h3>
<p class="card-text">
Wealth, danger, surveillance and access rights shift as you ascend or fall through the city.
</p>
<p class="card-threat">THREAT LEVEL: MEDIUM</p>
</div>
<div class="card">
<p class="card-sector">// FACTIONS</p>
<h3 class="card-heading">POWER<br>STRUCTURES</h3>
<p class="card-text">
Megacorps, data gangs, rooftop militias and AI brokers fight for dominance.
</p>
<p class="card-threat">THREAT LEVEL: HIGH</p>
</div>
<div class="card">
<p class="card-sector">// HAZARDS</p>
<h3 class="card-heading">CITY<br>THREATS</h3>
<p class="card-text">
Neon fog, corrupted drones, blackout storms and rogue signals that rewrite tech on contact.
</p>
<p class="card-threat">THREAT LEVEL: EXTREME</p>
</div>
</div>
</section>
<section class="section-heroes">
<h2 class="heroes-title">NO HEROES.<br>ONLY SURVIVORS.</h2>
<div class="heroes-divider"></div>
<p class="heroes-text">
Light bends around steel canyons. Traffic streams pulse like arteries.<br>
Every tower houses a thousand secrets and a thousand watchers.<br>
Down below, machinery groans while the skyline burns neon.<br><br>
In the Megacity, survival is a shifting algorithm.
</p>
</section>
<footer class="footer">
<p>© 2025 Karnage. All rights reserved.</p>
</footer>
</body>
</html>