body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  background: #fff;
  overflow: hidden;
}
.bubbles {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubbles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.13;
  background: linear-gradient(135deg, #bfff00 0%, #00c3ff 100%);
  animation: bubbleAnim 8s infinite alternate;
}
.bubbles span:nth-child(1) {
  width: 120px;
  height: 120px;
  left: 10vw;
  top: 70vh;
  animation-delay: 0s;
}
.bubbles span:nth-child(2) {
  width: 80px;
  height: 80px;
  left: 70vw;
  top: 20vh;
  animation-delay: 2s;
}
.bubbles span:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 40vw;
  top: 50vh;
  animation-delay: 4s;
}
.bubbles span:nth-child(4) {
  width: 100px;
  height: 100px;
  left: 80vw;
  top: 80vh;
  animation-delay: 1s;
}
.bubbles span:nth-child(5) {
  width: 90px;
  height: 90px;
  left: 20vw;
  top: 20vh;
  animation-delay: 3s;
}
@keyframes bubbleAnim {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-60px) scale(1.15);
  }
}
.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.car-anim {
  width: 220px;
  margin-bottom: 24px;
  animation: drive 2.5s infinite alternate cubic-bezier(0.6, 0.1, 0.4, 0.9);
  filter: drop-shadow(0 8px 24px #bfff0040);
}
@keyframes drive {
  0% {
    transform: translateX(-10px) scale(1);
  }
  100% {
    transform: translateX(10px) scale(1.03);
  }
}
.message {
  font-size: 2.2rem;
  text-align: center;
  color: #232526;
  margin-bottom: 32px;
  line-height: 1.3;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 16px #bfff0033;
}
.gradient-text {
  background: linear-gradient(90deg, #bfff00 40%, #00c3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fade-in {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 2s 1s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.pulse-loader {
  margin-top: 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #bfff00;
  box-shadow: 0 0 0 0 #bfff00;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #bfff00;
  }
  70% {
    box-shadow: 0 0 0 24px rgba(191, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(191, 255, 0, 0);
  }
}
