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

body {
  background-color: #3a3d42;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

canvas#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  width: 320px;
  max-width: 90vw;
  margin-bottom: 2rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #7f8cff, #ff6fd8);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

h1 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.subtitle {
  color: #a0a4ab;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-item span {
  font-size: 3rem;
  font-weight: 200;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  min-width: 80px;
  line-height: 1;
}

.countdown-item label {
  color: #7f8cff;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.coming-soon {
  color: #ff6fd8;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

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

@media (max-width: 480px) {
  .countdown {
    gap: 1rem;
  }
  .countdown-item span {
    font-size: 2rem;
    min-width: 60px;
    padding: 0.4rem 0.8rem;
  }
}
