* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.logo-section {
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out;
}

.brand-name {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  position: relative;
}

.tire-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #ffd700;
  border-radius: 50%;
  position: relative;
  margin-left: 1rem;
  vertical-align: middle;
  animation: spin 3s linear infinite;
}

.tire-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid #1a1a1a;
  border-radius: 50%;
}

.tire-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 20px;
  height: 2px;
  background: #ffd700;
  transform: translateY(-50%);
  box-shadow: 0 -8px 0 #ffd700, 0 8px 0 #ffd700;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.maintenance-message {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.maintenance-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.maintenance-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 3px;
  animation: progress 4s ease-in-out infinite;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
  background-image: radial-gradient(circle at 20% 20%, #ffd700 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, #ffd700 2px, transparent 2px),
    radial-gradient(circle at 40% 60%, #ffd700 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 80px 80px;
  animation: float 20s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes progress {
  0%,
  100% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 2.5rem;
  }

  .tire-icon {
    width: 40px;
    height: 40px;
  }

  .tire-icon::before {
    width: 20px;
    height: 20px;
  }

  .maintenance-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 1rem;
  }
}
