/* Variables */
:root {
    --primary-color: #00f3ff;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;
    --neon-pink: #ff0080;
    --electric-blue: #0080ff;
    --cyber-purple: #8a2be2;
    --bg-dark: transparent;
    --bg-medium: transparent;
    --text-light: #ffffff;
    --text-medium: #b8b8b8;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Performance Optimizations - Enhanced for Chrome */
.hero-title, .hero-title .letter, .hero-title-ultra, .title-letter {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: transform, filter, opacity;
    contain: layout style paint;
}

/* Chrome-specific optimizations */
@supports (-webkit-appearance: none) {
    .title-letter {
        animation-fill-mode: both;
        backface-visibility: hidden;
        perspective: 1000px;
        transform-style: preserve-3d;
    }
}

/* Chrome Performance Boosts */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .title-letter {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
        animation-fill-mode: both;
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .hero-title-ultra {
        will-change: auto;
        contain: layout style paint;
    }
    
    /* Reduce animation complexity on slower devices */
    @media (max-width: 768px) or (prefers-reduced-motion) {
        .title-letter {
            animation-duration: 6s;
            animation-iteration-count: 1;
            filter: brightness(1.5) drop-shadow(0 0 15px rgba(0, 243, 255, 0.5));
        }
    }
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--text-light);
    overflow-x: hidden;
    cursor: none;
    padding-bottom: 120px;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Glassmorphism Désactivé pour les performances */
.glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.2);
    backdrop-filter: none;
}

.glass-strong {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 243, 255, 0.15);
    backdrop-filter: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.logo .logo-letter {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterGlow 3s ease-in-out infinite;
    position: relative;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo .logo-letter:nth-child(1) { animation-delay: 0s; }
.logo .logo-letter:nth-child(2) { animation-delay: 0.1s; }
.logo .logo-letter:nth-child(3) { animation-delay: 0.2s; }
.logo .logo-letter:nth-child(4) { animation-delay: 0.3s; }
.logo .logo-letter:nth-child(5) { animation-delay: 0.4s; }
.logo .logo-letter:nth-child(6) { animation-delay: 0.5s; }
.logo .logo-letter:nth-child(7) { animation-delay: 0.6s; }
.logo .logo-letter:nth-child(8) { animation-delay: 0.7s; }
.logo .logo-letter:nth-child(9) { animation-delay: 0.8s; }
.logo .logo-letter:nth-child(10) { animation-delay: 0.9s; }
.logo .logo-letter:nth-child(11) { animation-delay: 1.0s; }
.logo .logo-letter:nth-child(12) { animation-delay: 1.1s; }
.logo .logo-letter:nth-child(13) { animation-delay: 1.2s; }
.logo .logo-letter:nth-child(14) { animation-delay: 1.3s; }

.logo .logo-letter:hover {
    transform: scale(1.4) rotateY(360deg) rotateX(15deg);
    animation-play-state: paused;
    text-shadow: 
        0 0 20px var(--neon-pink),
        0 0 40px var(--electric-blue),
        0 0 60px var(--cyber-purple);
    filter: brightness(2) saturate(2);
}

.logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.logo:hover::before {
    opacity: 1;
    animation: shimmerGlow 1.5s ease-in-out infinite;
}

@keyframes letterGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
        transform: translateY(0) scale(1);
    }
    25% { 
        background-position: 25% 0%;
        filter: brightness(1.2);
        transform: translateY(-2px) scale(1.02);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.5);
        transform: translateY(-4px) scale(1.05);
    }
    75% { 
        background-position: 75% 100%;
        filter: brightness(1.2);
        transform: translateY(-2px) scale(1.02);
    }
}

@keyframes shimmerGlow {
    0%, 100% { 
        background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    }
    50% { 
        background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 243, 255, 0.2), rgba(255, 255, 0, 0.1));
    }
}


@keyframes logoAnimation {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px var(--primary-color));
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 25px var(--secondary-color));
        transform: scale(1.05);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-color);
    border-color: rgba(0, 243, 255, 0.3);
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.nav-links a:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Social Header */
.social-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-header-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-header-link svg {
    width: 18px;
    height: 18px;
    fill: var(--text-light);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-header-link:hover {
    transform: translateY(-2px) scale(1.1);
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

.social-header-link:hover svg {
    fill: var(--bg-dark);
}

.social-header-link[data-social="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-header-link[data-social="facebook"]:hover {
    background: #1877f2;
}

/* TalentAI Logo */
.talent-logo {
    height: 35px;
    display: flex;
    align-items: center;
}

.talent-logo-img {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0.8);
}

.talent-logo-img:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

#visualizer-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

#audio-visualizer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.7;
    text-transform: uppercase;
    perspective: 1500px;
    transform-style: preserve-3d;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.hero-title:active {
    transform: scale(0.95);
}

.hero-title:active .title-letter {
    animation-play-state: paused;
    transform: scale(1.2) rotateY(180deg) rotateX(15deg);
    filter: brightness(5) saturate(4);
}

.title-line {
    display: block;
    position: relative;
    letter-spacing: 0.2em;
    overflow: hidden;
    transform-style: preserve-3d;
}

.title-line .title-letter {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transform-origin: center bottom;
    animation: ultraHeroLetterDance 5s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(0, 243, 255, 1),
        0 0 60px rgba(255, 0, 128, 0.8),
        0 0 90px rgba(138, 43, 226, 0.6),
        0 0 120px rgba(0, 243, 255, 0.4),
        0 0 150px rgba(255, 0, 128, 0.2);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.8));
}

.title-line .title-letter:hover {
    transform: scale(2) rotateY(720deg) rotateX(30deg) translateZ(100px);
    animation-play-state: paused;
    filter: 
        brightness(4) 
        saturate(3) 
        drop-shadow(0 0 50px var(--neon-pink))
        drop-shadow(0 0 100px var(--electric-blue))
        drop-shadow(0 0 150px var(--cyber-purple))
        drop-shadow(0 0 200px var(--neon-pink));
    text-shadow: 
        0 0 40px var(--neon-pink),
        0 0 80px var(--electric-blue),
        0 0 120px var(--cyber-purple),
        0 0 160px var(--neon-pink),
        0 0 200px var(--electric-blue),
        0 0 240px var(--cyber-purple);
}

