body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #333;
}

.container {
  text-align: center;
  padding: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  width: 320px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.distorted {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0;
  color: #ff4d4d;
}

input {
  padding: 10px;
  width: 80%;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  background: #4facfe;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #007bff;
}

.stats {
  margin-top: 10px;
  display: flex;
  justify-content: space-around;
}

.restart {
  margin-top: 15px;
  background: #28a745;
}

.leaderboard {
  margin-top: 20px;
}