body {
  background: radial-gradient(circle at top, #141e30, #243b55);
  color: white;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

h1 {
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.ball {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #333, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.2s;
}

.ball:hover {
  transform: scale(1.05);
}

.answer {
  background: #1c1c1c;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  padding: 10px;
  box-shadow: inset 0 0 10px #00e0ff;
}

p {
  margin-top: 25px;
  opacity: 0.7;
}