/* Délais d'animation pour chaque lettre */
.title-line:first-child .title-letter:nth-child(1) { animation-delay: 0s; }
.title-line:first-child .title-letter:nth-child(2) { animation-delay: 0.1s; }
.title-line:first-child .title-letter:nth-child(3) { animation-delay: 0.2s; }
.title-line:first-child .title-letter:nth-child(4) { animation-delay: 0.3s; }
.title-line:first-child .title-letter:nth-child(5) { animation-delay: 0.4s; }
.title-line:first-child .title-letter:nth-child(6) { animation-delay: 0.5s; }

.title-line:last-child .title-letter:nth-child(1) { animation-delay: 0.6s; }
.title-line:last-child .title-letter:nth-child(2) { animation-delay: 0.7s; }
.title-line:last-child .title-letter:nth-child(3) { animation-delay: 0.8s; }
.title-line:last-child .title-letter:nth-child(4) { animation-delay: 0.9s; }
.title-line:last-child .title-letter:nth-child(5) { animation-delay: 1.0s; }
.title-line:last-child .title-letter:nth-child(6) { animation-delay: 1.1s; }
.title-line:last-child .title-letter:nth-child(7) { animation-delay: 1.2s; }
.title-line:last-child .title-letter:nth-child(8) { animation-delay: 1.3s; }

@keyframes ultraHeroLetterDance {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
        background-position: 0% 50%;
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 243, 255, 0.8));
    }
    12% { 
        transform: translateY(-20px) rotateX(15deg) rotateY(10deg) rotateZ(2deg) scale(1.08);
        background-position: 20% 0%;
        filter: brightness(1.6) drop-shadow(0 0 30px rgba(255, 0, 128, 0.9));
    }
    25% { 
        transform: translateY(-40px) rotateX(-10deg) rotateY(-8deg) rotateZ(-3deg) scale(1.15);
        background-position: 50% 25%;
        filter: brightness(2.2) drop-shadow(0 0 40px rgba(138, 43, 226, 1));
    }
    37% { 
        transform: translateY(-60px) rotateX(20deg) rotateY(15deg) rotateZ(5deg) scale(1.22);
        background-position: 75% 50%;
        filter: brightness(2.8) drop-shadow(0 0 60px rgba(0, 243, 255, 1));
    }
    50% { 
        transform: translateY(-80px) rotateX(-5deg) rotateY(-12deg) rotateZ(-2deg) scale(1.3);
        background-position: 100% 75%;
        filter: brightness(3.5) drop-shadow(0 0 80px rgba(255, 0, 128, 1));
    }
    62% { 
        transform: translateY(-60px) rotateX(12deg) rotateY(8deg) rotateZ(4deg) scale(1.22);
        background-position: 75% 100%;
        filter: brightness(2.8) drop-shadow(0 0 60px rgba(138, 43, 226, 1));
    }
    75% { 
        transform: translateY(-40px) rotateX(-8deg) rotateY(-6deg) rotateZ(-1deg) scale(1.15);
        background-position: 50% 25%;
        filter: brightness(2.2) drop-shadow(0 0 40px rgba(0, 243, 255, 1));
    }
    87% { 
        transform: translateY(-20px) rotateX(8deg) rotateY(5deg) rotateZ(1deg) scale(1.08);
        background-position: 25% 0%;
        filter: brightness(1.6) drop-shadow(0 0 30px rgba(255, 0, 128, 0.9));
    }
}

/* ═══════════════════════════════════════════════════════════════
   🎭 HERO LOGO CONTAINER ULTRA-SPECTACULAIRE
   ═══════════════════════════════════════════════════════════════ */

.hero-logo-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    transform-style: preserve-3d;
    overflow: hidden;
    margin-bottom: 40px;
}

/* 🌟 PARTICULES FLOTTANTES */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -1s; }
.particle:nth-child(3) { left: 30%; animation-delay: -2s; }
.particle:nth-child(4) { left: 40%; animation-delay: -3s; }
.particle:nth-child(5) { left: 50%; animation-delay: -4s; }
.particle:nth-child(6) { left: 60%; animation-delay: -5s; }
.particle:nth-child(7) { left: 70%; animation-delay: -6s; }
.particle:nth-child(8) { left: 80%; animation-delay: -7s; }
.particle:nth-child(9) { left: 90%; animation-delay: -8s; }
.particle:nth-child(10) { left: 95%; animation-delay: -9s; }

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(0);
    }
}

/* 🎵 VINYLE ANIMÉ RÉVOLUTIONNAIRE */
.vinyl-container {
    position: absolute;
    top: 50px;
    right: 100px;
    z-index: 2;
    transform-style: preserve-3d;
}

.vinyl-record-hero {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(45deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    animation: vinylSpin 3s linear infinite;
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    transform: rotateX(15deg) rotateY(-10deg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vinyl-record-hero:hover {
    transform: rotateX(15deg) rotateY(-10deg) scale(1.1);
    animation-duration: 1s;
    filter: brightness(1.3);
}

.vinyl-grooves {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 243, 255, 0.1) 2deg,
        transparent 4deg
    );
    animation: grooveShimmer 4s ease-in-out infinite;
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.vinyl-hole {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);
}

.vinyl-logo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--bg-dark);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.vinyl-reflection {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
}

.needle {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 120px;
    height: 100px;
    transform: rotate(-30deg);
}

