/* ============================================
   LARS MEDIA GROUP - STABLE PREMIUM STYLES
   ============================================ */

/* RESET & VARIABLES */
:root {
    --bg-color: #030508;
    --text-color: #e8e8e8;
    --text-muted: #888;
    --accent-cyan: #00f0ff;
    --accent-pink: #ff0055;
    --accent-purple: #a855f7;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1400px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom Cursor */

    /* COPY PROTECTION */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Allow text selection in form inputs */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

/* Prevent image dragging */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ============================================
   CORE VISIBILITY LOGIC (CRITICAL FIX)
   ============================================ */
/* 
   Main Content is always in the DOM (display: block implied),
   but transparent and unclickable initially.
*/
#main-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease;
    width: 100%;
    position: relative;
    z-index: 10;
}

body.active-site #main-content {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo .pulse-circle {
    animation: pulseGlow 1s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        filter: drop-shadow(0 0 5px #00f0ff);
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px #00f0ff);
    }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    transition: width 0.3s ease;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    z-index: 99998;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: var(--accent-cyan);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

#mobile-menu-overlay.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered animation delay */
.mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-link:hover {
    color: #fff;
    text-shadow: 0 0 20px var(--accent-cyan);
}

.mobile-nav-link.highlight {
    color: var(--accent-cyan);
}

.mobile-menu-footer {
    margin-top: 50px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

/* ============================================
   HEADER & NAVIGATION (Modern Horizontal)
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.8s ease, padding 0.3s ease, background 0.3s ease;
    /* Gradient for legibility on hero */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

body.active-site header {
    transform: translateY(0);
}

header.scrolled {
    padding: 18px 60px;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.brand-mark {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.4));
    transition: transform 0.5s ease;
}

.brand-lockup:hover .brand-mark {
    transform: rotate(60deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.brand-suffix {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--accent-cyan);
    letter-spacing: 3px;
    font-weight: 500;
}

/* --- NAV MENU (Horizontal, Small, Elegant) --- */
nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav ul li a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Contact Button (Highlight) */
nav ul li a.highlight {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 3px;
    background: transparent;
}

nav ul li a.highlight::after {
    display: none;
}

nav ul li a.highlight:hover {
    background: #fff;
    color: var(--bg-color);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    position: relative;
    overflow: hidden;
}

.map-container {
    position: relative;
    height: 500px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.map-container:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.map-frame {
    width: 100%;
    height: 100%;
    position: relative;
    filter: invert(90%) hue-rotate(180deg) contrast(1.2);
    /* Dark Mode Hack for Maps */
}

/* Overlay to unify map color with theme */
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 5, 8, 0.4);
    pointer-events: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.contact-item h3 {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-item p {
    font-size: 1.2rem;
    color: #fff;
    font-family: var(--font-body);
}

.neon-link {
    color: #fff;
    border-bottom: 1px solid var(--accent-pink);
    padding-bottom: 2px;
}

.neon-link:hover {
    color: var(--accent-pink);
    box-shadow: 0 2px 10px rgba(255, 0, 85, 0.5);
}

.btn-glitch {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-glitch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-glitch:hover::before {
    left: 100%;
}

.btn-glitch:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow:
        0 0 25px rgba(0, 240, 255, 0.3),
        0 0 50px rgba(0, 240, 255, 0.1),
        inset 0 0 15px rgba(0, 240, 255, 0.05);
    transform: scale(1.02);
}

/* ANIMATIONS INITIAL STATE */
/* Elements start hidden, JS adds .visible class */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.stat-item,
.card,
.song-card {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

/* VISIBLE STATE */
.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* ============================================
   INTRO SCREEN (Vibrant Portal)
   ============================================ */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
    /* Vibrant Animated Gradient Background */
    background: linear-gradient(-45deg, #0a0a0a, #1a0a2e, #0d1f3c, #0a1628);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

#intro-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body.active-site #intro-screen {
    transform: translateY(-100%);
    pointer-events: none;
}

.intro-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.intro-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 10vw, 120px);
    letter-spacing: 8px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.intro-content .subtitle {
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
}

#enter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 18px 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 4px;
    cursor: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

#enter-btn:hover::before {
    left: 100%;
}

#enter-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    box-shadow:
        0 0 30px rgba(0, 240, 255, 0.3),
        0 0 60px rgba(0, 240, 255, 0.1),
        inset 0 0 20px rgba(0, 240, 255, 0.05);
    transform: scale(1.02);
}

/* ============================================
   CANVAS & EFFECTS
   ============================================ */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */
#video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -3;
    overflow: hidden;
}

#video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 5, 8, 0.7) 0%, rgba(3, 5, 8, 0.9) 100%);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    cursor: pointer;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
    transform: translateY(-5px);
}

