:root {
  --text: #ffffff;
  --overlay: rgba(0, 0, 0, 0.45);
  --button-bg: rgba(255, 255, 255, 0.2);
  --button-border: rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  overflow: hidden;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: -1;
}

.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem 6rem;
}

.logo {
  width: min(378px, 67.5vw);
  height: auto;
}

.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 999px;
  background: #ffffff2f;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.88;
  width: min(96vw, 620px);
}