body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid #111;
}

.logo {
  height: 28px;
}

.hero {
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-logo {
  height: 120px;
  margin-bottom: 30px;
}

.games {
  text-align: center;
  padding: 60px 40px;
}

.game-grid {
  display: flex;
  justify-content: center;
}

.game-card {
  background: #0b0b0b;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 16px;
  width: 360px;
}

.thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background: #111;
}

.btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: none;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.discord {
  background: #5865F2;
  border: none;
}

.icon {
  width: 16px;
  height: 16px;
}

.empty-text {
  color: #777;
}

footer {
  position: fixed;
  bottom: 15px;
  left: 20px;
  color: #555;
  font-size: 0.8rem;
}
