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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #222831;
  color: #eeeeee;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrap {
  background-color: #393e46;
  border-radius: 20px;
  padding: 25px 20px;
  width: 380px;
  max-width: 90vw;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #ffd369;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reset button {
  background-color: #222831;
  border: none;
  color: #eeeeee;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.reset button:hover {
  background-color: #ffd369;
  color: #222831;
}

.score {
  display: flex;
  gap: 10px;
}

.scorecomputer,
.scoreuser {
  background-color: #222831;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.scorecomputer p:last-child,
.scoreuser p:last-child {
  font-size: 20px;
  font-weight: bold;
}

.scoreuser p:last-child {
  color: #ffd369;
}

.battle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.computerChoice,
.userPickBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.computer,
.userPick {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #222831;
  border: 3px solid #ffd369;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
}

.userPick {
  border-color: #eeeeee;
}

.vs {
  font-size: 18px;
  font-weight: bold;
  color: #ffd369;
}

.info {
  min-height: 40px;
  margin: 15px 0;
  font-size: 15px;
  color: #cccccc;
}

.userChoice {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.userChoice button {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  background-color: #222831;
  font-size: 28px;
  cursor: pointer;
}

.userChoice button:hover {
  background-color: #ffd369;
  transform: scale(1.05);
}

.userChoice p {
  font-size: 12px;
  margin-top: 5px;
  color: #999;
}

footer {
  margin-top: 25px;
  font-size: 12px;
  color: #888;
}