-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (146 loc) · 5.82 KB
/
index.html
File metadata and controls
153 lines (146 loc) · 5.82 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VCT History Hub | Home</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=Bebas+Neue&family=Manrope:wght@400;600;700;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="background-grid"></div>
<header class="site-header">
<a class="brand" href="index.html">VCT HISTORY HUB</a>
<nav>
<a class="active" href="index.html">Home</a>
<a href="about.html">Timeline</a>
<a href="services.html">Events</a>
<a href="contact.html">Sources</a>
</nav>
<a class="header-cta" href="services.html">View Champions</a>
</header>
<main>
<section class="hero">
<article class="panel">
<p class="eyebrow">Valorant Champions Tour</p>
<h1>From Open Qualifiers to Global Dynasty Battles</h1>
<p class="lead">
This site documents the evolution of the Valorant Champions Tour from 2021 to the present era: format changes,
regional breakthroughs, landmark tournaments, and every world champion that shaped VCT history.
</p>
<div class="button-row">
<a class="button" href="about.html">Read Full Timeline</a>
<a class="button ghost" href="services.html">See Major Finals</a>
</div>
</article>
<aside class="callout">
<h2>Core Storylines</h2>
<ul>
<li>2021: Riot launches VCT with Challengers -> Masters -> Champions.</li>
<li>2023: Partner leagues (Americas, EMEA, Pacific) replace fully open top tier.</li>
<li>2024: China joins as a full international league and immediately wins Champions.</li>
<li>2025: New champions continue proving VCT has no permanent single-region ruler.</li>
</ul>
</aside>
</section>
<section class="kpi-grid">
<article class="stat">
<p class="kpi">5+</p>
<p>Completed VCT seasons since launch in 2021.</p>
</article>
<article class="stat">
<p class="kpi">4</p>
<p>Top-tier international leagues by 2024: Americas, EMEA, Pacific, China.</p>
</article>
<article class="stat">
<p class="kpi">Global</p>
<p>Champions now emerge from multiple regions, not one dominant ecosystem.</p>
</article>
</section>
<section>
<p class="eyebrow">Era Snapshot</p>
<h2>How Competitive Valorant Changed Year by Year</h2>
<div class="card-grid">
<article class="card">
<span class="tag">2021</span>
<h3>Inaugural Circuit</h3>
<p>
First full season establishes VCT structure. Sentinels dominate Reykjavik, Gambit wins Berlin, and Acend takes
the first Champions title.
</p>
</article>
<article class="card">
<span class="tag">2022</span>
<h3>Consolidation and Region Growth</h3>
<p>
Two Masters format creates tighter pacing. OpTic, FPX, and LOUD headline a year where APAC and Japan make major
strides.
</p>
</article>
<article class="card">
<span class="tag">2023</span>
<h3>Partnership Era Starts</h3>
<p>
Riot introduces partnered leagues and Ascension. Fnatic wins LOCK//IN and Tokyo, then Evil Geniuses shocks the
world at Champions.
</p>
</article>
<article class="card">
<span class="tag">2024</span>
<h3>China Arrives Fast</h3>
<p>
VCT China launches as a top league. EDward Gaming completes a rapid climb and secures China's first world
championship.
</p>
</article>
<article class="card">
<span class="tag">2025</span>
<h3>Fresh Winners, New Formats</h3>
<p>
Masters Bangkok crowns T1 for Korea/Pacific, while Champions Paris adds another underdog title run and extends
VCT parity.
</p>
</article>
<article class="card">
<span class="tag">2026+</span>
<h3>Continuous Iteration</h3>
<p>
Kickoff format adjustments and bracket experimentation continue, reinforcing VCT as an evolving, global esport
system.
</p>
</article>
</div>
</section>
<section class="quote-grid">
<article class="quote">
<h3>Biggest Upset Arc</h3>
<p class="muted">
KRU 2021, Evil Geniuses 2023, and later underdog runs proved VCT championships reward end-of-season peak form more
than early hype.
</p>
</article>
<article class="quote">
<h3>Most Historic Expansion</h3>
<p class="muted">
China went from invited participant in 2023 to integrated league and world champion by 2024, one of esports'
fastest regional climbs.
</p>
</article>
<article class="quote">
<h3>Why This Matters</h3>
<p class="muted">
VCT became a model for balancing long-term partnered stability with a promotion path through Challengers and
Ascension.
</p>
</article>
</section>
</main>
<footer>
<p>VCT History Hub</p>
<p>Coverage Window: 2021-Present</p>
<p>Built for long-form esports storytelling</p>
</footer>
</body>
</html>