:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.access-screen {
  display: flex;
  min-height: 100vh;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vh, 3rem);
  isolation: isolate;
  background: #000;
  padding: clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(82vw, 760px);
  max-height: 54vh;
  mix-blend-mode: hard-light;
  object-fit: contain;
  user-select: none;
}

.loading {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: #f7d76e;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.spinner {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  border: 3px solid rgba(247, 215, 110, 0.22);
  border-top-color: #f7d76e;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: min(94vw, 440px);
    max-height: 46vh;
  }

  .loading {
    min-height: 2.5rem;
    gap: 0.65rem;
  }

  .spinner {
    width: 1.25rem;
    height: 1.25rem;
    border-width: 2px;
  }
}