.needle-arm {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #666, #999, #666);
    border-radius: 2px;
    transform-origin: left center;
    animation: needleFloat 6s ease-in-out infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.needle-tip {
    position: absolute;
    right: -5px;
    top: -2px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ff0080, #ff4080);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-pink);
    animation: needlePulse 2s ease-in-out infinite;
}

@keyframes vinylSpin {
    from { transform: rotateX(15deg) rotateY(-10deg) rotateZ(0deg); }
    to { transform: rotateX(15deg) rotateY(-10deg) rotateZ(360deg); }
}

@keyframes grooveShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes needleFloat {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes needlePulse {
    0%, 100% { box-shadow: 0 0 10px var(--neon-pink); }
    50% { box-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--electric-blue); }
}

.title-line:first-child {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* 🎛️ ÉGALISEUR AUDIO DYNAMIQUE */
.audio-equalizer {
    position: absolute;
    top: 50px;
    left: 100px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 200px;
    z-index: 2;
}

.eq-bar {
    width: 12px;
    background: linear-gradient(to top, 
        var(--neon-pink) 0%, 
        var(--electric-blue) 50%, 
        var(--primary-color) 100%);
    border-radius: 6px;
    min-height: 20px;
    position: relative;
    animation: eqBounce 0.8s ease-in-out infinite alternate;
    box-shadow: 
        0 0 10px var(--primary-color),
        inset 0 0 5px rgba(255, 255, 255, 0.2);
    transform-origin: bottom;
}

.eq-bar:nth-child(1) { animation-delay: 0s; height: 60px; }
.eq-bar:nth-child(2) { animation-delay: 0.1s; height: 120px; }
.eq-bar:nth-child(3) { animation-delay: 0.2s; height: 180px; }
.eq-bar:nth-child(4) { animation-delay: 0.3s; height: 90px; }
.eq-bar:nth-child(5) { animation-delay: 0.4s; height: 150px; }
.eq-bar:nth-child(6) { animation-delay: 0.5s; height: 200px; }
.eq-bar:nth-child(7) { animation-delay: 0.6s; height: 110px; }
.eq-bar:nth-child(8) { animation-delay: 0.7s; height: 80px; }
.eq-bar:nth-child(9) { animation-delay: 0.8s; height: 140px; }
.eq-bar:nth-child(10) { animation-delay: 0.9s; height: 70px; }

@keyframes eqBounce {
    0% { 
        transform: scaleY(0.3);
        filter: brightness(0.8);
    }
    100% { 
        transform: scaleY(1);
        filter: brightness(1.5);
    }
}

/* 🌟 TITRE ULTRA-ANIMÉ */
.hero-title-ultra {
    position: relative;
    z-index: 5;
    font-family: 'Orbitron', monospace;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin: 80px 0 40px;
    transform-style: preserve-3d;
    perspective: 1000px;
    backdrop-filter: none;
    background: transparent;
}

.title-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.title-word {
    display: block;
    position: relative;
    letter-spacing: 0.2em;
    transform-style: preserve-3d;
}

.title-word .title-letter {
    display: inline-block;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color),
        var(--primary-color));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transform-origin: center bottom;
    animation: megaLetterDance 4s ease-in-out infinite;
    text-shadow: 
        0 0 60px rgba(0, 243, 255, 1),
        0 0 120px rgba(255, 0, 128, 1),
        0 0 180px rgba(138, 43, 226, 0.8),
        0 0 240px rgba(0, 243, 255, 0.6);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    filter: 
        drop-shadow(0 0 50px rgba(0, 243, 255, 1))
        drop-shadow(0 0 100px rgba(255, 0, 128, 0.8))
        brightness(2)
        contrast(1.5)
        saturate(2);
    font-weight: 900;
    letter-spacing: 0.1em;
}

.title-word .title-letter:hover {
    transform: scale(1.8) rotateY(360deg) rotateX(25deg) translateZ(80px);
    animation-play-state: paused;
    filter: 
        brightness(5) 
        saturate(4) 
        drop-shadow(0 0 60px var(--neon-pink))
        drop-shadow(0 0 120px var(--electric-blue))
        drop-shadow(0 0 180px var(--cyber-purple));
    text-shadow: 
        0 0 50px var(--neon-pink),
        0 0 100px var(--electric-blue),
        0 0 150px var(--cyber-purple),
        0 0 200px var(--neon-pink);
}

/* Délais d'animation pour chaque lettre */
.title-word[data-word="ADRIEN"] .title-letter:nth-child(1) { animation-delay: 0s; }
.title-word[data-word="ADRIEN"] .title-letter:nth-child(2) { animation-delay: 0.1s; }
.title-word[data-word="ADRIEN"] .title-letter:nth-child(3) { animation-delay: 0.2s; }
.title-word[data-word="ADRIEN"] .title-letter:nth-child(4) { animation-delay: 0.3s; }
.title-word[data-word="ADRIEN"] .title-letter:nth-child(5) { animation-delay: 0.4s; }
.title-word[data-word="ADRIEN"] .title-letter:nth-child(6) { animation-delay: 0.5s; }

.title-word[data-word="COLLAZO"] .title-letter:nth-child(1) { animation-delay: 0.6s; }
.title-word[data-word="COLLAZO"] .title-letter:nth-child(2) { animation-delay: 0.7s; }
.title-word[data-word="COLLAZO"] .title-letter:nth-child(3) { animation-delay: 0.8s; }
.title-word[data-word="COLLAZO"] .title-letter:nth-child(4) { animation-delay: 0.9s; }
.title-word[data-word="COLLAZO"] .title-letter:nth-child(5) { animation-delay: 1.0s; }
.title-word[data-word="COLLAZO"] .title-letter:nth-child(6) { animation-delay: 1.1s; }
.title-word[data-word="COLLAZO"] .title-letter:nth-child(7) { animation-delay: 1.2s; }

@keyframes megaLetterDance {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateZ(0deg) scale(1);
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 243, 255, 0.6));
        will-change: transform, filter;
    }
    25% { 
        transform: translate3d(0, -30px, 0) rotateZ(5deg) scale(1.1);
        filter: brightness(1.8) drop-shadow(0 0 35px rgba(255, 0, 128, 0.8));
    }
    50% { 
        transform: translate3d(0, -60px, 0) rotateZ(-3deg) scale(1.2);
        filter: brightness(2.2) drop-shadow(0 0 50px rgba(138, 43, 226, 0.9));
    }
    75% { 
        transform: translate3d(0, -30px, 0) rotateZ(2deg) scale(1.1);
        filter: brightness(1.8) drop-shadow(0 0 35px rgba(0, 243, 255, 0.8));
    }
}