#back-to-top svg {
    transition: transform 0.3s ease;
}

#back-to-top:hover svg {
    transform: translateY(-3px);
}

/* ============================================
   SOCIAL MEDIA FLOATING BAR
   ============================================ */
#social-bar {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 9996;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    border: 1px solid transparent;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
    border-color: var(--accent-cyan);
}

.social-link:hover {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.social-link svg {
    position: relative;
    z-index: 1;
}

.social-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    margin-top: 10px;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.04;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAA5OTkAAAAAAAAAAABMTExERERmRmZjUxrkAAAACHRSTlMAMwAqzMzMzM0Uy30AAABWSURBVDjLrdDBDcAgDADBBAGlGAPTPyWs0TJkIPfP+zmv57Q5h8fJtWwt1yLXcht5FtuI59hGPEG2EU+yjfQp9pE+xT7Sp9hH+hT7SJ9iH+lT7CN96h/7A6+5B/kD8rO2AAAAAElFTkSuQmCC');
}

/* SCANLINE OVERLAY (CRT/Cinematic Effect) */
.scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8999;
    opacity: 0.03;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.3) 2px,
            rgba(0, 0, 0, 0.3) 4px);
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

/* VIGNETTE OVERLAY (Depth Focus) */
.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8998;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

/* ============================================
   MODERN CURSOR (Minimal & Clean)
   ============================================ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-outline {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}

body.cursor-hover .cursor-outline {
    width: 55px;
    height: 55px;
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
}

/* ============================================
   SECTIONS & TYPOGRAPHY
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 120px 0;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero h1 {
    font-size: clamp(60px, 15vw, 200px);
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    background: linear-gradient(180deg, #fff 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    letter-spacing: 0.5em;
    margin-bottom: 50px;
    color: var(--accent-cyan);
}

/* GRID & CARDS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.section-number {
    font-size: 10rem;
    line-height: 0.8;
    opacity: 0.1;
    font-family: var(--font-heading);
    font-weight: bold;
    display: block;
    margin-bottom: -20px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.card:hover {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

.card .icon {
    font-size: 2.5rem;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 50px;
}

.stat-item h3 {
    font-size: 4rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* HITS & ARTISTS */
.hits-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 0;
}

.song-card {
    min-width: 280px;
}

.cover {
    height: 280px;
    width: 100%;
    background: #222;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.cover::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
    background: #000;
    transform: scaleX(0);
    transform-origin: right;
}

/* Initial state for reveal effect: mask covers image, then slides away */
.song-card.visible .cover::after {
    transform: scaleX(0);
}

.song-card .cover::after {
    transform: scaleX(1);
}

/* Hidden state */

/* Gradients */
.color-1 {
    background: linear-gradient(135deg, #111, #ff0055);
}

.color-2 {
    background: linear-gradient(135deg, #111, #00f0ff);
}

.color-3 {
    background: linear-gradient(135deg, #111, #a855f7);
}

.artist-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
}

/* ============================================
   ARTIST GRID & SONG CARDS
   ============================================ */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px 0;
    margin-bottom: 30px;
}

.song-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.song-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
}

.song-card .cover {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.song-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(30%);
}

.song-card:hover .cover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.song-card .cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.song-card .info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.song-card .info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.artist-pill {
    padding: 10px 30px;
    border: 1px solid #333;
    color: #888;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    background: transparent;
}

.artist-pill:hover {
    border-color: var(--accent-cyan);
    color: #fff;
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: translateY(-3px) rotateX(5deg);
}

/* FOOTER */
footer {
    border-top: 1px solid transparent;
    background-image: linear-gradient(#010101, #010101),
        linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-pink), transparent);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 80px 0 60px;
    margin-top: 100px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    filter: blur(0.5px);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.scrolled .logo {
    color: #fff;
}

/* ============================================
   PARTNER LOGOS SECTION
   ============================================ */
.section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.partner-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-logo svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
}

.partner-logo:hover {
    color: var(--accent-cyan);
    transform: scale(1.2);
}

.partner-logo:hover svg {
    filter: drop-shadow(0 0 15px var(--accent-cyan));
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: all 0.4s ease;
}

.team-card:hover .team-avatar {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-avatar img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-cyan);
    letter-spacing: 2px;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .grid-2,
    .grid-3,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    #hero h1 {
        font-size: 15vw;
    }

    nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        color: #fff;
        font-size: 2rem;
    }

    header {
        padding: 20px;
    }

    /* Team grid responsive */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Hide social bar on mobile */
    #social-bar {
        display: none;
    }

    /* Back to top button position */
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Partners grid */
    .partners-grid {
        gap: 25px;
    }

    .partner-logo {
        width: 50px;
        height: 50px;
    }

    .partner-logo svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 30px 20px;
    }
}