body {
    background: #000000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow: hidden;
    cursor: url('assets/cursor.png') 0 0, auto;
}

#pixel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 199999191919199199999999999999999999999999999999;
    background-image: url('assets/pixel.png');
    background-repeat: repeat;
    background-size: 2px 2px;
    pointer-events: none;
}


*, *::before, *::after {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

img, svg, a {
    -webkit-user-drag: none;
}

::selection { background: transparent; }

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #000000;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    backdrop-filter: blur(5px);
    transition: opacity 0.67s ease;
}

.overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-text {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    user-select: none;
}

.canvas-blur {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 1;
    filter: blur(1px);
    pointer-events: none;
}
canvas { width: 100vw; height: 100vh; display: block; }

#main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s;
}
.hidden { opacity: 0; pointer-events: none; }

.profile-container { 
    width: 100%; 
    max-width: 460px; 
    perspective: 1000px;
}

.profile-card {
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.8);
    padding: 2.7rem 2.2rem 2.3rem;
    border: 2px solid #222;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0.85;
    backdrop-filter: blur(5px);
    align-items: center;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.profile-card > * {
    position: relative;
    z-index: 2;
}

.card-views {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
    background: #000000;
    border-radius: 8px;
    border: 2px solid #333;
    font-size: 1rem;
    font-weight: 700;
    padding: 6px 14px;
    color: #fff;
}
.card-views[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -30px;
    right: 5px;
    background: #000000;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    border: 1px solid #333;
    box-shadow: 0 2px 10px #000;
    z-index: 9999;
    cursor: url('assets/cursor.png') 0 0, auto;
}
.card-views:hover::after { opacity: 1; }
.card-views svg { width: 22px; height: 22px; margin-right: 6px; filter: drop-shadow(0 0 6px #fff); }

.avatar-container {
  --ring-width: 18px;
  
  width: 110px;
  height: 110px;
  position: relative;
}

.avatar {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 50%;
  border: 3px solid #333;
  display: block;
  background: #000;
}

.status-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + (2 * var(--ring-width)));
  height: calc(100% + (2 * var(--ring-width)));
  border-radius: 50%;
  border: var(--ring-width) solid rgba(255,255,255,0.06);
  box-sizing: content-box;
  pointer-events: none;
}

.badges {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin: 1.2rem 0 1rem;
    cursor: url('assets/cursor.png') 0 0, auto;
    z-index: 99999999;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    box-shadow: none;
    cursor: url('assets/cursor.png') 0 0, auto;
    position: relative;
    transition: transform 0.18s;
    padding: 0;
    width: 25px;
    height: 25px;
    z-index: 99999999;
    border: none;
}
.badge.glow svg {
    width: 25px ;
    height: 25px;
    color: inherit;
    fill: currentColor;
    stroke: currentColor;
    filter: drop-shadow(0 0 10px currentColor);
    z-index: 99999999;
}
.badge[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    white-space: nowrap;
    border: 1px solid #333;
    box-shadow: 0 2px 10px #000;
    z-index: 99999999;
}
.badge:hover::after { opacity: 1; }
.badge:hover { transform: scale(1.15); }

.discord-status {
    position: absolute;
    font-size: 0.9rem;
    color: #cfcfcf;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.subtitle {
    font-size: 1rem;
    color: #cfcfcf;
    margin-bottom: 0.367rem;
    text-align: center;
}

.glow-type {
    position: relative;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.glow-type .cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    vertical-align: bottom;
    margin-left: 2px;
    background: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    bottom: 10%;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
    cursor: url('assets/cursor.png') 0 0, auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    text-decoration: none;
    transition: background 0.25s;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    padding: 0;
    position: relative;
    cursor: url('assets/cursor.png') 0 0, auto;
}

.social-link svg,
.social-link img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: filter 0.3s;
    filter: drop-shadow(0 0 6.7px #fff);
    fill: #fff;
}

