/* Video background */
#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

#video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Click-to-enter overlay */
#enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

#enter-message p {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

/* Profile container */
#blurred-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

/* Profile picture + frame */
#profile-picture {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

#avatar-frame {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

/* Links */
.links a {
  margin: 0 10px;
  color: white;
  font-size: 1.5rem;
  transition: 0.3s;
}

.links a:hover {
  color: #ffcb46;
}
