body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
}

header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

main {
  padding: 2rem;
}

canvas {
  margin: 2rem auto;
  display: block;
}

.results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 1.1rem;
  margin: 1.5rem 0;
}

button#startBtn {
  background: linear-gradient(to right, #facc15, #f59e0b);
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button#startBtn:hover {
  background: #fbbf24;
}

footer {
  margin-top: 3rem;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

#progressBarText {
  font-size: 2rem;
  margin-top: 20px;
}

#progressBar {
  height: 20px;
  background-color: #facc15;
  width: 0%;
  max-width: 100%;
  margin: 20px auto;
  transition: width 0.3s ease;
}

