body {
margin: 0;
padding: 0;
font-family: 'Courier New', Courier, monospace;
overflow: hidden;
background-color: black;
}

#loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #1e1e1e;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s ease-out;
}

#loading-screen.hidden {
opacity: 0;
pointer-events: none;
}

.loader {
width: 60px;
height: 60px;
border: 4px solid #2d2d2d;
border-top: 4px solid #ff00ff;
border-radius: 50%;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

#loading-screen p {
color: #ffffff;
margin-top: 20px;
font-size: 14px;
animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

#video-background {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
}

#video-background::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 2px);
z-index: 1;
pointer-events: none;
}

#myVideo {
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

#blurred-box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30%;
height: 40%;
background-color: rgba(255, 255, 255, 0);
border-radius: 20px;
border: 2px solid rgba(255, 255, 255, 0);
box-shadow: 0 0 10px rgba(100, 100, 255, 0.5);
backdrop-filter: blur(5px);
z-index: 999;
display: none;
padding: 20px;
text-align: center;
transition: background-color 0.3s;
}

#blurred-box:hover {background-color: rgba(255, 255, 255, 0.05);
}

#blurred-box img {
width: 80px;
height: 80px;
border-radius: 50%;
margin-bottom: 20px;
}

.links {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
z-index: 1001;
}

.links a {
display: flex;
align-items: center;
margin: 0 10px;
color: #ffffff;
text-decoration: none;
transition: color 0.3s;
}

.links a:hover {
color: #ff00ff;
text-decoration: underline;
}

.links a i {
margin-right: 5px;
font-size: 24px;
}

.user-description {
margin-bottom: 20px;
}

.user-description p {
margin: 0;
padding: 10px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 5px;
transition: background-color 0.3s;
}
.user-description p:first-child {
font-weight: bold;
font-size: 18px;
}

.user-description .subtitle {
font-size: 12px;
opacity: 0.8;
padding: 5px 10px;
background-color: transparent;
margin-top: 5px;
}

.user-description:hover p {
background-color: rgba(255, 255, 255, 0.2);
}

#avatar-frame {
position: absolute;
top: 15%;
left: 50%;
transform: translate(-50%, -50%);
width: 15%;
height: 20%;
z-index: 1000;
pointer-events: none;
display: none;
}