* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  background: #111827;
}

.overlay {
  background: transparent;
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
}

.card {
  width: 620px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(17, 24, 39, 0.88);
  box-shadow: 0 20px 80px rgba(0,0,0,.45);
  text-align: center;
}

h1 {
  margin: 0 0 18px;
  font-size: 42px;
  letter-spacing: 1px;
}

h2 {
  margin: 20px 0 8px;
}

.pokemon-box {
  height: 300px;
  display: grid;
  place-items: center;
}

#pokemon {
  width: 280px;
  height: 280px;
  object-fit: contain;
  image-rendering: pixelated;
  transform: scale(1.8);
}

.silhouette {
  filter: brightness(0);
}

.answer {
  height: 44px;
  font-size: 32px;
  font-weight: 900;
}

.winner {
  min-height: 28px;
  font-size: 22px;
}

ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  margin: 6px 0;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  font-size: 22px;
}

.page {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
}

th, td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-align: left;
}
