@font-face {
  font-family: "Riclose";
  src: url("/assets/fonts/RicloseSerif.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "San Francisco";
  src: url("/assets/fonts/SanFrancisco.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

:root {
  --background-start-rgb: 19, 11, 32;
  --background-end-rgb: 44, 25, 71;
}

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  background: linear-gradient(
    -40deg,
    rgb(var(--background-start-rgb)),
    rgb(var(--background-end-rgb))
  );
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("/assets/pngs/branding/vip-background.webp") repeat;
  opacity: 0.22;
  background-size: 24px;
  mix-blend-mode: overlay;
}
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  padding: 16px;
  color: #f9f7f6;
  z-index: 1;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  max-width: 600px;
}

.site-name {
  font-family: "Riclose", serif;
  font-size: 3rem;
  font-weight: 300;
  color: #f9f7f6;
  margin-bottom: 1.4rem;
}

.coming-text {
  font-family: "San Francisco", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(249, 247, 246, 0.86);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  width: min(100%, 460px);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(249, 247, 246, 0.18);
  background: rgba(20, 11, 36, 0.42);
  border-radius: 10px;
  padding: 0.55rem 0.35rem;
}

.countdown-value {
  font-family: "Riclose", serif;
  font-size: 1.6rem;
  line-height: 1.1;
  color: #f9f7f6;
}

.countdown-label {
  font-family: "San Francisco", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 247, 246, 0.66);
  margin-top: 0.2rem;
}

footer {
  font-family: "San Francisco", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 300;
}

.logo {
  border-radius: 3px;
  height: auto;
  width: 20px;
  pointer-events: auto;
}

.logo-link {
  line-height: 1;
}

/* @media (max-width: 520px) {
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 300px);
  }
} */
