<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Camp Tashbar Productions</title>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0f172a; color: #f8fafc; display: flex; align-items: center; justify-content: center; min-height: 100vh; margin: 0; padding: 20px; }
.card { background: #1e293b; border-radius: 12px; max-width: 540px; width: 100%; padding: 32px; box-shadow: 0 10px 25px rgba(0,0,0,0.5); text-align: center; }
h1 { font-size: 28px; margin-bottom: 12px; }
p { color: #94a3b8; line-height: 1.6; margin-bottom: 24px; }
.price { font-size: 32px; font-weight: bold; color: #38bdf8; margin-bottom: 24px; }
.btn { display: inline-block; background: #2563eb; color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 18px; transition: background 0.2s; }
.btn:hover { background: #1d4ed8; }
</style>
</head>
<body>
<div class="card">
<h1>Hakol Milemala Music Video</h1>
<p>Watch the full video in high definition. One-time purchase grants instant access on any device.</p>
<div class="price">$15.00</div>
<!-- Replace this with your Stripe test payment link -->
<a href="https://buy.stripe.com/test_..." class="btn">Buy Video Access</a>
</div>
</body>
</html>