:root {
  --bg: #0D152B;
  --text: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0;
}

.logo {
  width: min(480px, 70vw);
  height: auto;
}

.tagline {
  margin: 0;
  font-size: clamp(48px, 7.5vw, 84px);
  font-weight: 700;
  text-align: center;
}

.countdown {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 720px;
}

.countdown-text {
  margin: 0;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 600;
}

.timer {
  display: flex;
  gap: clamp(12px, 3vw, 24px);
  font-size: clamp(20px, 5vw, 36px);
  font-weight: 700;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.time-unit .label {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  color: #c4c6cb;
}
