body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.click-to-enter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.click-to-enter.hide {
  opacity: 0;
  pointer-events: none;
}

.click-to-enter p {
  color: #4400ff;
  font-size: 2rem;
  text-shadow: 0 0 5px #4400ff, 0 0 10px #4400ff, 0 0 15px #4400ff, 0 0 20px #4400ff;
  animation: glow 2s ease-in-out infinite;
}

.main-content {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  filter: blur(10px);
  transition: filter 0.5s ease;
}

.main-content.show {
  filter: blur(0);
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bio-box {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  outline: 2px solid #4400ff;
  outline-offset: 10px;
}

.bio-box h1, .bio-box p {
  color: #4400ff;
  text-shadow: 0 0 5px #4400ff, 0 0 10px #4400ff, 0 0 15px #4400ff, 0 0 20px #4400ff;
  animation: glow 2s ease-in-out infinite;
}

.bio-box h1 {
  margin-top: 0;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 5px #4400ff, 0 0 10px #4400ff, 0 0 15px #4400ff, 0 0 20px #4400ff;
  }
  50% {
    text-shadow: 0 0 10px #4400ff, 0 0 15px #4400ff, 0 0 20px #4400ff, 0 0 25px #4400ff;
  }
}

.social-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-button {
  width: 50px;
  height: 50px;
  margin: 0 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.social-button:hover {
  transform: scale(1.1);
}

.social-button img {
  width: 100%;
  height: 100%;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8); 
  color: white; 
  padding: 10px 0; 
  font-family: Arial, sans-serif; 
  font-size: 16px;
}
