body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f0f;
  color: #fff;
}

header {
  text-align: center;
  padding: 2rem;
  background: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

h1 {
  font-size: 2.5rem;
  color: #00ffcc;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

section.game {
  width: 90%;
  max-width: 600px;
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,255,204,0.3);
  text-align: center;
}

section.game h2 {
  margin-bottom: 1rem;
  color: #00ffcc;
}

section.game img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

section.game img:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 1rem;
  background: #1a1a1a;
  font-size: 0.9rem;
}