body {
  background: linear-gradient(135deg, #f8ffae 0%, #43c6ac 100%);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  max-width: 480px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 32px 24px;
  text-align: center;
}

h1 {
  color: #43c6ac;
  margin-bottom: 24px;
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}

.choice-btn {
  background: #43c6ac;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(67,198,172,0.15);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choice-btn:hover {
  background: #f8ffae;
  color: #43c6ac;
  transform: scale(1.1);
}

.result {
  font-size: 1.3rem;
  margin-top: 16px;
  color: #333;
  font-weight: bold;
}

.server-choice {
  display: inline-block;
  font-size: 1.3rem;
  color: #43c6ac;
  background: #f8ffae;
  border-radius: 8px;
  padding: 8px 16px;
  margin-left: 10px;
  margin-top: 8px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(67,198,172,0.10);
  letter-spacing: 1px;
}

.computer-choice-row {
  margin-top: 20px;
}

.computer-label {
  font-weight: bold;
  color: #43c6ac;
}

.winner {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #43c6ac;
  font-weight: bold;
}
