body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    cursor: url(https://cur.cursors-4u.net/cursors/cur-10/cur965.cur) 16 16, auto !important;
        -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE 10+ */
    user-select: none;         /* Standard */
}


.container {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    min-height: 15rem;
    padding: 35px 15px;
    width: 100%;
    max-width: 650px; /* 650 */
    text-align: center;
    outline: 3px solid rgba(255, 255, 255, 0.089);
    box-shadow: 0px 0px 100px 50px #00000060;
}

.full-screen-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure video is behind everything */
    pointer-events: none; /* Make sure the video doesn't interfere with clicks */
}

/* Ensure the rest of the content stays on top */
.content {
    position: relative;
    z-index: 1;
}

.container .banner {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 13px 13px 0 0;
}

.container .avatar {
    margin-top: 50px;
    z-index: 1;
    border-radius: 50%;
    height: 115px;
    width: 115px;
    outline: 3px solid rgba(255, 255, 255, 0.301);
}

.container .profileLayout {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 27rem;
    text-align: center;
}

/* Tooltip */
.profileUsername:hover::after {
    content: 'UID: 1';
    position: absolute;
    top: -25px; /* Adjust this value to position the tooltip above */
    left: 50%; /* Aligns the tooltip's left side to the center of the element */
    transform: translateX(-50%); /* Moves the tooltip back by 50% of its own width to center it */
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 10; /* Ensure it's above other elements */
}

.container .profileLayout .profileUsername {
    font-weight: 600;
    font-size: 36.5px;
    width: fit-content;
}

.full-screen-gif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

.container .profileLayout .profileBadges {
    content: attr(data-tooltip);
    margin-bottom: 17px;
    margin-top: 8px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.04);
    border-radius: 25px;
    display: flex;
    gap: 5.5px;
    justify-content: center;
    padding: 6px 10px;
}

.container .profileLayout .profileBadges .profileBadge {
    position: relative;
    font-size: 20.5px;
    display: flex;
    align-items: center;
    color: #ffffff !important;
}


.container .profileLayout .profileBadges .profileBadge::before {
    content: '';
    background-color: black;
    opacity: 0;
    color: white;
    position: absolute;
    font-size: 15px;
    font-weight: 600;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1rem;
    padding: 2px 16px;
    z-index: 1;
    filter: none;
    box-shadow: none;
    white-space: nowrap;
    transition: opacity .3s;
}

.container .profileLayout .profileBadges .profileBadge:hover::before {
    opacity: .8;
}

.container .profileLayout .profileBadges .profileBadge.dev:hover::before {
    content: 'Developer';
}
.container .profileLayout .profileBadges .profileBadge.staff:hover::before {
    content: 'Staff';
}
.container .profileLayout .profileBadges .profileBadge.certif:hover::before {
    content: 'Certified';
}
.container .profileLayout .profileBadges .profileBadge.crown:hover::before {
    content: 'Founder';
}
.container .profileLayout .profileBadges .profileBadge.bughunter:hover::before {
    content: 'Bug Hunter';
}
.container .profileLayout .profileBadges .profileBadge.earlysupporter:hover::before {
    content: 'Early Supporter';
}
.container .profileLayout .profileBadges .profileBadge.verified:hover::before {
    content: 'Verified';
}
.container .profileLayout .profileBadges .profileBadge.booster:hover::before {
    content: 'Server Booster';
}
.container .profileLayout .profileBadges .profileBadge.graphic:hover::before {
    content: 'Graphic Designer';
}
.container .profileLayout .profileBadges .profileBadge.member:hover::before {
    content: 'Member';
}
.container .profileLayout .profileBadges .profileBadge.imagehost:hover::before {
    content: 'Image Host';
}
.container .profileLayout .profileBadges .profileBadge.premium:hover::before {
    content: 'Premium';
}
.container .profileLayout .profileBadges .profileBadge.gun:hover::before {
    content: 'Certified Gunner';
}
.container .profileLayout .profileBadges .profileBadge.money:hover::before {
    content: '$ money $';
}
.container .profileLayout .profileBio {
    font-weight: 570;
    font-size: 17px;
    margin-top: 5px;
    color: white;
    height: 23px;
}

.container .presenceWrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 28rem;
    width: 100%;
}

.container .presenceContainer {
    margin-top: 20px;
    align-items: center;
    display: flex;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    background-color: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    box-sizing: border-box;
    justify-content: space-between;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 100%;
}

.container .presenceWrapper .discordInfos {
    display: flex;
    gap: 10px;
    justify-content: left;
    padding: 10px;
    position: relative;
    white-space: nowrap;
}

.container .presenceWrapper .discordInfos .discordAvatar {
    display: flex;
    position: relative;
}

.container .presenceWrapper .discordInfos .discordAvatar .decoration {
    position: absolute;
    height: 86px;
    width: 86px;
    left: -8px;
    top: -7px;
}

.container .presenceWrapper .discordInfos .discordAvatar .avatarImage {
    border: 50%;
    border-radius: 50%;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 70px;
}

.container .presenceWrapper .discordInfos .discordAvatar .discordStatus {
    bottom: 2px;
    height: 17px;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    right: 2px;
    width: 17px;
}

.container .presenceWrapper .discordInfos .discordActivity {
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    gap: 12px;
}

