:root {
  --bg-0: #07080c;
  --bg-1: #0f1218;
  --blood: #bf1e2d;
  --ember: #ff7a32;
  --bone: #f7f0df;
  --mist: rgba(211, 218, 230, 0.1);
  --card: rgba(12, 16, 22, 0.72);
  --border: rgba(255, 122, 50, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Special Elite", serif;
  color: var(--bone);
  background:
    radial-gradient(circle at 20% 20%, rgba(191, 30, 45, 0.18), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255, 122, 50, 0.14), transparent 38%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1));
  overflow: hidden;
}

.fog {
  position: fixed;
  width: 150vw;
  height: 40vh;
  left: -25vw;
  background: radial-gradient(circle, var(--mist), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.fog-one {
  top: 8%;
  animation: drift 12s ease-in-out infinite alternate;
}

.fog-two {
  bottom: 2%;
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.8vw, 16px);
  color: var(--ember);
}

h1 {
  margin: 8px 0;
  font-family: "Creepster", cursive;
  font-size: clamp(58px, 14vw, 150px);
  color: var(--blood);
  text-shadow: 0 8px 28px rgba(191, 30, 45, 0.55);
}

.subhead {
  margin: 0 0 26px;
  font-size: clamp(16px, 2.4vw, 24px);
}

.countdown {
  display: grid;
  width: min(960px, 100%);
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 14px;
}

.time-box {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
  padding: 18px 10px;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 18px rgba(255, 122, 50, 0.07);
}

.value {
  margin: 0;
  font-size: clamp(36px, 7vw, 72px);
  color: var(--bone);
}

.label {
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8dcb9;
  font-size: clamp(12px, 1.8vw, 15px);
}

.status {
  margin-top: 20px;
  color: #ffcab0;
}

@keyframes drift {
  from {
    transform: translateX(-1.8%) translateY(0);
  }
  to {
    transform: translateX(1.8%) translateY(-2.2%);
  }
}

@media (max-width: 700px) {
  .countdown {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    gap: 12px;
  }

  body {
    overflow: auto;
  }
}
