:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --muted-color: #888888;
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  animation: fadeIn 1.5s ease-out;
}

.logo {
  max-width: 180px;
  height: auto;
}

/* Vercel-like typography */
.countdown {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-variant-numeric: tabular-nums;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.number {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #71717a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.separator {
  font-size: 4rem;
  font-weight: 400;
  color: var(--muted-color);
  transform: translateY(-1.5rem);
}

.subtitle {
  color: var(--muted-color);
  font-size: 1.125rem;
  font-weight: 400;
}

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

@media (max-width: 768px) {
  .number {
    font-size: 3rem;
  }
  .separator {
    font-size: 2.5rem;
    transform: translateY(-1rem);
  }
  .countdown {
    gap: 0.5rem;
  }
}
