* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #111;
  color: #fff;
}

header {
  background: #222;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: #00ff99;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ff99;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: url('https://via.placeholder.com/1200x400') no-repeat center center/cover;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #00ff99;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background: #00cc77;
}

.games {
  padding: 40px 20px;
  text-align: center;
}

.games h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.game-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.game-card {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  transition: transform 0.3s;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #888;
}
