* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fa;
  color: #222;
}

header {
  background: #1a1a2e;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header h1 {
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.choices {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.choices img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 10px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.choices img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scoreboard {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
}

.score {
  text-align: center;
}

.score .value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a1a2e;
}

#statusBtn {
  margin: 70px auto;
  display: block;
  width: 320px;
  padding: 15px 0;
  font-size: 1.2rem;
  border: none;
  border-radius: 12px;
  background: #1a1a2e;
  color: #fff;
  transition: 0.2s;
}

#statusBtn:hover {
  transform: scale(1.05);
}

#rock,
#paper,
#scissors {
  object-fit: cover;
}
