:root {
  color-scheme: dark;
  --text: #f6f6f6;
  --muted: #d4d4d4;
  --red: #e50914;
  --red-soft: rgba(229, 9, 20, 0.45);
  --panel: rgba(6, 6, 8, 0.62);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #020203;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.wip-panel {
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  background: transparent;
}

.brand {
  width: min(100%, 680px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
}

p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.2vw, 1.45rem);
  line-height: 1.45;
}

.counter {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-top: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--red-soft), rgba(0, 0, 0, 0.7) 64%);
  box-shadow: 0 0 34px rgba(229, 9, 20, 0.32);
}

.counter span {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 540px) {
  .wip-panel {
    gap: 16px;
  }

  .counter {
    width: 74px;
    height: 74px;
  }

  .counter span {
    font-size: 2.15rem;
  }
}
