* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: #fff;
}

body {
  min-height: 100vh;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
  user-select: text;
}

.background-video {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  transform: translate(-50%, -50%);
}

.site {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.12);
}

.card {
  width: min(100%, 390px);
  padding: 26px;
  text-align: center;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: auto;
}

.est {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font: 0.75rem "Courier New", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 22px;
  font-size: clamp(3rem, 16vw, 5rem);
  line-height: 0.95;
  font-weight: 400;
  text-transform: lowercase;
}

.links {
  display: grid;
  gap: 8px;
}

.links a {
  display: block;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.24);
  font: 0.74rem "Courier New", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .card {
    padding: 22px;
  }
}
