251 lines
8.8 KiB
HTML
251 lines
8.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Colony Sprint Schedule | Alexander West</title>
|
|
<style>
|
|
:root {
|
|
--primary: #1a1a2e;
|
|
--accent: #e94560;
|
|
--text: #f0f0f0;
|
|
--card: #16213e;
|
|
--highlight: #0f3460;
|
|
}
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: var(--primary);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.container {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 3rem 1.5rem;
|
|
}
|
|
h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 900;
|
|
letter-spacing: -0.05em;
|
|
margin-bottom: 1.5rem;
|
|
background: linear-gradient(90deg, var(--accent), #ff6b6b);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
h2 {
|
|
font-size: 2rem;
|
|
color: var(--accent);
|
|
margin-top: 3rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.schedule-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin: 2rem 0;
|
|
}
|
|
.day-card {
|
|
background: var(--card);
|
|
border: 1px solid var(--highlight);
|
|
border-radius: 16px;
|
|
padding: 2rem;
|
|
box-shadow: 0 8px 24px rgba(0,0,0,0.3);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
.day-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 12px 32px rgba(233, 69, 96, 0.2);
|
|
}
|
|
.day-card h3 {
|
|
font-size: 1.75rem;
|
|
color: var(--accent);
|
|
margin-bottom: 1.5rem;
|
|
border-bottom: 2px solid var(--highlight);
|
|
padding-bottom: 0.75rem;
|
|
}
|
|
.drill {
|
|
background: var(--highlight);
|
|
padding: 1.25rem;
|
|
border-radius: 12px;
|
|
margin-bottom: 1.25rem;
|
|
border-left: 4px solid var(--accent);
|
|
}
|
|
.drill h4 {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.75rem;
|
|
color: #fff;
|
|
}
|
|
.drill p {
|
|
font-size: 1.05rem;
|
|
line-height: 1.7;
|
|
margin: 0;
|
|
}
|
|
.metric {
|
|
font-size: 0.95rem;
|
|
color: #bbb;
|
|
font-style: italic;
|
|
margin-top: 0.75rem;
|
|
}
|
|
.leaderboard {
|
|
background: var(--card);
|
|
border-radius: 16px;
|
|
padding: 2.5rem;
|
|
margin: 3rem 0;
|
|
border: 1px solid var(--highlight);
|
|
}
|
|
.leaderboard h2 {
|
|
margin-top: 0;
|
|
}
|
|
.rank-entry {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1.5rem;
|
|
border-bottom: 1px solid var(--highlight);
|
|
transition: background 0.3s ease;
|
|
}
|
|
.rank-entry:hover {
|
|
background: var(--highlight);
|
|
}
|
|
.rank-entry:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.rank-number {
|
|
font-size: 2.5rem;
|
|
font-weight: 900;
|
|
color: var(--accent);
|
|
min-width: 100px;
|
|
}
|
|
.athlete-name {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
flex: 1;
|
|
padding: 0 2rem;
|
|
}
|
|
.time {
|
|
font-size: 1.75rem;
|
|
font-weight: 800;
|
|
color: #fff;
|
|
background: var(--accent);
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 8px;
|
|
min-width: 180px;
|
|
text-align: center;
|
|
}
|
|
.cta {
|
|
text-align: center;
|
|
margin: 4rem 0;
|
|
}
|
|
.cta a {
|
|
background: var(--accent);
|
|
color: #fff;
|
|
padding: 1.25rem 3rem;
|
|
border-radius: 50px;
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
box-shadow: 0 8px 24px rgba(233, 69, 96, 0.4);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
.cta a:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 12px 32px rgba(233, 69, 96, 0.6);
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
padding: 3rem 0;
|
|
color: #aaa;
|
|
font-size: 1.1rem;
|
|
}
|
|
@media (max-width: 768px) {
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
.day-card {
|
|
padding: 1.5rem;
|
|
}
|
|
.rank-entry {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
text-align: center;
|
|
}
|
|
.athlete-name {
|
|
padding: 0;
|
|
}
|
|
.time {
|
|
min-width: auto;
|
|
}
|
|
}
|
|
</style>
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Colony Sprint Schedule</h1>
|
|
<p style="font-size: 1.3rem; line-height: 1.8; margin-bottom: 3rem;">
|
|
Every great champion knows: victory is won in the details. Our colony's training regimen is built on precision, discipline, and the relentless pursuit of excellence.
|
|
From dawn drills to sunset recovery, every second counts. This is where champions are made.
|
|
</p>
|
|
|
|
<h2>Weekly Training Cycle</h2>
|
|
<div class="schedule-grid">
|
|
<div class="day-card">
|
|
<h3>Monday: Foundation Day</h3>
|
|
<div class="drill">
|
|
<h4>5:00 AM — Core Activation</h4>
|
|
<p>Full-body planks, leg raises, and rotational twists. Build the foundation that supports every sprint.</p>
|
|
<div class="metric">Target: 12 minutes of sustained core engagement</div>
|
|
</div>
|
|
<div class="drill">
|
|
<h4>7:30 AM — Interval Sprints</h4>
|
|
<p>400m repeats with 90-second recovery. Push the pace, then breathe through the burn.</p>
|
|
<div class="metric">Target: 55-second split times</div>
|
|
</div>
|
|
<div class="drill">
|
|
<h4>12:00 PM — Mobility & Flexibility</h4>
|
|
<p>Yoga flow focusing on hip openers and hamstring stretches. A supple body is a fast body.</p>
|
|
<div class="metric">Target: 45 minutes of active stretching</div>
|
|
</div>
|
|
<div class="drill">
|
|
<h4>5:30 PM — Strength Circuit</h4>
|
|
<p>Box jumps, battle ropes, and weighted lunges. Build the explosive power that wins races.</p>
|
|
<div class="metric">Target: 4 rounds, 10 reps each</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="day-card">
|
|
<h3>Wednesday: Speed Day</h3>
|
|
<div class="drill">
|
|
<h4>5:30 AM — Tempo Runs</h4>
|
|
<p>3-mile steady-state run at 90% max heart rate. Build that aerobic engine.</p>
|
|
<div class="metric">Target: 13:30 finish time</div>
|
|
</div>
|
|
<div class="drill">
|
|
<h4>8:00 AM — Hill Sprints</h4>
|
|
<p>12 uphill sprints with walk-back recovery. Power and endurance in every stride.</p>
|
|
<div class="metric">Target: 15-second uphill bursts</div>
|
|
</div>
|
|
<div class="drill">
|
|
<h4>1:00 PM — Plyometrics</h4>
|
|
<p>Depth jumps, bounding, and box hops. Explosive power for that final kick.</p>
|
|
<div class="metric">Target: 6 sets, 8 reps each</div>
|
|
</div>
|
|
<div class="drill">
|
|
<h4>6:00 PM — Technique Drills</h4>
|
|
<p>A-skips, high knees, and form runs. Perfect the mechanics that shave off hundredths.</p>
|
|
<div class="metric">Target: 30 minutes of focused form work</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="day-card">
|
|
<h3>Friday: Competition Prep</h3>
|
|
<div class="drill">
|
|
<h4>6:00 AM — Race Pace Intervals</h4>
|
|
<p>8 x 200m at race pace with 2-minute recovery. Dial in that competition rhythm.</p>
|
|
<div class="metric">Target: 28-second splits</div>
|
|
</div>
|
|
<div class="drill">
|
|
<h4>9:00 AM — Mental Visualization</h |