@font-face {
    font-family: "Komigo3D";
    src: url("assets/fonts/komigo/Komigo3D-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Comico";
    src: url("assets/fonts/comico/Comico.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
}

body {
    background-color: black;
    color: white;
    font-family: "Comico", sans-serif;
    user-select: none;
    background: linear-gradient(180deg, #020c20 0%, #dcdcdd 40%, #051c30 100%);
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 2px black;
}

.root {
    background-image: url(./assets/img/bg.jpeg);
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-size: cover;
    opacity: .25;
    pointer-events: none;
}

.wrapper {
    /* border: 1px solid white; */
    position: relative;
    width: 600px;
    z-index: 2;
    backdrop-filter: blur(7px);
    background: linear-gradient(180deg, rgba(31, 82, 184, 0.4) 0%, rgba(79, 127, 223, 0.4) 40%, rgba(5, 27, 46, 0.4) 100%);
    padding: 10px;
    box-shadow: 0px 0px 10px 2px rgb(105, 155, 255);

}

.header-container {
    display: flex;
    height: 200px;
    align-items: center;
}

.header-container>img {
    height: -webkit-fill-available;

}

.header-container>div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header-container>div>* {
    height: 60px;
}


.live {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    border-radius: 5px;
    height: 22px !important; 
    font-size: 16px;
    width: 85px;
    font-weight: 1000;
    top: 10px;
    padding: 5px;
    visibility: hidden;
}

.live::before {
    position: absolute;
    left: 4px;
    content: '';
    width: 10px;
    aspect-ratio: 1;
    
    border-radius: 15px;
}
.live.online::before {
    
    background-color: rgb(1, 220, 1);
    box-shadow: 1px px 1px rgb(0, 100, 0);
}
.live.online {
    visibility: visible;
    border: 2px solid rgb(1, 220, 1);
    color: rgb(1, 220, 1);
    text-shadow: 1px 1px 1px rgb(0, 100, 0);
    box-shadow: 1px 1px 1px rgb(0, 100, 0);
}
.live.offline::before {
    background-color: rgb(220, 1, 1);
    box-shadow: 1px px 1px rgb(100, 0, 0);
}
.live.offline {
    visibility: visible;
    border: 2px solid rgb(220, 1, 1);
    color: rgb(220, 1, 1);
    text-shadow: 1px 1px 1px rgb(100, 0, 0);
    box-shadow: 1px 1px 1px rgb(100, 0, 0);
}

.avatar {
    width: 200px;
    aspect-ratio: 1;
    background-image: url(./assets/img/icon.png);
    background-size: contain;
}


.nick {
    font-family: "Komigo3D", sans-serif;
    font-size: 42px;
    font-weight: 1000;
    letter-spacing: 2px;
}

.contact {
    font-size: 18px;
    font-weight: 700;
    color: rgb(230, 230, 230);
    padding-left: 2px;
}

.select {
    user-select: all;
}

main {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    padding: 20px;
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: .1s;
    
}

.card:hover {
    background-color: rgba(0, 0, 0, .2);
}

.card>p {
    font-weight: 700;
    font-size: 30px;
}


.icon {
    width: 40px;
    background-size: contain;
    aspect-ratio: 1;
    transition: .1s;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, .5));
    background-repeat: no-repeat;
    background-position: center;
}

#tiktok {
    background-image: url(./assets/img/tik-tok2.png);
}

.card:hover>#tiktok {
    background-image: url(./assets/img/tik-tok.png);
}

#twitch {
    background-image: url(./assets/img/twitch2.png);
}

.card:hover>#twitch {
    background-image: url(./assets/img/twitch.png);
}

#instagram {
    background-image: url(./assets/img/instagram2.png);
}

.card:hover>#instagram {
    background-image: url(./assets/img/instagram.png);
}

#kick {
    background-image: url(./assets/img/kick2.png);
}

.card:hover>#kick {
    background-image: url(./assets/img/kick.png);
}

#discord {
    background-image: url(./assets/img/discord2.png);
}
.card:hover>#discord {
    background-image: url(./assets/img/discord.png);
}

#youtube {
    background-image: url(./assets/img/youtube2.png);
}
.card:hover>#youtube {
    background-image: url(./assets/img/youtube.png);
}

@media screen and (max-width: 650px) {
    .wrapper {
        scale: 0.7;
    }
    
}