body {
  margin: 0;
  font-family: Arial;
  background: #f5f7fb;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: white;
  position: sticky;
  top: 0;
}

.navbar a {
  margin: 0 10px;
  text-decoration: none;
  color: black;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
}

.hero button {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: white;
  cursor: pointer;
}

.categories, .games, .guide, .contact {
  padding: 50px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.game-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.game-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.game-card:hover {
  transform: scale(1.05);
}

.contact input, .contact textarea {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 250px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}