/* 🌈 EFFETS SPÉCIAUX DU TITRE */
.title-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.hologram-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 243, 255, 0.1) 2px,
        rgba(0, 243, 255, 0.1) 4px
    );
    animation: scanlines 2s linear infinite;
}

.energy-field {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, 
        transparent 30%, 
        rgba(0, 243, 255, 0.1) 50%, 
        transparent 70%);
    animation: energyPulse 3s ease-in-out infinite;
}

.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 80%, rgba(0, 243, 255, 0.2) 100%),
        linear-gradient(90deg, transparent 80%, rgba(255, 0, 128, 0.2) 100%);
    background-size: 20px 20px;
    animation: matrixFlow 4s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes energyPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes matrixFlow {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 20px 20px, 20px 20px; }
}

/* 🌊 ONDE SONORE VISUALISÉE */
.sound-wave {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 3;
}

.wave-path {
    animation: waveAnimation 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

@keyframes waveAnimation {
    0%, 100% { 
        d: path("M0,30 Q200,10 400,30 T800,30");
    }
    25% { 
        d: path("M0,30 Q200,50 400,30 T800,30");
    }
    50% { 
        d: path("M0,30 Q200,5 400,30 T800,30");
    }
    75% { 
        d: path("M0,30 Q200,55 400,30 T800,30");
    }
}

/* 📱 RESPONSIVE POUR LE NOUVEAU H1 */
@media (max-width: 768px) {
    .hero-logo-container {
        height: 400px;
    }
    
    .vinyl-container {
        top: 20px;
        right: 20px;
    }
    
    .vinyl-record-hero {
        width: 120px;
        height: 120px;
    }
    
    .audio-equalizer {
        top: 20px;
        left: 20px;
        height: 120px;
    }
    
    .eq-bar {
        width: 8px;
        gap: 4px;
    }
    
    .hero-title-ultra {
        font-size: clamp(2rem, 6vw, 4rem);
        margin: 40px 0 20px;
    }
    
    .floating-particles .particle {
        width: 2px;
        height: 2px;
    }
}

.title-line:last-child {
    font-size: 0.9em;
}

@keyframes neonPulse {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 10px var(--primary-color));
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 20px var(--secondary-color));
        transform: scale(1.02);
    }
}

@keyframes spectacularGradient {
    0% { 
        background-position: 0% 50%;
        filter: 
            drop-shadow(0 0 20px rgba(0, 243, 255, 1))
            drop-shadow(0 0 40px rgba(255, 0, 128, 0.8))
            drop-shadow(0 0 60px rgba(138, 43, 226, 0.6));
    }
    33% { 
        background-position: 100% 50%;
        filter: 
            drop-shadow(0 0 25px rgba(255, 0, 128, 1))
            drop-shadow(0 0 50px rgba(138, 43, 226, 0.9))
            drop-shadow(0 0 75px rgba(0, 243, 255, 0.7));
    }
    66% { 
        background-position: 200% 50%;
        filter: 
            drop-shadow(0 0 30px rgba(138, 43, 226, 1))
            drop-shadow(0 0 60px rgba(0, 243, 255, 0.9))
            drop-shadow(0 0 90px rgba(255, 0, 128, 0.7));
    }
    100% { 
        background-position: 300% 50%;
        filter: 
            drop-shadow(0 0 20px rgba(0, 243, 255, 1))
            drop-shadow(0 0 40px rgba(255, 0, 128, 0.8))
            drop-shadow(0 0 60px rgba(138, 43, 226, 0.6));
    }
}

@keyframes megaFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
    }
    20% { 
        transform: translateY(-15px) rotateX(3deg) rotateY(2deg) scale(1.03);
    }
    40% { 
        transform: translateY(-25px) rotateX(-2deg) rotateY(-1deg) scale(1.06);
    }
    60% { 
        transform: translateY(-35px) rotateX(1deg) rotateY(3deg) scale(1.08);
    }
    80% { 
        transform: translateY(-20px) rotateX(-3deg) rotateY(-2deg) scale(1.04);
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(0, 243, 255, 0.8),
            0 0 20px rgba(255, 0, 128, 0.6),
            0 0 30px rgba(138, 43, 226, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(0, 243, 255, 1),
            0 0 40px rgba(255, 0, 128, 0.9),
            0 0 60px rgba(138, 43, 226, 0.8),
            0 0 80px rgba(0, 243, 255, 0.6),
            0 0 100px rgba(255, 0, 128, 0.4);
    }
}

.hero-title .letter {
    display: inline-block;
    position: relative;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center bottom;
    animation: spectacularLetterFloat 3s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.hero-title .letter:nth-child(1) { animation-delay: 0s; }
.hero-title .letter:nth-child(2) { animation-delay: 0.1s; }
.hero-title .letter:nth-child(3) { animation-delay: 0.2s; }
.hero-title .letter:nth-child(4) { animation-delay: 0.3s; }
.hero-title .letter:nth-child(5) { animation-delay: 0.4s; }
.hero-title .letter:nth-child(6) { animation-delay: 0.5s; }
.hero-title .letter:nth-child(8) { animation-delay: 0.6s; }
.hero-title .letter:nth-child(9) { animation-delay: 0.7s; }
.hero-title .letter:nth-child(10) { animation-delay: 0.8s; }
.hero-title .letter:nth-child(11) { animation-delay: 0.9s; }
.hero-title .letter:nth-child(12) { animation-delay: 1.0s; }
.hero-title .letter:nth-child(13) { animation-delay: 1.1s; }
.hero-title .letter:nth-child(14) { animation-delay: 1.2s; }

@keyframes spectacularLetterFloat {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
    }
    25% { 
        transform: translate3d(5px, -20px, 10px) rotateX(5deg) rotateY(5deg) rotateZ(2deg) scale(1.05);
    }
    50% { 
        transform: translate3d(-5px, -40px, 20px) rotateX(-3deg) rotateY(-3deg) rotateZ(-1deg) scale(1.1);
    }
    75% { 
        transform: translate3d(3px, -25px, 15px) rotateX(2deg) rotateY(4deg) rotateZ(1deg) scale(1.03);
    }
}