.social-link.litecoin img {
    width: 40px;
    filter: drop-shadow(0 0 6.7px #fff);
    height: 40px;
}

.social-link:hover {
    background: transparent;
}

.social-link[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 85%;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    margin-bottom: 6px;
    z-index: 9999;
    border: none;
    white-space: nowrap;
    filter: none;
}

.social-link:hover::before {
    opacity: 1;
}

@media (max-width: 700px) {
    .profile-card { padding: 1.2rem; margin: 1rem; }
    .badges { gap: 10px; }
    .avatar-container { width: 80px; height: 80px; }
    .avatar, .status-ring { width: 80px; height: 80px; }
    .glow-type { font-size: 1.3rem; }
    .card-views { font-size: .8rem; padding: 4px 8px; }
    .social-link, .social-link svg { width: 32px; height: 32px; font-size: 1.5rem; }
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 10px;
    border: 2px solid #333;
    background: #000000;
    color: #fff;
    cursor: url('assets/cursor.png') 0 0, auto;
    transition: transform .15s, background .2s;
}
.btn-icon:hover { transform: scale(1.08); }
.btn-icon svg { filter: drop-shadow(0 0 8px #fff); }
.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.music-card { margin-top: 1rem; padding: 1.4rem 1rem 1.4rem; min-height: 128px; }
.music-compact {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
}
.music-thumb {
    width: 64px; height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #222;
    flex-shrink: 0;
    margin-top: 10px;
}
.music-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
    justify-content: center;
}
.music-title {
    font-weight: 700;
    font-size: 1.11rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: initial;
    margin-bottom: 4px;
}

#volume {
    width: 100%;
    accent-color: #fff;
    background: transparent;
    margin: 6px 0 0 0;
    height: 3px;
    border-radius: 2px;
    outline: none;
    box-shadow: none;
    appearance: none;
}

#volume::-webkit-slider-thumb {
    width: 0px;
    height: 0px;
    background: none;
    box-shadow: none;
    border: none;
    appearance: none;
}

#volume::-moz-range-thumb {
    width: 0px;
    height: 0px;
    background: none;
    border: none;
    box-shadow: none;
}

#volume::-ms-thumb {
    width: 0px;
    height: 0px;
    background: none;
    border: none;
    box-shadow: none;
}

#volume::-webkit-slider-runnable-track {
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

#volume::-ms-fill-lower,
#volume::-ms-fill-upper {
    background: #fff;
}
#volume:focus { outline: none; }
#volume:active { outline: none; }

.music-bar {
    width: 100%;
    height: 10px;
    background: #1b1b1b;
    border: 2px solid #222;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}
.music-bar #progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #aaa, #fff);
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

@media (max-width: 700px) {
    .profile-card { padding: 1.2rem; margin: 1rem; }
    .badges { gap: 10px; }
    .avatar-container { width: 80px; height: 80px; }
    .avatar { width: 80px; height: 80px; }
    .status-ring { width: 92px; height: 92px; }
    .glow-type { font-size: 1.3rem; }
    .card-views { font-size: .8rem; padding: 4px 8px; }
    .social-link, .social-link svg { width: 32px; height: 32px; font-size: 1.5rem; }
    .music-thumb { width: 56px; height: 56px; }
    .music-card { min-height: 98px; }

}

.volume-card {
  background: #000;
  border: 2px solid #222;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.8);
  padding: 12px 14px;
  z-index: 4000;
}

.volume-card .vc-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vc-button {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 2px solid #333;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: url('assets/cursor.png') 0 0, auto;
  transition: transform 0.15s, background 0.2s;
}
.vc-button:hover { transform: scale(1.08); }
.vc-button svg { filter: drop-shadow(0 0 8px #fff); }

.volume-card .vc-slider-wrap {
  flex: 1;
  max-width: 320px;
  overflow: hidden;
}

.volume-card .vc-slider {
  width: 100%;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  cursor: url('assets/cursor.png') 0 0, auto;
  background: linear-gradient(to right, #fff var(--value, 50%), #333 var(--value, 50%));
  border: 1px solid #222;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.volume-card .vc-slider::-webkit-slider-thumb,
.volume-card .vc-slider::-moz-range-thumb,
.volume-card .vc-slider::-ms-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #ddd);
  border: 2px solid #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.8), 0 2px 4px rgba(0,0,0,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  top: -6px;
}
.volume-card .vc-slider::-webkit-slider-thumb:hover,
.volume-card .vc-slider::-moz-range-thumb:hover,
.volume-card .vc-slider::-ms-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(255,255,255,1), 0 3px 6px rgba(0,0,0,0.4);
}

.volume-card.vc-animated .vc-slider-wrap {
  max-width: 0;
  transition: max-width .35s ease;
}
.volume-card.vc-animated:hover .vc-slider-wrap {
  max-width: 320px;
}

.vc-dir-left .vc-inner { flex-direction: row-reverse; }
.vc-dir-right .vc-inner { flex-direction: row; }
