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

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #e5e5e5;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  inset: 0
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) contrast(1.05);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.75) 70%,
    rgba(0,0,0,0.92) 100%
  );
}


.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.2rem;
  padding: 2rem;
  max-width: 90vw;
}


.logo {
  max-width: 960px;
  width: 60%;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links a {
  text-decoration: none;
  color: #cfcfcf;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.75;
}

.links a:hover {
  color: #ffffff;
  opacity: 1;
}