.container .presenceWrapper .discordInfos .discordUser {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.container .presenceWrapper .discordInfos .discordUser h3 {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 2px;
    font-style: italic;
    text-align: left;
}

.container .presenceWrapper .discordInfos .discordUserDiv {
    align-items: center;
    display: flex;
}

.container .presenceWrapper .discordInfos .discordUserDiv span {
    font-weight: 600;
    font-size: 20px;
    color: white;
}

.container .presenceWrapper .discordInfos .discordUserBadges {
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.container .presenceWrapper .discordInfos .discordUserBadges img {
    height: 22px;
    object-fit: cover;
    width: 22px;
}

.container .presenceWrapper .discordInfos .discordUserBadge {
    position: relative;
    display: flex;
    align-items: center;
}

.container .presenceWrapper .discordInfos .discordUserBadge {
    position: relative;
}

.container .presenceWrapper .discordInfos .discordUserBadge::before {
    content: attr(data-tooltip);
    background-color: black;
    color: white;
    opacity: 0;
    position: absolute;
    font-size: 15px;
    font-weight: 600;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1rem;
    padding: 2px 16px;
    z-index: 1;
    transition: opacity 0.3s;
}

.container .presenceWrapper .discordInfos .discordUserBadge:hover::before {
    opacity: 0.8;
}

.presenceWrapper .spotifyInfos {
    display: flex;
    gap: 10px;
    justify-content: left;
    padding: 7px 10px;
    position: relative;
    white-space: nowrap;
}

.presenceWrapper .spotifyCover {
    display: flex;
    align-items: center;
}

.presenceWrapper .spotifyDetails {
    display: flex;
    flex-direction: column;
    min-width: 14rem;
}

.presenceWrapper .spotifyDetails .spotifyTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.presenceWrapper .spotifyDetails .spotifyTitle h1 {
    font-size: 15px;
    font-weight: 700;
}

.presenceWrapper .spotifyDetails .spotifyTitle img {
    width: 20px;
    height: 20px;
}

.presenceWrapper .spotifyDetails .spotifyDescription {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.presenceWrapper .spotifyDetails .spotifyDescription span {
    font-size: 14px;
}

.presenceWrapper .spotifyDetails .spotifyDescription span:last-child {
    color: rgb(160, 160, 160);
    font-size: 13px;
    font-weight: 400;
}

.presenceWrapper .spotifyDetails .spotifyProgress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-top: 4px;
    position: relative;
}

.presenceWrapper .spotifyDetails .spotifyProgress span {
    font-size: 12px;
}

.presenceWrapper .spotifyDetails .bar {
    width: 73%;
    height: 4px;
    border-radius: 6px;
    position: absolute;
    left: 30px;
    background-color: grey;
}

.presenceWrapper .spotifyDetails .bar .progress {
    width: 0%;
    height: 4px;
    background-color: white;
    border-radius: 6px;
}

.container .linkedAccounts {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    filter: drop-shadow(0 0 1.2px #ffffff) !important;
}

.container .linkedAccounts .linkedAccountsRedirect {
    transition: all 0.3s;
    display: flex;
    align-items: center;
    position: relative;
}

.container .linkedAccounts .linkedAccountsRedirect.copied::before {
    content: 'Copied';
}

.container .linkedAccounts .linkedAccountsRedirect::before {
    content: attr(data-type);
    opacity: 0;
    color: white;
    position: absolute;
    font-size: 15px;
    font-weight: 600;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1rem;
    padding: 2px 16px;
    z-index: 1;
    filter: none;
    box-shadow: none;
    white-space: nowrap;
    transition: opacity .3s;
}

.container .linkedAccounts .linkedAccountsRedirect:hover::before {
    opacity: .8;
}

.container .linkedAccountsRedirect {
    text-decoration: none;
    color: white;
}

.container .profileViews {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: 5px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}







/* body {
    background-color: black;
    user-select: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    background: url('.//banner.jpg') no-repeat center center;
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    z-index: -1;

} */

.content {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio-box {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(30px);
    position: relative;
    width: 500px; /* Adjusted width */
    height: 310px; /* Adjusted height */
    box-sizing: border-box; /* Ensures padding is included in the width calculation */
}

.profile-pic {
    width: 100px;
    height: 100px;
    background-image: url('.//pfp.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.username {
    color: white;
    font-size: 30px;
    margin: 0; /* Remove default margin */
    margin-bottom: 5px; /* Reduce the space below the username */
    font-weight: bold;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8), 
        0 0 10px rgba(255, 255, 255, 0.6), 
        0 0 15px rgba(255, 255, 255, 0.4);
    position: relative;
    display: inline-block;
    cursor: default;
}

.username::after {
    content: "UID 1";
    position: absolute;
    left: 7%;
    transform: translateX(-50%);
    bottom: 100%; /* Position it above the username */
    margin-bottom: 2px; /* Space between username and UID text */
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(-10px); /* Initial position for animation */
}

.username:hover::after {
    opacity: 0.65;
    transform: translateY(0); /* Move to final position */
}

.about-me-text {
    color: white;
    font-size: 18px;
    margin: 0; /* Remove any default margin */
}

.buttons {
    margin-top: 20px;
}

.button {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 5px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    backdrop-filter: blur(20px);
}

.overlay div {
    padding: 20px;
    background-color: transparent;
    color: white;
    font-size: 30px; /* Adjusted font size for smaller text */
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.bio-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    width: 400px;
    height: 300px;
}

.bio-container.visible {
    opacity: 1;
}

.view-counter {
    position: absolute;
    bottom: 10px; /* Adjusted position from bottom */
    left: 10px; /* Position from left */
    color: white;
    padding: 2px 5px; /* Smaller padding */
    border-radius: 3px; /* Smaller border radius */
    display: flex;
    align-items: center;
    font-size: 14px; /* Smaller font size */
    font-weight: bold; /* Bold text */
    box-sizing: border-box;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7); /* Glow effect for text */
}

.view-counter img {
    width: 20px; /* Smaller size */
    height: 20px; /* Smaller size */
    margin-right: 2px; /* Adjusted margin */
    box-shadow: none; /* Removed glow effect from view icon */
}