@font-face {
    font-family: 'font';
    src: url('../fonts/fonts-nocs.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'font', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    perspective: 1000px;
    background-color: #000000;
    cursor: url('../../images/nocs/cursors/cursor.cur'), auto;
}

.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(5px);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 85%;
    height: 35px;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.audio-details {
    flex: 1;
    min-width: 0;
}

.song-name {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: bold;
    white-space: nowrap;
    color: white;
    filter: brightness(100%);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.audio-player img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
}

p {
    font-family: 'font', Arial, sans-serif;
    font-size: 1rem;
    color: white;
    filter: brightness(100%);
    text-shadow: 0 0 1px rgba(1, 255, 255, 0.8);
    margin-top: 10px;
}

.center-box input[type="range"] {
    width: 80px;
    height: 4px;
    appearance: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#volume-control {
    margin-left: 4px;
    direction: rtl;
    vertical-align: middle;
    writing-mode: vertical-lr;
    position: absolute;
    top: 10%;
    bottom: 0;
    right: 5%;
    height: 80%; 
    transform: none;
    width: 8.5px;
    background: transparent; 
    filter: brightness(100%);
    box-shadow: 
        0 0 5px rgba(21, 255, 255, 1),
        0 0 10px rgba(21, 255, 255, 0.8),
        0 0 20px rgba(21, 255, 255, 0.6), 
        0 0 30px rgba(21, 255, 255, 0.4), 
        0 0 40px rgba(21, 255, 255, 0.3); 
    cursor: url('../../images/nocs/cursors/cursor.cur'), auto;
}

#volume-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px; 
    height: 15px; 
    background-color: white; 
    border-radius: 50%; 
    filter: brightness(100%);
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6), 
        0 0 30px rgba(255, 255, 255, 0.4), 
        0 0 40px rgba(255, 255, 255, 0.3); 
    cursor: url('../../images/nocs/cursors/cursor.cur'), auto;
}

#volume-control::-moz-range-thumb {
    width: 15px;
    height: 15px; 
    background-color: white; 
    border: none;
    border-radius: 50%; 
    filter: brightness(100%);
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6), 
        0 0 30px rgba(255, 255, 255, 0.4), 
        0 0 40px rgba(255, 255, 255, 0.3); 
    cursor: url('../../images/nocs/cursors/cursor.cur'), auto;
}

#volume-control::-ms-thumb {
    width: 15px; 
    height: 15px; 
    background-color: white; 
    border: none;
    border-radius: 50%; 
    filter: brightness(100%);
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6), 
        0 0 30px rgba(255, 255, 255, 0.4), 
        0 0 40px rgba(255, 255, 255, 0.3); 
    cursor: url('../../images/nocs/cursors/cursor.cur'), auto;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(10px);
    pointer-events: none;
}

@keyframes popin {
    0% { transform: scale(0.5) translateX(-50%); }
    10% { transform: scale(0.6) translateX(-50%); }
    20% { transform: scale(0.7) translateX(-50%); }
    30% { transform: scale(0.8) translateX(-50%); }
    40% { transform: scale(0.85) translateX(-50%); }
    50% { transform: scale(0.9) translateX(-50%); }
    60% { transform: scale(0.93) translateX(-50%); }
    70% { transform: scale(0.96) translateX(-50%); }
    80% { transform: scale(0.98) translateX(-50%); }
    90% { transform: scale(0.99) translateX(-50%); }
    100% { transform: scale(1) translateX(-50%); }
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: #f0f0f0;
    font-weight: 580!important;
    user-select: none;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    display: block;
    z-index: 1;
    transform: scale(0) translateX(-50%);
    left: 50%;
    bottom: 110%;
    letter-spacing: .01cm!important;
    font-size: 14.3px;
    transition: transform 0.1s ease-out;
}

.role-icon-wrapper {
    padding: 7px 10px 1.5px;
    border-radius: 50px;
    max-width: -moz-fit-content;
    max-width: fit-content;
    display: inline-flex;
    place-items: center;
    margin: 2px auto 20px;
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.role-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    border: none;
    box-shadow: none;
}

.role-icon img {
    width: 31px;
    height: 31px;
}

.role-icon:hover .tooltip,
.role-icon:focus-within .tooltip {
    animation: popin 0.1s ease-out forwards;
}

.background-video {
    position: fixed;
    top: -10;
    left: -10;
    width: 110%;
    height: 110%;
    object-fit: cover;
    filter: blur(0px);
    z-index: -1; 
    pointer-events: none; 
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(100%);
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6), 
        0 0 30px rgba(255, 255, 255, 0.4), 
        0 0 40px rgba(255, 255, 255, 0.3); 
    color: white;
    font-size: 3rem;
    font-family: 'font', Arial, sans-serif;
    cursor: url('../../images/nocs/cursors/cursor.cur'), auto;
    z-index: 999;
    text-align: center;
    opacity: 1; 
    transition: opacity 5s ease-out visibility 0s 5s; 
    visibility: visible;
}

.overlay.hidden {
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 5s ease-out, visibility 0s 5s; 
}

.overlay .click-text {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hide-overlay {
    opacity: 0;
    visibility: hidden;
}

.typewrite {
    filter: brightness(90%);
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.7), 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 1);
}

#tilt-card {
    transform-origin: center;
    transition: transform 0.1s ease;
    transform: rotateX(0deg) rotateY(0deg) scale(1);
}

.center-box {
    position: relative; 
    width: 550px; 
    height: 400px; 
    background-color: rgba(5, 5, 5, 0.4);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    z-index: 1;
    transform: translateZ(0);
}

.pfp {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.username {
    font-family: 'font', Arial, sans-serif;
    font-size: 3rem;
    color: white;
    filter: brightness(100%);
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(255, 255, 255, 0.4), 
        0 0 30px rgba(255, 255, 255, 0.4), 
        0 0 40px rgba(255, 255, 255, 0.4); 
    margin-top: 10px;
}
.background-video {
    position: fixed;
    top: -10;
    left: -10;
    width: 110%;
    height: 110%;
    object-fit: cover;
    filter: blur(0px);
    z-index: -1; 
    pointer-events: none; 
}

.social-icons {
    display: flex;
    flex-direction: row;
    margin-top: 1px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    filter: brightness(5000%);
    margin-left: 5px;
    margin-right: 5px;
    background-size: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    filter: drop-shadow(0px 0px 4px #ffffff) !important;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

