body {
  background: linear-gradient(#1e5631, #0b3d20);
  font-family: "Trebuchet MS", sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
  color: #eaffea;
}

.game h2 {
  color: #b6ff9c;
  text-shadow: 2px 2px #145a32;
}

.road {
  width: 90%;
  max-width: 700px;
  margin: 30px auto;
  background: repeating-linear-gradient(
    45deg,
    #5d4037,
    #5d4037 20px,
    #4e342e 20px,
    #4e342e 40px
  );
  padding: 20px;
  border: 6px solid #2e7d32;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lane {
  background: rgba(0, 0, 0, 0.25);
  height: 100px;
  margin: 15px 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.car {
  font-size: 52px;
  position: absolute;
  left: 0;
  top: 22px;
  transition: left 0.05s linear;
}

.name {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: bold;
  color: #ffeb3b;
  text-shadow: 1px 1px #000;
}

.finish {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: bold;
  color: #ff5252;
  text-shadow: 2px 2px #000;
}

.controls {
  margin-top: 20px;
}

.controls button {
  background: linear-gradient(#7cb342, #558b2f);
  border: none;
  padding: 16px 22px;
  margin: 10px;
  border-radius: 10px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 5px #33691e;
}

.controls button:active {
  transform: translateY(5px);
  box-shadow: 0 2px #33691e;
}

.winner {
  font-size: 28px;
  font-weight: bold;
  margin-top: 25px;
  color: #ffeb3b;
  text-shadow: 2px 2px #000;
}