@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #070708;
    color: #e5e7eb;
}

.hero-bg {
    background:
        linear-gradient(rgba(7, 7, 8, 0.75), rgba(7, 7, 8, 0.95)),
        url('https://images.unsplash.com/photo-1472145246862-b24cf25c4a36?q=80&w=2071&auto=format&fit=crop'),
        #0a0a0c;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 100vh;
}

.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-card:hover .glass {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.member-card img {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card:hover img {
    filter: grayscale(0);
    transform: scale(1.08);
}

.album-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: scale(1.01);
}

.card-yellow:hover {
    border-color: rgba(234, 179, 8, 0.8) !important;
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.3) !important;
}

.card-green:hover {
    border-color: rgba(34, 197, 94, 0.8) !important;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3) !important;
}

.nav-link {
    position: relative;
}

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

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

#mobile-menu {
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

#mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.active {
    display: flex;
}

.label-logo-transparent {
    mix-blend-mode: screen;
    filter: brightness(1.2);
}

#bg-audio {
    display: none;
}

#cookie-banner {
    transform: translateY(150%);
    transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

#cookie-banner.active {
    transform: translateY(0);
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 10px;
}

.select-text {
    user-select: text !important;
}

.lang-switch {
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 900;
}

.hero-glow {
    animation: soft-glow 8s infinite alternate;
}

@keyframes soft-glow {
    from {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0);
    }

    to {
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    }
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.2);
    height: 4px;
    border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -4px;
    background-color: #3b82f6;
    height: 12px;
    width: 12px;
    border-radius: 50%;
}

input[type="range"]:focus::-webkit-slider-thumb {
    outline: 2px solid rgba(59, 130, 246, 0.4);
    outline-offset: 2px;
}
