* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #f5f5f5 0, #e5e5e5 40%, #d8d8d8 100%);
  color: #111827;
}

.wrapper {
  text-align: center;
  padding: 3rem 2.6rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
  max-width: 520px;
  width: 92%;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.8s ease-out;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: #6b7280;
  margin-bottom: 1.8rem;
}

.title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  margin-bottom: 1.8rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
  animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
  }
  50% {
    transform: scale(1.22);
    background: #4ade80; /* по-светло зелено */
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.15);
  }
  100% {
    transform: scale(1);
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
  }
}


.contact {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.contact a {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}

footer {
  font-size: 0.8rem;
  color: #9ca3af;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.countdown-box {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.countdown-box h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#countdown div {
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: #111827;
  color: #f9fafb;
  min-width: 80px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#countdown span {
  font-size: 1.45rem;
  font-weight: 700;
  display: block;
  font-family: "Courier New", monospace; /* Матрицата vibes */
}

#countdown small {
  font-size: 0.75rem;
  opacity: 0.7;
}
