body {
  background-color: #000000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  padding: 5vh 2rem;
  margin: 0;
  color: #ffffff;
}

.container {
  max-width: 600px;
  margin: auto;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 2.5rem;
  color: #ffffff;
}

.description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 30px;
}

.message {
  font-size: 1.3rem;
  color: #e74c3c;
}

.soon {
  font-size: 1.1rem;
  color: #ffffff;
}

.countdown {
  font-size: 1.5rem;
  color: #1abc9c;
  margin-top: 20px;
  font-weight: bold;
}

.loader {
  border: 6px solid #333;
  border-top: 6px solid #1abc9c;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 30px auto;
  animation: spin 1.5s linear infinite;
}

.contact {
  margin-top: 30px;
  font-size: 1rem;
  color: #ffffff;
}
.contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
.contact a:hover {
  text-decoration: underline;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