.hero-title .letter:hover {
    transform: translate3d(0, -50px, 30px) scale(1.4) rotateY(360deg) rotateX(15deg) !important;
    animation-play-state: paused;
    filter: 
        brightness(2) 
        saturate(2) 
        drop-shadow(0 0 30px var(--neon-pink))
        drop-shadow(0 0 60px var(--electric-blue))
        drop-shadow(0 0 90px var(--cyber-purple));
    text-shadow: 
        0 0 20px var(--neon-pink),
        0 0 40px var(--electric-blue),
        0 0 60px var(--cyber-purple),
        0 0 80px var(--neon-pink),
        0 0 100px var(--electric-blue);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Effets glitch spectaculaires */
.hero-title:before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        45deg, 
        var(--neon-pink) 0%, 
        var(--electric-blue) 50%, 
        var(--cyber-purple) 100%
    );
    background-size: 500% 500%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
    z-index: -1;
    animation: spectacularGlitch1 6s ease-in-out infinite;
    filter: blur(0.5px);
}

.hero-title:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        -45deg, 
        var(--cyber-purple) 0%, 
        var(--neon-pink) 50%, 
        var(--electric-blue) 100%
    );
    background-size: 500% 500%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    z-index: -2;
    animation: spectacularGlitch2 6s ease-in-out infinite reverse;
    filter: blur(0.8px);
}

@keyframes spectacularGlitch1 {
    0%, 92%, 100% { 
        transform: translate(0, 0) scale(1);
        background-position: 0% 50%;
        opacity: 0.8;
    }
    93% { 
        transform: translate(3px, -2px) scale(1.01);
        background-position: 25% 0%;
        opacity: 0.9;
    }
    94% { 
        transform: translate(-2px, 3px) scale(0.99);
        background-position: 75% 100%;
        opacity: 0.7;
    }
    95% { 
        transform: translate(4px, -1px) scale(1.02);
        background-position: 100% 50%;
        opacity: 1;
    }
    96% { 
        transform: translate(-3px, 2px) scale(0.98);
        background-position: 50% 25%;
        opacity: 0.6;
    }
    97% { 
        transform: translate(2px, -3px) scale(1.01);
        background-position: 0% 75%;
        opacity: 0.9;
    }
    98% { 
        transform: translate(-4px, 1px) scale(1.03);
        background-position: 75% 0%;
        opacity: 0.8;
    }
    99% { 
        transform: translate(1px, -2px) scale(0.99);
        background-position: 25% 100%;
        opacity: 0.7;
    }
}

@keyframes spectacularGlitch2 {
    0%, 94%, 100% { 
        transform: translate(0, 0) scale(1) rotateZ(0deg);
        background-position: 0% 50%;
        opacity: 0.6;
    }
    95% { 
        transform: translate(-2px, 3px) scale(1.02) rotateZ(0.5deg);
        background-position: 100% 25%;
        opacity: 0.8;
    }
    96% { 
        transform: translate(3px, -2px) scale(0.98) rotateZ(-0.3deg);
        background-position: 25% 75%;
        opacity: 0.5;
    }
    97% { 
        transform: translate(-3px, -1px) scale(1.01) rotateZ(0.7deg);
        background-position: 75% 0%;
        opacity: 0.9;
    }
    98% { 
        transform: translate(2px, 3px) scale(0.99) rotateZ(-0.2deg);
        background-position: 50% 100%;
        opacity: 0.4;
    }
    99% { 
        transform: translate(-1px, -2px) scale(1.02) rotateZ(0.4deg);
        background-position: 0% 25%;
        opacity: 0.7;
    }
}

/* Suppression des animations lourdes par lettre */

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch:before {
    animation: glitch-1 2.5s infinite;
    color: var(--primary-color);
    z-index: -1;
}

.glitch:after {
    animation: glitch-2 2.5s infinite;
    color: var(--secondary-color);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 1px); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(30% 0 40% 0); transform: translate(1px, -2px); }
    80% { clip-path: inset(5% 0 85% 0); transform: translate(-1px, 1px); }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-medium);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 2s ease-out 1.5s both;
}

.hero-description {
    max-width: 900px;
    margin: 0 auto 50px auto;
    opacity: 0;
    animation: fadeInUp 2s ease-out 2s both;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.05) 0%, 
        rgba(255, 0, 255, 0.05) 50%, 
        rgba(255, 255, 0, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
}

.description-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInReveal 1s ease-out forwards;
}

.description-line:nth-child(1) { animation-delay: 2.2s; }
.description-line:nth-child(2) { animation-delay: 2.5s; }
.description-line:nth-child(3) { animation-delay: 2.8s; }
.description-line:nth-child(4) { animation-delay: 3.1s; }

.highlight-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 10px;
    position: relative;
    text-shadow: 0 0 20px var(--primary-color);
}

.highlight-text:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes slideInReveal {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.3);
    }
}

