body {
    background-color: #000;
    color: white;
    overflow-x: hidden;
    font-size: 1.2rem;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.6;
}

.glass-panel {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.artist-card .social-overlay {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.artist-card:hover .social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.artist-card:hover img {
    transform: scale(1.05);
    filter: grayscale(100%) brightness(0.4);
}

.artist-card img {
    transition: all 0.5s ease;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
