<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VelvetPotPlay</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background-color: #121212;
color: white;
display: flex;
flex-direction: column;
align-items: center;
}
/* NAVBAR */
.navbar {
width: 100%;
height: 60px;
background: #222;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
box-shadow: 0 4px 10px rgba(0, 255, 0, 0.5);
position: fixed;
top: 0;
left: 0;
z-index: 1000;
}
.logo img {
height: 50px;
border-radius: 10px;
}
.nav-buttons .btn {
background: #0f0;
color: black;
padding: 10px 20px;
border: none;
cursor: pointer;
margin-left: 10px;
font-weight: bold;
border-radius: 5px;
}
.nav-buttons .btn:hover {
background: #1f1;
}
/* MAIN CONTENT */
.main-content {
width: 100%;
max-width: 1200px;
padding: 20px;
margin-top: 80px;
text-align: center;
}
/* HERO SECTION */
.hero {
text-align: center;
margin-bottom: 30px;
}
.hero img {
max-width: 100%;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 255, 0, 0.5);
}
.join-now {
background: #0f0;
color: black;
font-size: 18px;
padding: 10px 20px;
border: none;
cursor: pointer;
margin-top: 10px;
border-radius: 5px;
font-weight: bold;
}
.join-now:hover {
background: #1f1;
}
/* GAMES SECTION */
.games {
margin-top: 40px;
}
.game-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
}
.game-card {
background: #222;
padding: 30px;
text-align: center;
border-radius: 10px;
font-size: 20px;
cursor: pointer;
box-shadow: 0 2px 5px rgba(255, 255, 0, 0.5);
}
.game-card:hover {
background: #444;
}
</style>
</head>
<body>
<!-- Navbar -->
<header class="navbar">
<div class="logo">
<img src="https://yourdomain.com/velvet.jpg" alt="VelvetPotPlay Logo">
</div>
<nav class="nav-buttons">
<button class="btn sign-in">Sign In</button>
<button class="btn sign-up">Sign Up</button>
</nav>
</header>
<!-- Main Content -->
<main class="main-content">
<!-- Banner Section -->
<section class="hero">
<img src="https://bc.game/assets/banner-DCWqOOaK.png" alt="Welcome Banner">
<button class="join-now">Join Now</button>
</section>
<!-- Games Section -->
<section class="games">
<h2>🎮 Our Games</h2>
<div class="game-grid">
<div class="game-card">Crash</div>
<div class="game-card">Plinko</div>
<div class="game-card">Mine</div>
<div class="game-card">Twist</div>
<div class="game-card">Tower Legend</div>
<div class="game-card">Wheel</div>
</div>
</section>
</main>
</body>
</html>