body {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom, #190019, #2B124C, #522B5B, #854F6C);
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FBE4D8;
}

.stopwatch-container {
  background: #2B124C;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(223, 182, 178, 0.3);
  text-align: center;
  border: 2px solid #FBE4D8;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #DFB6B2, #FBE4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(251, 228, 216, 0.5);
}
.icon {
  width: 40px;
  height: 50px;
  filter: drop-shadow(0 0 8px #0ff);
  object-fit: contain;
  vertical-align: middle;
}
#display {
  font-size: 3rem;
  margin: 20px 0;
  color: #FBE4D8;
  text-shadow: 0 0 12px #DFB6B2, 0 0 20px #DFB6B2;
}

.buttons button {
  font-family: 'Orbitron', sans-serif;
  background: none;
  border: 2px solid #FBE4D8;
  color: #FBE4D8;
  padding: 12px 24px;
  margin: 8px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #DFB6B2;
}

.buttons button:hover {
  background: linear-gradient(to right, #DFB6B2, #FBE4D8);
  color: #190019;
  box-shadow: 0 0 20px #FBE4D8;
  border: none;
}

#laps {
  margin-top: 25px;
  max-height: 150px;
  overflow-y: auto;
  text-align: left;
  padding-left: 20px;
  color: #DFB6B2;
  font-size: 1rem;
}

#laps li {
  margin: 6px 0;
  text-shadow: 0 0 8px #854F6C;
}
.time-labels {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 8px;
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 0 5px #00eaff, 0 0 10px #00eaff;
  letter-spacing: 1px;
}

.time-labels span {
  min-width: 70px;
  text-align: center;
}
