<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Proven Basics</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #0a0a0a;
color: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 2rem;
}
.container { max-width: 480px; }
.brand {
font-size: 2.8rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 1rem;
}
.divider {
width: 40px;
height: 2px;
background: #ffffff;
margin: 0 auto 1.5rem;
}
.tagline {
font-size: 1rem;
color: #999999;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 0.75rem;
}
.desc {
font-size: 0.95rem;
color: #666666;
line-height: 1.7;
margin-bottom: 2.5rem;
}
.coming {
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #444444;
margin-bottom: 2rem;
}
.btn {
display: inline-block;
padding: 14px 36px;
border: 1.5px solid #ffffff;
color: #ffffff;
text-decoration: none;
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
transition: all 0.2s;
}
.btn:hover {
background: #ffffff;
color: #0a0a0a;
}
</style>
</head>
<body>
<div class="container">
<div class="brand">Proven Basics</div>
<div class="divider"></div>
<p class="tagline">Premium Heavyweight Essentials</p>
<p class="desc">Authentic Pro Club heavyweight tees in white and black.<br>Ships same day from Southern California.</p>
<p class="coming">— Coming Soon —</p>
<a class="btn" href="YOUR_EBAY_STORE_URL_HERE" target="_blank">Shop on eBay</a>
</div>
</body>
</html>