body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background-color: #0a0a0a;
  color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.landing {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  width: 90%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.3em;
}

.sigg{
    color: #91418c;
}

.tagline {
  font-size: 1.2rem;
  color: #a0a0a0;
  margin-bottom: 2em;
}

.status p {
  color: #ccc;
  margin-bottom: 3em;
  font-size: 1.1rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

.links a {
  color: #fafafa;
  text-decoration: none;
  border: 1px solid #333;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.links a:hover {
  background: #1a1a1a;
  border-color: #555;
}

#bgVideo {
  position: fixed;       /* stay in place when scrolling */
  top: 0;
  left: 0;
  width: 100vw;          /* full viewport width */
  height: 100vh;         /* full viewport height */
  z-index: -9999;        /* ensure it’s behind everything */
  pointer-events: none;  /* clicks pass through */
  object-fit: cover;     /* optional, fallback to old method below if needed */
  background: black;     /* fallback if video fails to load */
}

/* Old-fashioned fallback for browsers that don’t support object-fit */
@supports not (object-fit: cover) {
  #bgVideo {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
  }
}


