body {
  background: #0d0d0d;
  color: #f2f2f2;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  background: rgba(20, 20, 20, 0.9);
  border-bottom: 1px solid #6100ff;
}

.nav-link {
  color: #c7c7c7 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #8b3dff !important;
}

.hero {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(45deg, #180030, #080015);
  border-bottom: 2px solid #6100ff;
}

.hero h1 {
  font-size: 48px;
  color: #b774ff;
  text-shadow: 0 0 15px #6100ff;
}

.hero p {
  font-size: 20px;
  color: #bfbfbf;
}

.btn-neon {
  background: #6100ff;
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 0 10px #7600ff;
}

.btn-neon:hover {
  box-shadow: 0 0 20px #9d66ff;
  background: #7f1aff;
}

.game-card {
  background: #171717;
  border: 1px solid #30004e;
  padding: 20px;
  border-radius: 10px;
  transition: 0.2s;
  box-shadow: 0 0 8px #25003d;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #6100ff;
}

.footer {
  text-align: center;
  padding: 25px;
  color: #a0a0a0;
  border-top: 1px solid #6100ff;
  margin-top: 50px;
}

canvas {
  background: #111;
  border: 2px solid #6100ff;
  display: block;
  margin: 20px auto;
}