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

body{
  font-family:Yu Gothic;
  background:#000;
  color:white;
  overflow-x:hidden;
}

/* Video */
#bgVideo{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

/* Dark Overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(
      rgba(0,0,0,.55),
      rgba(0,0,0,.7)
    );
  z-index:-1;
}

/* Enter Screen */
#overlay{
  position:fixed;
  inset:0;
  background:#000;
  z-index:999;
  display:flex;
  justify-content:center;
  align-items:center;
}

.enter-box{
  text-align:center;
}

.enter-box h1{
  margin-bottom:20px;
  letter-spacing:4px;
}

#enterBtn{
  border:none;
  padding:16px 40px;
  border-radius:999px;
  cursor:pointer;
  transition:.25s;
}

#enterBtn:hover{
  transform:scale(1.08);
}

#enterBtn:active{
  transform:scale(.95);
}

/* Hero */
.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:30px;
}

.glass-card{
  width:min(700px,90%);
  padding:40px;

  background:
    rgba(255,255,255,.08);

  backdrop-filter:
    blur(18px);

  border:
    1px solid rgba(255,255,255,.15);

  border-radius:28px;

  transition:.3s;
}

.glass-card:hover{
  transform:
    translateY(-6px);
}

.glass-card h2{
  font-size:3rem;
  margin-bottom:16px;
}

.cta{
  margin-top:24px;
  padding:14px 28px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  transition:.25s;
}

.cta:hover{
  transform:scale(1.05);
}

.section{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  padding:40px;
  text-align:center;
}