@keyframes underlineGlow {
    0%, 100% { 
        opacity: 0;
        transform: scaleX(0);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

/* Neon Button */
.neon-button {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.neon-button:hover {
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 30px var(--primary-color);
}

.neon-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.neon-button:hover:before {
    left: 0;
}

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 400%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradient-shift 3s ease infinite;
    z-index: -1;
}

.neon-button:hover .button-glow {
    opacity: 1;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    margin: 5px auto;
    animation: scroll-bounce 1.5s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.glitch-hover {
    transition: all 0.3s ease;
}

.glitch-hover:hover {
    color: var(--primary-color);
    text-shadow: 
        2px 2px 0 var(--secondary-color),
        -2px -2px 0 var(--accent-color);
}

/* Bio Section */
.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.bio-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 30px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bio-text h3:first-child {
    margin-top: 0;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:before {
    content: attr(data-year);
    position: absolute;
    left: -80px;
    top: 0;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-item:after {
    content: '';
    position: absolute;
    left: -46px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

/* Music Player */
.music-player {
    padding: 40px;
    margin-bottom: 40px;
}

.player-visual {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 40px;
    height: 200px;
}

#waveform {
    flex: 1;
    height: 100%;
    max-width: 400px;
}

.vinyl-record {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #1a1a1a 30%, #333 40%, #1a1a1a 40%, #333 50%, #1a1a1a 50%);
    border-radius: 50%;
    position: relative;
    animation: spin 3s linear infinite paused;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.vinyl-record.playing {
    animation-play-state: running;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: var(--bg-dark);
}

.player-controls {
    text-align: center;
}

.track-info {
    margin-bottom: 20px;
}

.track-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.track-artist {
    color: var(--text-medium);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    margin: 20px 0;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-color);
    transform: scale(1.1);
}

.play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.volume-control {
    max-width: 200px;
    margin: 0 auto;
}

.volume-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-color);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Playlist */
.playlist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.playlist-item {
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.playlist-item.active {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-color);
}

.track-number {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
}

.track-name {
    flex: 1;
}

.track-duration {
    color: var(--text-medium);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.event-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.3);
}

.event-date {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 15px;
    border-radius: 10px;
}

.event-date .day {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-details h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.venue {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.countdown-item {
    text-align: center;
}

.count-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.count-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-medium);
    text-transform: uppercase;
}

.neon-button-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(3deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-overlay p {
    color: var(--text-medium);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    padding: 40px;
    margin-bottom: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow {
    width: 100%;
}

.submit-btn {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-link:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: top 0.3s ease;
}

.social-link:hover:before {
    top: 0;
}

.social-link:hover svg {
    fill: var(--bg-dark);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.5);
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Instagram Videos */
.instagram-video {
    padding: 20px;
    position: relative;
    transition: all 0.5s ease;
}

.instagram-video:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.3);
}

.instagram-video .instagram-media {
    border-radius: 15px !important;
    overflow: hidden;
    background: transparent !important;
}

.video-card {
    padding: 0;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.5s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 243, 255, 0.4);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 3px;
}

.video-card:hover .play-button {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 30px var(--primary-color);
}

.video-info {
    padding: 20px;
    background: var(--glass-bg);
}

.video-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.video-info p {
    color: var(--text-medium);
    line-height: 1.5;
}

/* YouTube and Facebook Videos */
.video-item {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.video-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 50px rgba(0, 243, 255, 0.3),
        0 0 0 1px rgba(0, 243, 255, 0.5),
        inset 0 0 20px rgba(0, 243, 255, 0.1);
    background: var(--glass-bg-strong);
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.video-item:hover::before {
    transform: scaleX(1);
}

/* Video Wrapper - Responsive 16:9 */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.05) 0%, 
        rgba(255, 0, 255, 0.05) 100%);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

/* Video Info Section */
.video-item .video-info {
    padding: 25px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.video-item .video-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 243, 255, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.video-item:hover .video-info::before {
    left: 100%;
}

.video-item .video-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.video-item:hover .video-info h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
}

.video-item .video-info p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.video-item:hover .video-info p {
    color: var(--text-light);
}

/* Play Button Overlay for Video Items */
.video-item .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 243, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    pointer-events: none;
}

.video-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-item .play-button:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
        0 0 40px var(--primary-color),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.video-item .play-button svg {
    width: 28px;
    height: 28px;
    fill: white;
    margin-left: 4px;
}

/* Loading Animation */
.video-item.loading .video-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-item .video-info {
        padding: 20px;
    }
    
    .video-item .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-item .video-info p {
        font-size: 0.9rem;
    }
    
    .video-item .play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-item .play-button svg {
        width: 24px;
        height: 24px;
    }
}

/* SoundCloud Integration with Dark Theme */
.soundcloud-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.soundcloud-track {
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.soundcloud-track:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.soundcloud-track:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.soundcloud-track:hover:before {
    opacity: 1;
}

.soundcloud-track iframe {
    border: none;
    width: 100%;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: #1a1a2e;
}

.soundcloud-track:hover iframe {
    opacity: 1;
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.2);
}

.music-visualizer {
    padding: 40px;
    margin-top: 20px;
}

.music-visualizer .player-visual {
    height: 250px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .social-header {
        gap: 10px;
    }
    
    .social-header-link {
        width: 30px;
        height: 30px;
    }
    
    .social-header-link svg {
        width: 15px;
        height: 15px;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
    }
    
    .player-visual {
        flex-direction: column;
        height: auto;
        gap: 30px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item:before {
        display: none;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .soundcloud-container {
        gap: 15px;
    }
    
    .soundcloud-track {
        padding: 15px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card {
        margin-bottom: 20px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .instagram-video {
        padding: 15px;
    }
    
    .hero-description {
        padding: 20px;
        margin: 0 auto 30px auto;
    }
    
    .description-line {
        flex-direction: column;
        text-align: center;
        margin: 12px 0;
    }
    
    .highlight-text {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .talent-logo {
        display: none;
    }
}

/* Footer Fixed */
.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-developer, .footer-credit-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 3px 8px;
    border-radius: 15px;
    background: rgba(0, 243, 255, 0.1);
}

.footer-developer {
    background: rgba(255, 0, 128, 0.1);
    color: var(--neon-pink);
}

.footer-credit-link {
    font-size: 0.75rem;
    background: rgba(138, 43, 226, 0.1);
    color: var(--cyber-purple);
}

.footer-developer:hover, .footer-credit-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px currentColor;
}

.footer-developer:hover {
    background: rgba(255, 0, 128, 0.2);
}

.footer-credit-link:hover {
    background: rgba(138, 43, 226, 0.2);
}

.footer-text {
    color: var(--text-medium);
}

.heart {
    color: #ff6b6b;
    font-size: 1.1rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.talentai-link {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(255, 0, 255, 0.15));
    border: 1px solid rgba(0, 243, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.talentai-link:hover {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.25), rgba(255, 0, 255, 0.25));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.4);
}

.talentai-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.talentai-link:hover::before {
    animation: shine 0.8s ease-in-out;
}

.footer-link:hover {
    background: rgba(0, 243, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

.footer-logo {
    height: 25px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.talentai-link .footer-logo {
    height: 30px;
    filter: brightness(1.4) saturate(1.2);
}

.footer-link span {
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}
/* New Styles for Updated Features */

/* Enhanced SoundCloud Toggle Button */
.soundcloud-toggle-btn {
    width: 60px;
    height: 60px;
    background: #0a0a0a;
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.soundcloud-toggle-btn:hover {
    transform: scale(1.1);
    background: #111;
}

.btn-wave-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.3), transparent);
    animation: wavePulse 2s ease-in-out infinite;
    pointer-events: none;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soundcloud-toggle-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
    transition: all 0.3s ease;
}

.soundcloud-toggle-btn:hover svg {
    fill: var(--secondary-color);
    filter: drop-shadow(0 0 20px var(--secondary-color));
}

/* Animated Rings */
.btn-ring-1, .btn-ring-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.soundcloud-toggle-btn.playing .btn-ring-1 {
    animation: ringExpand 1.5s ease-out infinite;
}

.soundcloud-toggle-btn.playing .btn-ring-2 {
    animation: ringExpand 1.5s ease-out infinite 0.5s;
}

@keyframes wavePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
}

@keyframes ringExpand {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Audio Visualizer in Nav */
.audio-visualizer-nav {
    width: 150px;
    height: 60px;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 5px;
}

#nav-visualizer {
    width: 100%;
    height: 100%;
    display: block;
}

/* Dark Theme SoundCloud Player Section */
.soundcloud-player-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.8), transparent);
    position: relative;
    overflow: hidden;
}

