* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  background: #0f1020;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.wrap {
  max-width: 480px;
  width: 100%;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 28px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.status {
  background: #1b1d36;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
  min-height: 60px;
}

.hands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hand {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: #222545;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 0.15s;
}

.hs.active {
  transform: scale(1.08);
  border: 2px solid #7d8cff;
}

.vs {
  font-size: 18px;
  color: #aaa;
}

.choices {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}

.choices button {
  background: #2a2d55;
  border: none;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  font-size: 34px;
  cursor: pointer;
  transition: transform 0.1s, background 0.15s;
}

.choices button:hover {
  background: #373b75;
  transform: translateY(-2px);
}

.choices button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.reset {
  margin-top: 6px;
  background: transparent;
  border: 1px solid #4a4f82;
  color: #cfd2ff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
}

.reset:hover {
  background: #2a2d55;
}

.log {
  background: #141530;
  border-radius: 14px;
  padding: 14px;
  min-height: 100px;
  font-size: 14px;
  line-height: 1.5;
  color: #dbe0ff;
  margin-top: 14px;
}

.log p + p {
  margin-top: 8px;
}

.log .highlight {
  color: #ffd166;
  font-weight: 600;
}
