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

:root {
  --color-bg: #0a0a0f;
  --color-surface: #13131a;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-primary: #3b82f6;
  --color-primary-glow: rgba(59, 130, 246, 0.3);
  --color-text: #f1f5f9;
  --color-muted: #64748b;
  --color-accent: #38bdf8;
  --font: 'Inter', system-ui, sans-serif;
}

html, body {
  height: 100%;
}

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

.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary);
  top: -200px;
  right: -150px;
  animation: drift1 12s ease-in-out infinite alternate;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  bottom: -100px;
  left: -100px;
  animation: drift2 16s ease-in-out infinite alternate-reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: #0ea5e9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: drift3 20s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-20px, 30px) scale(1.08); }
}

@keyframes drift3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(calc(-50% + 20px), calc(-50% + 15px)) scale(1.05); }
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
}

.content {
  text-align: center;
  max-width: 640px;
  animation: fadeUp 0.8s ease both;
}

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

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.headline {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtext {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  min-width: 80px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 24px var(--color-primary-glow);
}

.countdown-value {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.divider {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  align-self: flex-start;
  padding-top: 1.25rem;
}

@media (max-width: 480px) {
  .countdown-item {
    min-width: 60px;
    padding: 1rem;
  }

  .countdown-value {
    font-size: 1.75rem;
  }

  .divider {
    font-size: 1.5rem;
  }
}
