<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gaming Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">🎮 GameZone</div>
<nav>
<a href="#">Home</a>
<a href="#">Games</a>
<a href="#">Bonus</a>
<a href="#">Support</a>
</nav>
</header>
<section class="hero">
<div class="content">
<h1>Play & Win Big</h1>
<p>Enjoy exciting online games with instant rewards and secure gameplay.</p>
<div class="buttons">
<a href="#" class="btn login">Login</a>
<a href="#" class="btn register">Register</a>
</div>
</div>
</section>
<section class="features">
<div class="card">
<h3>⚡ Fast Withdraw</h3>
<p>Quick and secure payments.</p>
</div>
<div class="card">
<h3>🎁 Daily Bonus</h3>
<p>Claim exciting rewards every day.</p>
</div>
<div class="card">
<h3>🔒 Secure</h3>
<p>Protected with advanced security.</p>
</div>
</section>
<footer>
© 2026 GameZone. All Rights Reserved.
</footer>
</body>
</html>