html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: black;
}

/* Video takes full screen and covers it completely */
#bg-video {
    position: fixed;
    inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;

    background-color: black;
}

/* Click to Enter Overlay */
#enter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
    font-size: 2em;
    cursor: pointer;
    z-index: 9999;
}

/* Volume Control */
#volume-control {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
}

#volume-slider {
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    margin-left: 8px;
}

#volume-control:hover #volume-slider {
    width: 100px;
    opacity: 1;
    cursor: pointer;
}
#profile-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    max-width: 400px;
    width: 90%;
    z-index: 5;
}

#pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.username {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.tagline {
    font-size: 14px;
    margin-top: 5px;
    color: #ccc;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 15px;
    margin: 20px 0;
}

.avatar {
    width: 50px;
    border-radius: 50%;
}

.user-info {
    text-align: left;
    color: #ddd;
}

.user-info .badge {
    font-size: 14px;
    color: #8ab4f8;
}

.status {
    font-size: 12px;
    color: #aaa;
}

.socials img {
    width: 30px;
    margin: 0 6px;
    cursor: pointer;
    filter: brightness(0.8);
    transition: transform 0.2s ease;
}

.socials img:hover {
    transform: scale(1.2);
    filter: brightness(1);
}

#user-info-top-right {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 12px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    z-index: 1000;
}

