<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Concert Archives</title>
<style>
:root {
--bg-color: #0f172a;
--card-bg: #1e293b;
--accent: #38bdf8;
--text-main: #f8fafc;
--text-dim: #94a3b8;
}
body {
font-family: 'Inter', system-ui, sans-serif;
background-color: var(--bg-color);
color: var(--text-main);
margin: 0;
padding: 40px 20px;
}
.container {
max-width: 1000px;
margin: 0 auto;
}
header {
text-align: center;
margin-bottom: 60px;
}
h1 { font-size: 3rem; margin-bottom: 10px; color: var(--accent); }
/* Gallery Sections */
.section-title {
border-left: 4px solid var(--accent);
padding-left: 15px;
margin: 40px 0 20px 0;
font-size: 1.5rem;
}
/* The Grid System */
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.video-card {
background: var(--card-bg);
border-radius: 12px;
overflow: hidden;
transition: transform 0.2s;
}
.video-card:hover { transform: translateY(-5px); }
video {
width: 100%;
display: block;
background: #000;
}
.video-info {
padding: 20px;
}
.video-info h3 { margin: 0 0 10px 0; font-size: 1.1rem; }
.video-info p {
margin: 0;
font-size: 0.9rem;
color: var(--text-dim);
line-height: 1.4;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Concert Archives</h1>
<p>Front row memories</p>
</header>
<h2 class="section-title">Jackie Venson January 2026 Antone’s Residency</h2>
<div class="video-grid">
<div class="video-card">
<video controls preload="metadata">
<source src="jan-10-2026-jackie-venson-antones-atx-1.mp4" type="video/mp4">
Your browser doesn't support this video.
</video>
<div class="video-info">
<h3>The Midnight Set</h3>
<p>Main stage performance under the stars. The energy was incredible during the final encore.</p>
</div>
</div>
<div class="video-card">
<video controls preload="metadata">
<source src="concert-clip-2.mov" type="video/quicktime">
<p>Sample Description: Acoustic session in the VIP lounge.</p>
</video>
<div class="video-info">
<h3>Acoustic Lounge</h3>
<p>A rare intimate performance of their hit single. Recorded from the 3rd row.</p>
</div>
</div>
</div>
<h2 class="section-title">Local Club Shows</h2>
<div class="video-grid">
<div class="video-card">
<video controls preload="metadata">
<source src="local-show.mov" type="video/quicktime">
</video>
<div class="video-info">
<h3>Underground Venue</h3>
<p>Testing the bass at the downtown basement show.</p>
</div>
</div>
</div>
</div>
</body>
</html>