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

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

/* ── Canvas background ── */
#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* ── Center wrapper ── */
.center {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* ── Logo ── */
.logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* ── SOON text ── */
.soon-text {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  color: #fff;
  margin-top: -4px;
}

.dots {
  display: inline-block;
  animation: blink 1.5s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Timer ── */
.timer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 70px;
}

.timer-num {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  /* subtle gradient */
  background: linear-gradient(160deg, #ffffff 30%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timer-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.timer-sep {
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(167, 139, 250, 0.45);
  line-height: 1;
  padding-top: 4px;
  user-select: none;
}
