
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#000;
  overflow:hidden;
  color:white;
}

/* Background Video */
#bg-video{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
  opacity:.25;
}

/* Dark overlay */
body::after{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(255, 255, 255, 0);
  z-index:-1;
}

/* Enter Screen */
#enter-screen{
  position:fixed;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
  background:#000000;
  z-index:10;
  cursor:pointer;
  transition:.6s;
}

.hidden{
  opacity:0;
  pointer-events:none;
}

/* Layout */
.container{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px;
  flex-wrap:wrap;
  opacity:0;
  transition:1s;
}

.container.show{
  opacity:1;
}

.card{
  width:310px;
  background:rgba(20, 20, 25, 0.247);
  backdrop-filter:blur(25px);
  border-radius:20px;
  padding:30px;
  box-shadow:0 0 40px rgba(0,0,0,.6);
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 40px rgba(0, 0, 0, 0.6);
}

.pfp-wrapper{
  position:relative;
  width:100px;
  height:100px;
  margin:auto;
}

.pfp{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #11111136;
}

.decoration{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.username{
  margin-top:15px;
  font-size:22px;
  font-weight:800;
  text-align:center;
}

.animated-text{
  margin-top:10px;
  font-size:14px;
  text-align:center;
  opacity:.7;
  min-height:18px;
}

.links{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:15px;
}

.links a{
  width:48px;
  height:48px;
  background:#11111118;
  border-radius:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:rgb(255, 255, 255);
  text-decoration:none;
  transition:.3s;
}

.links a:hover{
  box-shadow:0 0 20px #fc0000;
  transform:translateY(-5px);
}

.links svg{
  width:22px;
  height:22px;
  fill:currentColor;
}

.pfp-container {
  position: relative;
  width: 110px;
  height: 110px;
  margin: auto;
}

.pfp {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Discord Decoration */
.pfp-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 135%;
  height: 135%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#main {
  perspective: 1200px; /* Gives the depth effect */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}