* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0d0d16;
  color: white;
  overflow: hidden;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  position: relative;
}

/* Abstract shapes */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #5f27cd, transparent 70%);
  top: -200px;
  right: -150px;
  filter: blur(80px);
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00d2ff, transparent 70%);
  bottom: -200px;
  left: -150px;
  filter: blur(80px);
}

.left {
  max-width: 450px;
  z-index: 2;
}

.left h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.left p {
  color: #b3b3c2;
  margin-bottom: 40px;
}

.controls button {
  padding: 12px 24px;
  margin-right: 10px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #5f27cd, #00d2ff);
  color: white;
  transition: 0.3s ease;
}

.controls button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.right {
  z-index: 2;
  text-align: right;
}

.time {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #ffffff, #9aa0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

#laps {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
}

#laps li {
  padding: 5px 0;
  color: #cfcfff;
  font-size: 0.9rem;
}

.green-text{
    color: #8f00ff;
}