.bg,
.bgg {
    background-color: rgba(0, 0, 0, .527);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    padding: 10px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.199);
}

body {
    background-color: #000;
    user-select: none;
    color: #cecece;
    font-family: monospace;
    -webkit-tap-highlight-color: transparent
}

.bgg {
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(0.5);
    background-image: url("../images/b.webp");
    animation: yoo 3s cubic-bezier(.06,.97,0,.99);
}

.nowplaying {
    position: absolute;
    top: 20px;
    transform: translateY(-90px);
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-size: 14px;
    background-color: rgba(85, 63, 43, 0.253);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 0 1px inset rgba(255, 255, 255, 0.075);
    padding: 10px;
    padding-right: 20px;
    z-index: 2;
    border-radius: 50px;
    transition: transform 2s cubic-bezier(.06,.97,0,.99), width 5s cubic-bezier(.02,.91,0,.99);
    width: 30px;
}
.nowplaying .col {
    display: flex;
    flex-direction: column;
    flex: 1; 
    min-width: 0; 
}

.nowplaying .col span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nowplaying img {
    width: 40px;
    border-radius: 50%;
    flex-shrink: 0; 
}

@keyframes yoo {
    0% {
        opacity: 0;
       filter: blur(10px); 
        scale: 1.2;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}

.bg {
    align-items: center;
    justify-content: center
}

.contact,
.main {
    flex-direction: column;
    display: flex;
    align-items: center;
}


.main {
    background-color: transparent;
    backdrop-filter: blur(30px) saturate(0.4);
    box-shadow: 0 -20px 30px -10px inset rgba(0, 0, 0, 0.671), 0 10px 30px -10px inset rgba(255, 255, 255, 0.24), 0 0 0 1px inset #ffffff31, 0 0 10px rgba(0, 0, 0, 0.774);
    border-radius: 40px;
    padding: 30px;
    width: 530px;
    gap: 5px;
    animation: yoo 4s cubic-bezier(.06,.97,0,.99);
}

.title {
    font-size: 32px;
    font-weight: 600
}

.desc {
    font-size: 18px;
    line-height: 24px
}

.desc-container {
    display: flex;
    align-items: center;
    min-height: 100px;
}

.wm {
    z-index: 99;
    position: absolute;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 0 1px inset rgba(255, 255, 255, 0.103);
    bottom: 20px;
    color: rgba(255, 255, 255, 0.603);
    background-color: rgba(255, 255, 255, 0.082);
    padding: 10px 20px;
    border-radius: 20px;
}

.msg {
    font-size: 18px;
    margin: 10px;
}

.seperator {
    width: 80%;
    border: 1px solid rgba(255, 255, 255, .233);
}

.dmesg {
    color: #0084ff;
    cursor: not-allowed;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: yoo 2s cubic-bezier(.06,.97,0,.99);
    background-color: rgba(148, 148, 148, 0.219);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 -20px 20px -10px inset rgba(0, 0, 0, 0.336), 0 20px 20px -10px inset rgba(255, 255, 255, 0.103), 0 0 0 1px inset rgba(255, 255, 255, 0.11);
    flex: 1; 
    text-align: center; 
    min-width: 0; 
}

.ct {
    font-size: 18px;
    font-weight: 700;
}

.cd {
    font-size: 16px;
    font-weight: 400;
    user-select: all;
    line-break: anywhere;
    display: none;
}

.contact:hover .ct {
    display: none;
}

.contact:hover .cd {
    display: inline; 
}


.cs {
    border-radius: 20px 5px 5px 20px
}

.cm {
    border-radius: 5px
}

.ce {
    border-radius: 5px 20px 20px 5px
}

.msgc {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    gap: 4px;
    width: 100%; 
}


.fw {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.info {
    background-color: rgba(255, 255, 255, 0.342);
    box-shadow: 0 -50px 20px -10px inset rgba(0, 0, 0, 0.336), 0 20px 20px -10px inset rgba(255, 255, 255, 0.103), 0 0 0 1px inset rgba(255, 255, 255, .062);
    border-radius: 20px;
    padding: 10px;
    padding-left:12px;
    transition: .4s cubic-bezier(.14, .83, 0, .99);
    cursor: pointer;
    display:flex;
    align-items: center;
}

.info:hover {
    scale: 0.95;
    opacity: .8
}

.info:active {
    scale: 0.9;
    opacity: 1
}

.typewriter-cursor::after {
    content: '🎙️';
    animation: 1s linear infinite blink-caret;
    color: #fff;
    font-weight: lighter;
    margin-left: 2px
}

.highlight-text {
    background-color: #b8b8b8;
    border-radius:2px;
    color: #000000;
}

@keyframes blink-caret {

    from,
    to {
        color: transparent
    }

    50% {
        color: #fff
    }
}

.row {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center
}

#responsiveslide {
    overflow: hidden;
    text-overflow: ellipsis
}