body {
  font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  min-height: 100vh;
  margin: 0;
  background: #0a0a0f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

h1 {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe066, #d4af37, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

button {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  color: #1a1200;
  background: linear-gradient(135deg, #ffe066, #d4af37, #ffd700);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.75);
}

button:active {
  transform: translateY(0);
}

#results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

.game-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #1a1a10;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
}

.game-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #81c784;
  letter-spacing: 1px;
}

.jo-badge {
  padding: 5px 12px;
  background: #2e7d32;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
}

.number {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe066, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}