body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle, #1e1e2f, #12121a);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  width: 350px;
  box-shadow: 0 0 20px rgba(255, 0, 150, 0.3);
}

h1 {
  color: #ff4fd8;
  text-shadow: 0 0 15px #ff4fd8;
}

.instructions {
  font-size: 0.9rem;
  color: #ccc;
}

.twister-text {
  font-size: 1rem;
  margin: 20px 0;
  color: #ffb3f5;
}

input {
  width: 90%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
  text-align: center;
  background-color: #222;
  color: #fff;
  box-shadow: inset 0 0 8px #ff4fd8;
}

button {
  background-color: #ff4fd8;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  margin: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ff7ae6;
}

.timer, .score {
  margin-top: 10px;
  font-weight: 500;
}

#feedback {
  margin-top: 10px;
  font-weight: 600;
}
