@font-face {
    font-display: swap;
    font-family: Raleway;
    src: url(/assets/fonts/raleway.ttf) format(truetype);
}

@font-face {
    font-display: swap;
    font-family: Satoshi;
    src: url(/assets/fonts/Satoshi-Variable.ttf) format(truetype);
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Satoshi', sans-serif !important;
    color: #FFFFFF;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url(/assets/images/background.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(0.45vw) brightness(0.6);
    transform: scale(1.02); 
    z-index: -1;
}

.card {
    position: relative;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(16px);
    border-radius: 25px;
    width: 620px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.avatar img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
}

.name h1 {
    margin: 0;
    font-size: 38px;
    font-weight: normal;
    text-shadow: none;
    font-weight: 600;
    filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.6));
}

.subtitle p {
    margin: 5px 0 0 0;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
}

.socials {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 1));
}

.social:hover {
    opacity: 0.7;
    transform: scale(1.1);
}