body {
  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(135deg, #041418, #005f63, #00C9C9);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Плавная анимация градиента */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.coming-soon-container {
  text-align: center;
  padding: 20px;
}

.logo {
  width: 160px;
  max-width: 80%;
  margin-bottom: 30px;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  margin: 0;
  color: #00C9C9;
  #text-shadow: 0 0 10px rgba(0, 201, 201, 0.4);
  text-transform: none; /* важно! */
  letter-spacing: 1px;
}



.tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  margin-top: 20px;
  line-height: 1.4;
  color: #E0E0E0;
  text-transform: none;
  letter-spacing: 1px;
}