.player-container {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a0a;
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(0, 243, 255, 0.2);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(0, 243, 255, 0.1);
}

.player-header {
    text-align: center;
    margin-bottom: 30px;
}

.player-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.track-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.track-artist {
    font-size: 1rem;
    color: var(--text-medium);
}

/* Main Visualizer */
.main-visualizer {
    width: 100%;
    height: 200px;
    background: #000;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

#main-audio-visualizer {
    width: 100%;
    height: 100%;
    display: block;
}

.visualizer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 243, 255, 0.1));
    pointer-events: none;
}

/* Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.control-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

.play-pause-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.play-pause-btn:hover {
    box-shadow: 0 0 40px var(--primary-color);
}

.play-pause-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-btn svg {
    width: 30px;
    height: 30px;
    fill: #000;
}

/* Progress Bar */
.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.time-current, .time-total {
    font-size: 0.9rem;
    color: var(--text-medium);
    min-width: 45px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

/* Volume Control */
.volume-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.volume-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-medium);
}

.volume-slider {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    width: 70%;
}

.volume-handle {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.volume-slider:hover .volume-handle {
    opacity: 1;
}

/* Track List */
.track-list {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.track-item.active {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.track-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--text-medium);
    width: 40px;
}

.track-details {
    flex: 1;
    margin-left: 20px;
}

.track-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.track-duration {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Playing Indicator */
.track-playing-indicator {
    display: none;
    gap: 3px;
}

.track-item.active .track-playing-indicator {
    display: flex;
}

.track-playing-indicator span {
    width: 3px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: equalizer 0.5s ease-in-out infinite;
}

.track-playing-indicator span:nth-child(2) {
    animation-delay: 0.1s;
}

.track-playing-indicator span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes equalizer {
    0%, 100% { height: 5px; }
    50% { height: 20px; }
}

/* Toast Container */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 0;
    min-width: 280px;
    max-width: 350px;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.toast-icon {
    font-size: 24px;
}

.toast-message {
    flex: 1;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 50%;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transform: rotate(90deg);
}

.toast-progress {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: progress 5s linear;
    transform-origin: left;
}

@keyframes progress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* Toast Types */
.toast-success {
    border-color: #00ff00;
}

.toast-error {
    border-color: #ff0000;
}

.toast-warning {
    border-color: #ffff00;
}

.toast-music {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.toast-tip {
    border-color: var(--accent-color);
}

/* Enhanced Footer */
.footer-fixed {
    height: 80px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1rem;
    flex-wrap: wrap;
}

.footer-main h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-main p {
    color: var(--text-medium);
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-2px);
}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 0.8rem;
}

.separator {
    opacity: 0.5;
}

/* Media Tabs */
.media-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-medium);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: var(--bg-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Conception Section */
.conception-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 50px;
    align-items: center;
}

.talentai-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.talentai-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.talentai-logo-large {
    width: 400px;
    height: 400px;
    filter: brightness(1.4) saturate(1.3);
    transition: all 0.5s ease;
    animation: logoFloat 6s ease-in-out infinite;
}

.talentai-logo-large:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.6) saturate(1.5);
}

.logo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    33% { 
        transform: translateY(-10px) rotate(2deg);
    }
    66% { 
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}


.conception-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: iconBounce 2s ease-in-out infinite;
}

.feature-item:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-item:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-item:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature-item:nth-child(4) .feature-icon { animation-delay: 0.6s; }

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.feature-item h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.conception-footer {
    font-style: italic;
    text-align: center;
    color: var(--text-medium);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
}

.talentai-cta {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
}

.talentai-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.talentai-cta:hover::before {
    animation: shine 1s ease-in-out;
}

/* Responsive Updates */
@media (max-width: 768px) {
    #toast-container {
        left: 20px;
        right: 20px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
    
    .footer-content {
        gap: 10px;
    }
    
    .footer-main h3 {
        font-size: 1.4rem;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .conception-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .talentai-logo-large {
        width: 250px;
        height: 250px;
    }
}

/* SEO and Backlink Styles */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.developer-cta {
    background: linear-gradient(135deg, var(--neon-pink), var(--cyber-purple));
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.developer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.4);
}

.developer-link, .talentai-inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.developer-link {
    color: var(--neon-pink);
}

.developer-link:hover, .talentai-inline-link:hover {
    text-shadow: 0 0 10px currentColor;
    border-bottom-color: currentColor;
    transform: translateY(-1px);
}

