:root {
  --red: #ff1118;
  --acid: #e7ff00;
  --white: #f7f7f7;
  --black: #050505;
}

* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; margin: 0; }
body { background: var(--black); font-family: Arial, Helvetica, sans-serif; overflow: hidden; }

.enterpage {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 620px;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.05) 48%, rgba(0,0,0,.55) 100%),
    radial-gradient(circle at center, rgba(0,0,0,0) 35%, rgba(0,0,0,.30) 100%);
}

.overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(24px, 4vh, 56px) 20px;
  gap: clamp(18px, 2.5vh, 32px);
}

.countdown-card {
  width: min(920px, 94vw);
  padding: 18px 22px 16px;
  border: 1px solid rgba(255, 17, 24, .45);
  background: rgba(0, 0, 0, .54);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 36px rgba(255, 0, 0, .14);
}

.eyebrow {
  color: var(--white);
  text-align: center;
  letter-spacing: .55em;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 700;
  margin: 0 0 14px .55em;
}

.countdown {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: clamp(8px, 1.8vw, 24px);
}

.divider {
  width: 1px;
  height: clamp(48px, 8vw, 76px);
  background: linear-gradient(transparent, rgba(255,17,24,.9), transparent);
}

.unit { text-align: center; min-width: 0; }
.unit span {
  display: block;
  color: var(--red);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(30px, 5vw, 66px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 0 0 18px rgba(255, 0, 0, .34);
}
.unit small {
  display: block;
  margin-top: 10px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: clamp(8px, .9vw, 11px);
  opacity: .9;
}

.partner-logo {
  display: block;
  width: min(300px, 55vw);
  max-height: 92px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.live-message {
  color: var(--acid);
  text-align: center;
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: .18em;
}

@media (max-width: 700px) {
  body { overflow: auto; }
  .enterpage {
    min-height: 100svh;
    background-position: 51% center;
  }
  .overlay {
    justify-content: flex-end;
    padding-bottom: 28px;
  }
  .countdown-card { padding: 14px 10px 12px; }
  .countdown { gap: 5px; }
  .unit small { letter-spacing: .12em; }
  .partner-logo { width: min(230px, 58vw); }
}
