html, body {
    overflow: hidden;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    user-select: none;
    background-color: #2C2C2E;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('https://i.postimg.cc/k5S0rFbg/fundo.gif');
    background-size: cover;
    filter: blur(3px);
}

#profile-container {
    text-align: center;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    width: 320px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

#banner {
    background-size: cover;
    width: 100%;
    height: 150px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

#profile-picture {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -75px;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    background-color: #0f0f0f;
}

.avatar-decoration {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 154px;
    height: 154px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}

#name {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
}

#tagline {
    font-size: 12px;
    color: #808080;
    font-weight: bold;
}

.online {
    background-color: #43b581;
}

.offline {
    background-color: #747f8e;
}

.idle {
    background-color: #faa61a;
}

.dnd {
    background-color: #f04747;
}

.discord-status {
    width: 22px;
    height: 22px;
    box-shadow: 0px 0px 32px -6px rgb(0 0 0);
    position: absolute;
    margin: 16px 16px 16px 16px;
    top: 160px;
    right: 20px;
    left: 180px; 
    opacity: 0.9;
    border-radius: 100%;
    z-index: 2;
}

#badges {
    margin-top: 10px;
}

.badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: cover;
    margin: 0 5px;
}

#icons-container {
    padding: 15px;
    border-radius: 0 0 20px 20px;
    margin-top: 90px;
}

#icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon {
    margin: 0 5px;
}

.social-icon img {
    width: 40px;
    height: 40px;
}

.badge-container {
    position: relative;
    display: inline-block;
}

.badge-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    background-color: rgba(54, 55, 57, 0.8);
    color: #FFFFFF;
    padding: 5px;
    border-radius: 5px;
    font-size: 9px;
    white-space: nowrap;
}

.badge-container:hover .badge-info {
    opacity: 1;
}