:root {
  --bg-color: #0a0a0a;
  --primary-text: silver;
  --secondary-color: #00ff70;
  --hover: rgb(139, 139, 139);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--primary-text);
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
  padding: 20px;
}

.coming-container {
  max-width: 700px;
}

.logo {
  width: 300px;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease-in-out;
}

h1 {
  color: var(--secondary-color);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px var(--secondary-color);
}

p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.progress-bar {
  background-color: #222;
  width: 100%;
  height: 12px;
  border-radius: 10px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 0 10px rgba(0, 255, 112, 0.2);
}

.progress {
  width: 60%;
  height: 100%;
  background-color: var(--secondary-color);
  animation: progressAnim 2s ease-in-out infinite alternate;
}

.info {
  color: var(--hover);
  font-size: 0.95rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--hover);
  text-decoration: underline;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--hover);
}

footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

footer a:hover {
  color: var(--hover);
}

/* Animations */
@keyframes progressAnim {
  from {
    width: 30%;
  }
  to {
    width: 80%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    width: 120px;
  }
}
