/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

/* Fallback color while media loads */
body {
  background: #0b0f14;
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* If using GIF background (simple, but heavy): */
body {
  background-image: url("/assets/bg.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* If using VIDEO background (recommended), comment out the GIF block above */
.bgvideo{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.overlay{
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 0;
}
.overlay::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: -1;
}

/* Centered buttons */
.card{
  width: min(560px, 92vw);
  padding: 28px;
  border-radius: 18px;
  background: rgba(20, 24, 32, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
h1{
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.btns{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.btn{
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .08s ease, background .2s ease;
}
.btn:hover{
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.btn:active{
  transform: translateY(0px);
}
