<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LostPokeCenter | Premium Pokemon TCG</title>
<style>
:root {
--primary: #ffcb05; /* Pokemon Yellow /
--secondary: #2a75bb; / Pokemon Blue */
--dark: #1a1a1a;
--light: #f4f4f4;
}
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; background: var(--light); color: var(--dark); }
/* Header & Nav */
header { background: var(--dark); color: white; padding: 2rem 1rem; text-align: center; border-bottom: 5px solid var(--primary); }
nav { display: flex; justify-content: center; gap: 20px; background: #222; padding: 10px; }
nav a { color: var(--primary); text-decoration: none; font-weight: bold; font-size: 0.9rem; text-transform: uppercase; }
/* Social Links Section */
.socials { display: flex; justify-content: center; gap: 15px; margin-top: 15px; }
.social-btn { padding: 8px 16px; border-radius: 5px; text-decoration: none; color: white; font-size: 0.8rem; font-weight: bold; }
.tiktok { background: #000; }
.whatnot { background: #ff4500; }
.youtube { background: #ff0000; }
/* Product Grid */
.container { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: white; padding: 15px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.card img { max-width: 100%; border-radius: 5px; }
.card h3 { margin: 15px 0 5px; font-size: 1.2rem; }
.card p { color: #666; font-size: 1rem; margin-bottom: 15px; }
/* Buy Button */
.buy-btn { background: var(--secondary); color: white; padding: 10px 20px; border: none; border-radius: 5px; text-decoration: none; display: inline-block; font-weight: bold; }
.buy-btn:hover { background: #1e568b; }
footer { text-align: center; padding: 40px; color: #888; font-size: 0.8rem; }
</style>
</head>
<body>
<header>
<h1>LOST POKE CENTER</h1>
<p>Modern & Vintage Pokemon TCG Specialist</p>
<div class="socials">
<a href="https://www.tiktok.com/@YOUR_USERNAME" class="social-btn tiktok">TikTok</a>
<a href="https://www.whatnot.com/user/YOUR_USERNAME" class="social-btn whatnot">Whatnot</a>
<a href="https://www.youtube.com/@YOUR_USERNAME" class="social-btn youtube">YouTube</a>
</div>
</header>
<nav>
<a href="#">Home</a>
<a href="#shop">Shop Slabs</a>
<a href="mailto:contact@lostpokecenter.com">Contact</a>
</nav>
<div class="container" id="shop">
<div class="grid">
<!-- Card 1 -->
<div class="card">
<img src="https://via.placeholder.com/200x280?text=Charizard+Slab" alt="Pokemon Card">
<h3>Charizard Base Set</h3>
<p>PSA 8 - Near Mint</p>
<a href="YOUR_STRIPE_LINK_HERE" class="buy-btn">Buy Now - $`450</a>
</div>
<!-- Card 2 -->
<div class="card">
<img src="https://via.placeholder.com/200x280?text=Pikachu+Slab" alt="Pokemon Card">
<h3>Pikachu Illustrator</h3>
<p>CGC 9 - Mint</p>
<a href="YOUR_STRIPE_LINK_HERE" class="buy-btn">Buy Now - `$125</a>
</div>
<!-- Card 3 -->
<div class="card">
<img src="https://via.placeholder.com/200x280?text=Sealed+Booster" alt="Pokemon Card">
<h3>Silver Tempest Box</h3>
<p>Factory Sealed</p>
<a href="YOUR_STRIPE_LINK_HERE" class="buy-btn">Buy Now - $110</a>
</div>
</div>
</div>
<footer>
© 2026 LostPokeCenter LLC. All rights reserved. <br>
Veteran Owned & Operated.
</footer>
</body>
</html>