/* Mobile Optimization Improvements */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .developer-cta, .talentai-cta {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .footer-credits {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-title-ultra {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .title-letter {
        font-size: 0.9em;
    }
    
    #toast-container {
        bottom: 120px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
        font-size: 0.9rem;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .conception-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-fixed {
        min-height: 100px;
        padding: 15px 10px;
    }
    
    .bio-content {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-video {
        margin: 0 auto;
    }
    
    .soundcloud-container {
        gap: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}
EOF < /dev/null

/* Responsive Styles for Player */
@media (max-width: 768px) {
    .soundcloud-player-section {
        padding: 40px 20px;
    }
    
    .player-container {
        padding: 30px 20px;
    }
    
    .audio-visualizer-nav {
        width: 100px;
        height: 50px;
        margin-right: 10px;
    }
    
    .soundcloud-toggle-btn {
        width: 50px;
        height: 50px;
    }
    
    .player-controls {
        gap: 20px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .play-pause-btn {
        width: 60px;
        height: 60px;
    }
    
    .main-visualizer {
        height: 150px;
    }
    
    .track-item {
        padding: 12px;
    }
    
    .track-number {
        width: 30px;
        font-size: 1rem;
    }
    
    .track-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .audio-visualizer-nav {
        width: 80px;
        height: 40px;
    }
    
    .player-header {
        margin-bottom: 20px;
    }
    
    .player-title {
        font-size: 1.5rem;
    }
    
    .track-name {
        font-size: 1.2rem;
    }
    
    .volume-container {
        display: none;
    }
}

/* Equalizer Styles */
.equalizer-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-equalizer {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.equalizer-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

.current-track-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.current-track-artist {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 300;
    opacity: 0.8;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mobile equalizer styles */
@media (max-width: 768px) {
    .equalizer-container {
        height: 200px;
    }
    
    .current-track-title {
        font-size: 1.5rem;
    }
    
    .current-track-artist {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .equalizer-container {
        height: 150px;
    }
    
    .current-track-title {
        font-size: 1.2rem;
    }
    
    .current-track-artist {
        font-size: 0.9rem;
    }
}

/* Nav Audio Section */
.nav-audio-section {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 320px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
}

.audio-visualizer-nav {
    width: 120px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.audio-visualizer-nav canvas {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Nav Player Controls */
.nav-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.soundcloud-control-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

/* Bouton principal (play/pause) plus grand */
.soundcloud-control-btn.main-control {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid rgba(0, 243, 255, 0.5);
}

.soundcloud-control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.soundcloud-control-btn .btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.soundcloud-control-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.soundcloud-control-btn.main-control svg {
    width: 24px;
    height: 24px;
}

/* Styles spécifiques pour les boutons navigation */
.soundcloud-control-btn.prev-btn:hover,
.soundcloud-control-btn.next-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: var(--secondary-color);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
}

.soundcloud-control-btn.main-control:hover {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.7);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.4), rgba(255, 0, 255, 0.4));
}

/* Animation de pulsation pour le bouton actif */
.soundcloud-control-btn.main-control.playing {
    animation: pulse-control 2s ease-in-out infinite;
}

@keyframes pulse-control {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(0, 243, 255, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(0, 243, 255, 0.9);
        transform: scale(1.05);
    }
}

/* Effet de rotation pour les boutons précédent/suivant */
.soundcloud-control-btn.prev-btn:active {
    transform: scale(0.95) rotate(-15deg);
}

.soundcloud-control-btn.next-btn:active {
    transform: scale(0.95) rotate(15deg);
}

.soundcloud-control-btn .btn-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(0, 243, 255, 0.2) 0%,
        rgba(255, 0, 255, 0.1) 50%,
        transparent 70%);
    animation: waveAnimation 2s ease-in-out infinite;
}

.soundcloud-control-btn .btn-ring-1,
.soundcloud-control-btn .btn-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
}

.soundcloud-control-btn .btn-ring-1 {
    width: 70px;
    height: 70px;
    animation: ringPulse 2s ease-in-out infinite;
}

.soundcloud-control-btn .btn-ring-2 {
    width: 80px;
    height: 80px;
    animation: ringPulse 2s ease-in-out infinite 0.5s;
}

@keyframes waveAnimation {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Mobile nav controls */
@media (max-width: 768px) {
    .nav-audio-section {
        min-width: 280px;
        gap: 15px;
        padding: 8px 12px;
    }
    
    .audio-visualizer-nav {
        width: 100px;
        height: 50px;
    }
    
    .soundcloud-control-btn {
        width: 42px;
        height: 42px;
    }
    
    .soundcloud-control-btn.main-control {
        width: 50px;
        height: 50px;
    }
    
    .soundcloud-control-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .soundcloud-control-btn.main-control svg {
        width: 20px;
        height: 20px;
    }
    
    .nav-player-controls {
        gap: 8px;
        padding: 3px;
    }
    
    .soundcloud-control-btn .btn-ring-1 {
        width: 52px;
        height: 52px;
    }
    
    .soundcloud-control-btn .btn-ring-2 {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 480px) {
    .nav-audio-section {
        min-width: 250px;
        gap: 10px;
        padding: 6px 10px;
    }
    
    .audio-visualizer-nav {
        width: 80px;
        height: 40px;
    }
    
    .soundcloud-control-btn {
        width: 38px;
        height: 38px;
    }
    
    .soundcloud-control-btn.main-control {
        width: 45px;
        height: 45px;
    }
    
    .soundcloud-control-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .soundcloud-control-btn.main-control svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-player-controls {
        gap: 6px;
        padding: 2px;
    }
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
    min-width: 250px;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-weight: 500;
    font-size: 0.95rem;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: var(--primary-color);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 0 15px 15px;
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Toast types */
.toast-success {
    border-color: rgba(0, 255, 0, 0.3);
}

.toast-info {
    border-color: rgba(0, 243, 255, 0.3);
}

.toast-music {
    border-color: rgba(255, 0, 255, 0.3);
}

.toast-warning {
    border-color: rgba(255, 255, 0, 0.3);
}

.toast-error {
    border-color: rgba(255, 0, 0, 0.3);
}

/* Mobile toast styles */
@media (max-width: 768px) {
    #toast-container {
        top: 15px;
        left: 15px;
        right: 15px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        padding: 12px 16px;
    }
    
    .toast-message {
        font-size: 0.9rem;
    }
}
