* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neon-cyan: #00f0ff;
            --neon-pink: #ff00a0;
            --neon-purple: #b829dd;
            --neon-green: #39ff14;
            --neon-yellow: #ffff00;
            --dark: #0a0a0f;
            --darker: #050508;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--darker);
            color: #fff;
            overflow-x: hidden;
        }

        /* ===== ANIMATED BACKGROUND ===== */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 0, 160, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(184, 41, 221, 0.05) 0%, transparent 70%);
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
        }

        /* ===== FLOATING BUBBLES ===== */
        .bubbles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .bubble {
            position: absolute;
            bottom: -100px;
            border-radius: 50%;
            opacity: 0.4;
            animation: floatUp linear infinite;
            filter: blur(1px);
        }

        @keyframes floatUp {
            0% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0.4;
            }
            25% {
                transform: translateY(-25vh) translateX(20px) scale(1.1);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-50vh) translateX(-15px) scale(0.9);
                opacity: 0.5;
            }
            75% {
                transform: translateY(-75vh) translateX(25px) scale(1.05);
                opacity: 0.3;
            }
            100% {
                transform: translateY(-110vh) translateX(0) scale(0.8);
                opacity: 0;
            }
        }

        /* ===== PARTICLES ===== */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--neon-cyan);
            border-radius: 50%;
            animation: particleFloat linear infinite;
            box-shadow: 0 0 6px var(--neon-cyan), 0 0 12px var(--neon-cyan);
        }

        @keyframes particleFloat {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                transform: translate(var(--tx), var(--ty)) scale(0);
                opacity: 0;
            }
        }

        /* ===== SCANLINE OVERLAY ===== */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.1) 0px,
                rgba(0, 0, 0, 0.1) 1px,
                transparent 1px,
                transparent 3px
            );
            opacity: 0.3;
        }

        /* ===== NOISE TEXTURE ===== */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* ===== Navigation ===== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(5, 5, 8, 0.7);
            border-bottom: 1px solid rgba(0, 240, 255, 0.1);
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: logoGlitch 4s infinite;
        }

        @keyframes logoGlitch {
            0%, 90%, 100% { 
                filter: none;
                transform: translate(0);
            }
            92% { 
                filter: drop-shadow(2px 0 var(--neon-cyan)) drop-shadow(-2px 0 var(--neon-pink));
                transform: translate(2px, -1px);
            }
            94% { 
                filter: drop-shadow(-2px 0 var(--neon-cyan)) drop-shadow(2px 0 var(--neon-pink));
                transform: translate(-2px, 1px);
            }
            96% { 
                filter: drop-shadow(1px 0 var(--neon-cyan)) drop-shadow(-1px 0 var(--neon-pink));
                transform: translate(1px, 0);
            }
        }

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

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--neon-cyan);
        }

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

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 100px 20px 40px 20px;
        }

        /* GLITCH TEXT EFFECT */
        .glitch-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .glitch {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 10px;
            position: relative;
            color: #fff;
            animation: textGlitch 3s infinite;
        }

        .glitch::before,
        .glitch::after {
            content: 'DJ SHIV';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker);
        }

        .glitch::before {
            left: 2px;
            text-shadow: -2px 0 var(--neon-cyan);
            clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
            animation: glitchTop 2.5s infinite linear alternate-reverse;
        }

        .glitch::after {
            left: -2px;
            text-shadow: 2px 0 var(--neon-pink);
            clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
            animation: glitchBottom 3s infinite linear alternate-reverse;
        }

        @keyframes glitchTop {
            0%, 100% { transform: translateX(0); }
            10% { transform: translateX(-5px); }
            20% { transform: translateX(5px); }
            30% { transform: translateX(-8px); }
            40% { transform: translateX(3px); }
            50% { transform: translateX(-3px); }
            60% { transform: translateX(7px); }
            70% { transform: translateX(-2px); }
            80% { transform: translateX(4px); }
            90% { transform: translateX(-6px); }
        }

        @keyframes glitchBottom {
            0%, 100% { transform: translateX(0); }
            10% { transform: translateX(5px); }
            20% { transform: translateX(-5px); }
            30% { transform: translateX(8px); }
            40% { transform: translateX(-3px); }
            50% { transform: translateX(3px); }
            60% { transform: translateX(-7px); }
            70% { transform: translateX(2px); }
            80% { transform: translateX(-4px); }
            90% { transform: translateX(6px); }
        }

        @keyframes textGlitch {
            0%, 95%, 100% { 
                text-shadow: none;
            }
            96% { 
                text-shadow: 3px 0 var(--neon-cyan), -3px 0 var(--neon-pink);
            }
            97% { 
                text-shadow: -3px 0 var(--neon-cyan), 3px 0 var(--neon-pink);
            }
            98% { 
                text-shadow: 2px 0 var(--neon-yellow), -2px 0 var(--neon-green);
            }
            99% { 
                text-shadow: -2px 0 var(--neon-yellow), 2px 0 var(--neon-green);
            }
        }

        .hero .tagline {
            font-size: clamp(1rem, 3vw, 1.5rem);
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 50px;
            animation: taglineFlicker 4s infinite;
        }

        @keyframes taglineFlicker {
            0%, 100% { opacity: 0.7; }
            5% { opacity: 0.3; }
            10% { opacity: 0.7; }
            15% { opacity: 0.2; }
            20% { opacity: 0.7; }
            92% { opacity: 0.7; }
            93% { opacity: 0.1; }
            94% { opacity: 0.7; }
            95% { opacity: 0.3; }
            96% { opacity: 0.7; }
        }

        .hero .cta-btn {
            padding: 18px 50px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #fff;
            background: transparent;
            border: 2px solid var(--neon-cyan);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            animation: btnPulse 2s infinite;
        }

        @keyframes btnPulse {
            0%, 100% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
            50% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 60px rgba(0, 240, 255, 0.2); }
        }

        .hero .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .hero .cta-btn:hover::before {
            left: 100%;
        }

        .hero .cta-btn:hover {
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
            border-color: var(--neon-pink);
            transform: scale(1.05);
        }

        /* ===== EQUALIZER ===== */
        .equalizer {
            display: flex;
            gap: 4px;
            height: 60px;
            align-items: flex-end;
            margin-top: 60px;
        }

        .bar {
            width: 6px;
            background: linear-gradient(to top, var(--neon-cyan), var(--neon-pink));
            border-radius: 3px;
            animation: bounce 1s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }

        .bar:nth-child(1) { height: 20%; animation-delay: 0s; }
        .bar:nth-child(2) { height: 60%; animation-delay: 0.1s; }
        .bar:nth-child(3) { height: 40%; animation-delay: 0.2s; }
        .bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
        .bar:nth-child(5) { height: 30%; animation-delay: 0.4s; }
        .bar:nth-child(6) { height: 70%; animation-delay: 0.5s; }
        .bar:nth-child(7) { height: 50%; animation-delay: 0.6s; }
        .bar:nth-child(8) { height: 90%; animation-delay: 0.7s; }
        .bar:nth-child(9) { height: 35%; animation-delay: 0.8s; }
        .bar:nth-child(10) { height: 65%; animation-delay: 0.9s; }
        .bar:nth-child(11) { height: 45%; animation-delay: 1.0s; }
        .bar:nth-child(12) { height: 85%; animation-delay: 1.1s; }

        @keyframes bounce {
            0%, 100% { transform: scaleY(0.5); }
            50% { transform: scaleY(1); }
        }

        /* ===== SOCIAL SECTION ===== */
        .social-section {
            padding: 100px 20px;
            text-align: center;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .section-title::after {
            content: attr(data-text);
            position: absolute;
            left: 2px;
            top: 0;
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0;
            animation: titleGlitch 5s infinite;
        }

        @keyframes titleGlitch {
            0%, 95%, 100% { opacity: 0; transform: translate(0); }
            96% { opacity: 0.8; transform: translate(3px, -2px); }
            97% { opacity: 0; transform: translate(0); }
            98% { opacity: 0.8; transform: translate(-3px, 2px); }
            99% { opacity: 0; transform: translate(0); }
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 60px;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .social-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            padding: 40px 20px;
            text-decoration: none;
            color: #fff;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }

        .social-card:hover::before {
            opacity: 0.1;
        }

        .social-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--neon-cyan);
            box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15), 0 0 60px rgba(0, 240, 255, 0.1);
        }

        .social-card i {
            font-size: 3rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s;
        }

        .social-card:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .social-card.youtube i { color: #ff0000; }
        .social-card.instagram i { color: #e4405f; }
        .social-card.spotify i { color: #1db954; }
        .social-card.soundcloud i { color: #ff5500; }
        .social-card.tiktok i { color: #fff; }
        .social-card.twitter i { color: #1da1f2; }
        .social-card.facebook i { color: #1877f2; }
        .social-card.apple i { color: #fc3c44; }

        .social-card span {
            display: block;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        /* ===== YOUTUBE SECTION ===== */
        .youtube-section {
            padding: 100px 20px;
            text-align: center;
            background: rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .youtube-embed-removed {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            border: 2px solid rgba(255, 0, 0, 0.3);
            box-shadow: 0 0 50px rgba(255, 0, 0, 0.1);
            animation: borderGlow 3s infinite;
        }

        @keyframes borderGlow {
            0%, 100% { box-shadow: 0 0 50px rgba(255, 0, 0, 0.1); }
            50% { box-shadow: 0 0 80px rgba(255, 0, 0, 0.3), 0 0 120px rgba(255, 0, 0, 0.1); }
        }

        .youtube-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .youtube-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
            padding: 15px 40px;
            background: #ff0000;
            color: #fff;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.3s;
            animation: youtubePulse 2s infinite;
        }

        @keyframes youtubePulse {
            0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.4); }
            50% { box-shadow: 0 0 40px rgba(255, 0, 0, 0.7), 0 0 80px rgba(255, 0, 0, 0.3); }
        }

        .youtube-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
        }

        /* ===== MUSIC VISUAL ===== */
        .music-visual {
            padding: 100px 20px;
            text-align: center;
            position: relative;
        }

        .visual-container {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 6px;
            height: 200px;
            margin: 40px 0;
            padding: 0 20px;
        }

        .visual-bar {
            width: 10px;
            background: linear-gradient(to top, var(--neon-purple), var(--neon-cyan));
            border-radius: 5px;
            animation: visualPulse 1.2s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
            transition: height 0.2s ease;
        }

        .visual-bar:nth-child(odd) { animation-duration: 0.8s; }
        .visual-bar:nth-child(3n) { animation-duration: 1.5s; }
        .visual-bar:nth-child(5n) { animation-duration: 1s; }

        @keyframes visualPulse {
            0%, 100% { height: 20px; opacity: 0.5; }
            50% { height: 150px; opacity: 1; }
        }

        /* ===== FOOTER ===== */
        footer {
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        footer .logo {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        footer p {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        /* ===== SCROLL ANIMATION ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(5, 5, 8, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .visual-bar {
                width: 6px;
            }
        }

        /* ===== FLOATING ORBS ===== */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            animation: orbFloat 15s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -30px) scale(1.2); }
            66% { transform: translate(-30px, 50px) scale(0.8); }
        }

        /* ===== RIPPLE EFFECT ===== */
        .ripple {
            position: absolute;
            border-radius: 50%;
            border: 2px solid var(--neon-cyan);
            opacity: 0;
            animation: rippleEffect 3s infinite;
            pointer-events: none;
        }

        @keyframes rippleEffect {
            0% { 
                width: 0; 
                height: 0; 
                opacity: 0.6;
            }
            100% { 
                width: 300px; 
                height: 300px; 
                opacity: 0;
            }
        }

        /* ===== NEON FLICKER TEXT ===== */
        .neon-flicker {
            animation: neonFlicker 3s infinite;
        }

        @keyframes neonFlicker {
            0%, 100% { 
                text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
            }
            5% { 
                text-shadow: none;
                opacity: 0.5;
            }
            10% { 
                text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
                opacity: 1;
            }
            15% { 
                text-shadow: none;
                opacity: 0.3;
            }
            20% { 
                text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
                opacity: 1;
            }
        }

        /* ===== LOGO GLITCH EFFECT ===== */
        .logo-glitch-wrapper {
            position: relative;
            margin-bottom: 20px;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-top: 80px;
        }

        .logo-glitch {
            position: relative;
            width: 180px;
            height: 180px;
            animation: logoContainerGlitch 4s infinite;
        }

        .logo-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .logo-img-cyan {
            animation: logoGlitchCyan 2.5s infinite linear alternate-reverse;
            opacity: 0.7;
            mix-blend-mode: screen;
            filter: hue-rotate(180deg) saturate(3);
        }

        .logo-img-pink {
            animation: logoGlitchPink 3s infinite linear alternate-reverse;
            opacity: 0.7;
            mix-blend-mode: screen;
            filter: hue-rotate(300deg) saturate(3);
        }

        @keyframes logoGlitchCyan {
            0%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
            10% { transform: translate(-8px, 3px); clip-path: inset(10% 0 60% 0); }
            20% { transform: translate(6px, -4px); clip-path: inset(40% 0 20% 0); }
            30% { transform: translate(-4px, 5px); clip-path: inset(0 0 80% 0); }
            40% { transform: translate(8px, -2px); clip-path: inset(60% 0 0 0); }
            50% { transform: translate(-6px, 4px); clip-path: inset(20% 0 50% 0); }
            60% { transform: translate(4px, -6px); clip-path: inset(70% 0 10% 0); }
            70% { transform: translate(-3px, 2px); clip-path: inset(0 0 40% 0); }
            80% { transform: translate(5px, -5px); clip-path: inset(30% 0 30% 0); }
            90% { transform: translate(-7px, 3px); clip-path: inset(50% 0 0 0); }
        }

        @keyframes logoGlitchPink {
            0%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
            10% { transform: translate(7px, -3px); clip-path: inset(0 0 50% 0); }
            20% { transform: translate(-5px, 4px); clip-path: inset(30% 0 10% 0); }
            30% { transform: translate(4px, -5px); clip-path: inset(60% 0 20% 0); }
            40% { transform: translate(-8px, 2px); clip-path: inset(0 0 70% 0); }
            50% { transform: translate(6px, -4px); clip-path: inset(40% 0 0 0); }
            60% { transform: translate(-4px, 6px); clip-path: inset(10% 0 60% 0); }
            70% { transform: translate(3px, -2px); clip-path: inset(80% 0 0 0); }
            80% { transform: translate(-6px, 5px); clip-path: inset(0 0 30% 0); }
            90% { transform: translate(8px, -3px); clip-path: inset(20% 0 50% 0); }
        }

        @keyframes logoContainerGlitch {
            0%, 92%, 100% { transform: translate(0) scale(1); filter: none; }
            93% { transform: translate(3px, -2px) scale(1.02); filter: drop-shadow(3px 0 var(--neon-cyan)) drop-shadow(-3px 0 var(--neon-pink)); }
            94% { transform: translate(-3px, 2px) scale(0.98); filter: drop-shadow(-3px 0 var(--neon-cyan)) drop-shadow(3px 0 var(--neon-pink)); }
            95% { transform: translate(2px, 0) scale(1); filter: drop-shadow(2px 0 var(--neon-yellow)) drop-shadow(-2px 0 var(--neon-green)); }
            96% { transform: translate(0) scale(1); filter: none; }
            97% { transform: translate(-2px, 3px) scale(1.01); filter: drop-shadow(-2px 0 var(--neon-cyan)) drop-shadow(2px 0 var(--neon-pink)); }
            98% { transform: translate(0) scale(1); filter: none; }
        }

        /* Logo glow ring */
        .logo-glitch::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--neon-cyan);
            border-bottom-color: var(--neon-pink);
            animation: logoRingSpin 3s linear infinite;
            pointer-events: none;
        }

        @keyframes logoRingSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Logo static noise overlay */
        .logo-glitch::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 240, 255, 0.1) 2px,
                rgba(0, 240, 255, 0.1) 4px
            );
            animation: logoStatic 0.5s infinite;
            pointer-events: none;
            z-index: 3;
            opacity: 0.3;
        }

        @keyframes logoStatic {
            0% { transform: translateY(0); }
            100% { transform: translateY(-4px); }
        }

@keyframes youtubeIconPulse {
                0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255,0,0,0.4)); }
                50% { transform: scale(1.1); filter: drop-shadow(0 0 40px rgba(255,0,0,0.8)); }
            }
    
        /* ===== LOGO GLITCH EFFECT ===== */
        .logo-glitch-wrapper {
            position: relative;
            margin-bottom: 20px;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-top: 80px;
        }

        .logo-glitch {
            position: relative;
            width: 180px;
            height: 180px;
            animation: logoContainerGlitch 4s infinite;
        }

        .logo-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .logo-img-cyan {
            animation: logoGlitchCyan 2.5s infinite linear alternate-reverse;
            opacity: 0.7;
            mix-blend-mode: screen;
            filter: hue-rotate(180deg) saturate(3);
        }

        .logo-img-pink {
            animation: logoGlitchPink 3s infinite linear alternate-reverse;
            opacity: 0.7;
            mix-blend-mode: screen;
            filter: hue-rotate(300deg) saturate(3);
        }

        @keyframes logoGlitchCyan {
            0%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
            10% { transform: translate(-8px, 3px); clip-path: inset(10% 0 60% 0); }
            20% { transform: translate(6px, -4px); clip-path: inset(40% 0 20% 0); }
            30% { transform: translate(-4px, 5px); clip-path: inset(0 0 80% 0); }
            40% { transform: translate(8px, -2px); clip-path: inset(60% 0 0 0); }
            50% { transform: translate(-6px, 4px); clip-path: inset(20% 0 50% 0); }
            60% { transform: translate(4px, -6px); clip-path: inset(70% 0 10% 0); }
            70% { transform: translate(-3px, 2px); clip-path: inset(0 0 40% 0); }
            80% { transform: translate(5px, -5px); clip-path: inset(30% 0 30% 0); }
            90% { transform: translate(-7px, 3px); clip-path: inset(50% 0 0 0); }
        }

        @keyframes logoGlitchPink {
            0%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
            10% { transform: translate(7px, -3px); clip-path: inset(0 0 50% 0); }
            20% { transform: translate(-5px, 4px); clip-path: inset(30% 0 10% 0); }
            30% { transform: translate(4px, -5px); clip-path: inset(60% 0 20% 0); }
            40% { transform: translate(-8px, 2px); clip-path: inset(0 0 70% 0); }
            50% { transform: translate(6px, -4px); clip-path: inset(40% 0 0 0); }
            60% { transform: translate(-4px, 6px); clip-path: inset(10% 0 60% 0); }
            70% { transform: translate(3px, -2px); clip-path: inset(80% 0 0 0); }
            80% { transform: translate(-6px, 5px); clip-path: inset(0 0 30% 0); }
            90% { transform: translate(8px, -3px); clip-path: inset(20% 0 50% 0); }
        }

        @keyframes logoContainerGlitch {
            0%, 92%, 100% { transform: translate(0) scale(1); filter: none; }
            93% { transform: translate(3px, -2px) scale(1.02); filter: drop-shadow(3px 0 var(--neon-cyan)) drop-shadow(-3px 0 var(--neon-pink)); }
            94% { transform: translate(-3px, 2px) scale(0.98); filter: drop-shadow(-3px 0 var(--neon-cyan)) drop-shadow(3px 0 var(--neon-pink)); }
            95% { transform: translate(2px, 0) scale(1); filter: drop-shadow(2px 0 var(--neon-yellow)) drop-shadow(-2px 0 var(--neon-green)); }
            96% { transform: translate(0) scale(1); filter: none; }
            97% { transform: translate(-2px, 3px) scale(1.01); filter: drop-shadow(-2px 0 var(--neon-cyan)) drop-shadow(2px 0 var(--neon-pink)); }
            98% { transform: translate(0) scale(1); filter: none; }
        }

        /* Logo glow ring */
        .logo-glitch::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--neon-cyan);
            border-bottom-color: var(--neon-pink);
            animation: logoRingSpin 3s linear infinite;
            pointer-events: none;
        }

        @keyframes logoRingSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Logo static noise overlay */
        .logo-glitch::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 240, 255, 0.1) 2px,
                rgba(0, 240, 255, 0.1) 4px
            );
            animation: logoStatic 0.5s infinite;
            pointer-events: none;
            z-index: 3;
            opacity: 0.3;
        }

        @keyframes logoStatic {
            0% { transform: translateY(0); }
            100% { transform: translateY(-4px); }
        }

/* ===== ARROW THEME SECTION ===== */
        .arrow-section {
            position: relative;
            padding: 100px 20px;
            overflow: hidden;
            background: linear-gradient(180deg, var(--darker) 0%, rgba(0,240,255,0.03) 50%, var(--darker) 100%);
        }

        .arrow-bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Floating Arrows */
        .floating-arrows {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .float-arrow {
            position: absolute;
            font-size: 2rem;
            color: rgba(0, 240, 255, 0.1);
            animation: floatArrow linear infinite;
        }

        .float-arrow i {
            filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
        }

        .arrow-1 { top: 10%; left: 5%; animation-duration: 15s; animation-delay: 0s; }
        .arrow-2 { top: 20%; right: 10%; animation-duration: 18s; animation-delay: 2s; color: rgba(255, 0, 160, 0.1); }
        .arrow-3 { top: 50%; left: 8%; animation-duration: 20s; animation-delay: 4s; color: rgba(184, 41, 221, 0.1); }
        .arrow-4 { top: 70%; right: 5%; animation-duration: 16s; animation-delay: 1s; }
        .arrow-5 { top: 30%; left: 50%; animation-duration: 22s; animation-delay: 3s; color: rgba(57, 255, 20, 0.1); }
        .arrow-6 { top: 80%; left: 30%; animation-duration: 19s; animation-delay: 5s; }
        .arrow-7 { top: 15%; right: 30%; animation-duration: 17s; animation-delay: 2.5s; color: rgba(255, 0, 160, 0.1); }
        .arrow-8 { top: 60%; right: 20%; animation-duration: 21s; animation-delay: 1.5s; color: rgba(184, 41, 221, 0.1); }

        @keyframes floatArrow {
            0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0; }
            10% { opacity: 1; }
            25% { transform: translate(50px, -30px) rotate(90deg) scale(1.2); }
            50% { transform: translate(-30px, 50px) rotate(180deg) scale(0.8); }
            75% { transform: translate(30px, -20px) rotate(270deg) scale(1.1); }
            90% { opacity: 1; }
            100% { transform: translate(0, 0) rotate(360deg) scale(1); opacity: 0; }
        }

        .arrow-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Main Arrow Display */
        .main-arrow-display {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
            height: 200px;
        }

        .arrow-core {
            position: relative;
            width: 300px;
            height: 60px;
            animation: arrowPulse 2s ease-in-out infinite;
        }

        @keyframes arrowPulse {
            0%, 100% { transform: scale(1); filter: brightness(1); }
            50% { transform: scale(1.05); filter: brightness(1.3); }
        }

        .arrow-shaft {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 200px;
            height: 8px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(255, 0, 160, 0.3);
        }

        .shaft-glow {
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
            border-radius: 8px;
            filter: blur(10px);
            opacity: 0.5;
            animation: shaftGlow 2s ease-in-out infinite alternate;
        }

        @keyframes shaftGlow {
            from { opacity: 0.3; }
            to { opacity: 0.7; }
        }

        .arrow-tip {
            position: absolute;
            top: 50%;
            right: -40px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 50px solid var(--neon-cyan);
            border-top: 25px solid transparent;
            border-bottom: 25px solid transparent;
            filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6));
            animation: tipFlicker 3s infinite;
        }

        @keyframes tipFlicker {
            0%, 100% { border-left-color: var(--neon-cyan); }
            50% { border-left-color: var(--neon-pink); }
        }

        .arrow-fletching {
            position: absolute;
            top: 50%;
            left: -30px;
            width: 40px;
            height: 30px;
            background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
            clip-path: polygon(0 0, 100% 50%, 0 100%);
            transform: translateY(-50%);
            box-shadow: 0 0 15px rgba(184, 41, 221, 0.5);
        }

        .arrow-fletching.right {
            top: 50%;
            transform: translateY(-50%) rotate(180deg);
            margin-top: 15px;
        }

        .arrow-fletching.left {
            top: 50%;
            transform: translateY(-50%);
            margin-top: -15px;
        }

        .arrow-trail {
            position: absolute;
            top: 50%;
            left: -100px;
            transform: translateY(-50%);
            display: flex;
            gap: 15px;
        }

        .trail-particle {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--neon-cyan);
            box-shadow: 0 0 10px var(--neon-cyan);
            animation: trailPulse 1.5s ease-in-out infinite;
        }

        .trail-particle:nth-child(1) { animation-delay: 0s; opacity: 0.2; }
        .trail-particle:nth-child(2) { animation-delay: 0.2s; opacity: 0.4; }
        .trail-particle:nth-child(3) { animation-delay: 0.4s; opacity: 0.6; }
        .trail-particle:nth-child(4) { animation-delay: 0.6s; opacity: 0.8; }
        .trail-particle:nth-child(5) { animation-delay: 0.8s; opacity: 1; }

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

        /* Arrow Info Grid */
        .arrow-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .arrow-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 240, 255, 0.1);
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .arrow-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.05), transparent);
            transition: left 0.5s;
        }

        .arrow-card:hover::before {
            left: 100%;
        }

        .arrow-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-cyan);
            box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1), 0 0 60px rgba(0, 240, 255, 0.05);
        }

        .arrow-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-cyan);
            text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
            animation: iconGlow 2s ease-in-out infinite alternate;
        }

        @keyframes iconGlow {
            from { text-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
            to { text-shadow: 0 0 30px rgba(0, 240, 255, 0.8), 0 0 50px rgba(0, 240, 255, 0.4); }
        }

        .arrow-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .arrow-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .arrow-progress {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .arrow-progress-bar {
            height: 100%;
            width: var(--progress);
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
            border-radius: 3px;
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
            animation: progressFill 2s ease-out;
        }

        @keyframes progressFill {
            from { width: 0%; }
            to { width: var(--progress); }
        }

        /* Arrow Path Section */
        .arrow-path-section {
            margin-bottom: 80px;
            text-align: center;
        }

        .path-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 40px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            animation: titleGlitch 5s infinite;
        }

        .path-container {
            position: relative;
            padding: 40px 0;
        }

        .arrow-svg {
            width: 100%;
            height: 200px;
        }

        .path-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawPath 3s ease-out forwards;
        }

        @keyframes drawPath {
            to { stroke-dashoffset: 0; }
        }

        .path-dash {
            animation: dashMove 20s linear infinite;
        }

        @keyframes dashMove {
            to { stroke-dashoffset: -1000; }
        }

        .path-arrowhead {
            animation: arrowheadPulse 1.5s ease-in-out infinite;
        }

        @keyframes arrowheadPulse {
            0%, 100% { transform: translateX(0); opacity: 1; }
            50% { transform: translateX(5px); opacity: 0.8; }
        }

        .path-waypoints {
            position: relative;
            height: 60px;
            margin-top: 20px;
        }

        .waypoint {
            position: absolute;
            top: 0;
            transform: translateX(-50%);
            text-align: center;
        }

        .waypoint-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--neon-cyan);
            box-shadow: 0 0 15px var(--neon-cyan), 0 0 30px rgba(0, 240, 255, 0.3);
            margin: 0 auto 10px;
            animation: waypointGlow 2s ease-in-out infinite alternate;
        }

        .waypoint:nth-child(2) .waypoint-dot { background: var(--neon-pink); box-shadow: 0 0 15px var(--neon-pink); animation-delay: 0.5s; }
        .waypoint:nth-child(3) .waypoint-dot { background: var(--neon-purple); box-shadow: 0 0 15px var(--neon-purple); animation-delay: 1s; }
        .waypoint:nth-child(4) .waypoint-dot { background: var(--neon-green); box-shadow: 0 0 15px var(--neon-green); animation-delay: 1.5s; }
        .waypoint:nth-child(5) .waypoint-dot { background: var(--neon-yellow); box-shadow: 0 0 15px var(--neon-yellow); animation-delay: 2s; }

        @keyframes waypointGlow {
            from { transform: scale(1); }
            to { transform: scale(1.3); }
        }

        .waypoint-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Arrow Compass */
        .arrow-compass {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 80px;
        }

        .compass-ring {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 2px solid rgba(0, 240, 255, 0.3);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.1), inset 0 0 30px rgba(0, 240, 255, 0.05);
            animation: compassRotate 20s linear infinite;
        }

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

        .compass-marker {
            position: absolute;
            font-size: 1.5rem;
            color: var(--neon-cyan);
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }

        .compass-marker.n { top: 10px; left: 50%; transform: translateX(-50%); }
        .compass-marker.e { right: 10px; top: 50%; transform: translateY(-50%); }
        .compass-marker.s { bottom: 10px; left: 50%; transform: translateX(-50%); }
        .compass-marker.w { left: 10px; top: 50%; transform: translateY(-50%); }

        .compass-center {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.2), transparent);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .compass-needle {
            width: 4px;
            height: 60px;
            background: linear-gradient(to top, var(--neon-pink), var(--neon-cyan));
            border-radius: 2px;
            position: relative;
            animation: needleSpin 4s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
        }

        .compass-needle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 15px solid var(--neon-cyan);
        }

        @keyframes needleSpin {
            0%, 100% { transform: rotate(-45deg); }
            25% { transform: rotate(45deg); }
            50% { transform: rotate(135deg); }
            75% { transform: rotate(225deg); }
        }

        .compass-text {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .compass-word {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .compass-word:hover {
            color: var(--neon-cyan);
            text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
            transform: scale(1.1);
        }

        /* Arrow CTA */
        .arrow-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .cta-arrow-line {
            flex: 1;
            max-width: 150px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-cyan));
            position: relative;
        }

        .cta-arrow-line:last-child {
            background: linear-gradient(90deg, var(--neon-cyan), transparent);
        }

        .cta-arrow-line::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid var(--neon-cyan);
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }

        .cta-arrow-line:last-child::after {
            right: auto;
            left: 0;
            border-left: none;
            border-right: 8px solid var(--neon-cyan);
        }

        .cta-arrow-btn {
            padding: 18px 40px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #fff;
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 160, 0.1));
            border: 2px solid var(--neon-cyan);
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .cta-arrow-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-arrow-btn:hover::before {
            left: 100%;
        }

        .cta-arrow-btn:hover {
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 240, 255, 0.2);
            transform: scale(1.05);
            border-color: var(--neon-pink);
        }

        .cta-arrow-btn i {
            transition: transform 0.3s;
        }

        .cta-arrow-btn:hover i {
            transform: translateX(5px);
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .main-arrow-display {
                height: 150px;
            }

            .arrow-core {
                width: 200px;
                height: 40px;
            }

            .arrow-shaft {
                width: 130px;
                height: 6px;
            }

            .arrow-tip {
                border-left: 35px solid var(--neon-cyan);
                border-top: 18px solid transparent;
                border-bottom: 18px solid transparent;
                right: -30px;
            }

            .compass-ring {
                width: 150px;
                height: 150px;
            }

            .compass-center {
                width: 60px;
                height: 60px;
            }

            .compass-needle {
                height: 45px;
            }
        }

/* ===== MUSIC PLAYER STYLES ===== */
        .music-player-section {
            padding: 100px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            background: rgba(0, 0, 0, 0.4);
        }

        .player-container {
            background: rgba(10, 10, 15, 0.9);
            border: 1px solid rgba(0, 240, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.1), 
                        inset 0 0 40px rgba(0, 240, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .player-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple), var(--neon-cyan));
            border-radius: 20px;
            opacity: 0.3;
            z-index: -1;
            animation: borderRotate 3s linear infinite;
        }

        @keyframes borderRotate {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

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

        .player-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 5px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            position: relative;
            animation: titleGlitch 5s infinite;
        }

        .visualizer-container {
            height: 60px;
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(0, 240, 255, 0.1);
        }

        #audioVisualizer {
            width: 100%;
            height: 100%;
        }

        .player-main {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
        }

        .album-art {
            flex-shrink: 0;
        }

        .album-disc {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
            border: 3px solid rgba(0, 240, 255, 0.3);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
            animation: discSpin 3s linear infinite paused;
        }

        .album-disc.playing {
            animation-play-state: running;
        }

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

        .disc-center {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--neon-cyan);
            box-shadow: 0 0 10px var(--neon-cyan);
        }

        .disc-grooves {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border-radius: 50%;
            border: 1px solid rgba(0, 240, 255, 0.1);
        }

        .disc-grooves::before,
        .disc-grooves::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(0, 240, 255, 0.1);
        }

        .disc-grooves::before {
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
        }

        .disc-grooves::after {
            top: 30px;
            left: 30px;
            right: 30px;
            bottom: 30px;
        }

        .track-info {
            flex: 1;
        }

        .track-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }

        .track-artist {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .track-time {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }

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

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
            border-radius: 3px;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }

        .progress-handle {
            position: absolute;
            top: 50%;
            left: 0%;
            transform: translate(-50%, -50%);
            width: 14px;
            height: 14px;
            background: var(--neon-cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
            opacity: 0;
            transition: opacity 0.3s, left 0.1s linear;
        }

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

        .player-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .control-btn {
            background: transparent;
            border: 2px solid rgba(0, 240, 255, 0.3);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .control-btn:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
            transform: scale(1.1);
        }

        .play-btn {
            width: 65px;
            height: 65px;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
            border: none;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
        }

        .play-btn:hover {
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 60px rgba(0, 240, 255, 0.2);
        }

        .volume-control {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.5);
        }

        .volume-slider-container {
            width: 120px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        .volume-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .volume-level {
            height: 100%;
            width: 70%;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
            border-radius: 2px;
            transition: width 0.1s;
        }

        .playlist-container {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .playlist-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 15px;
            text-align: center;
        }

        .playlist {
            list-style: none;
            max-height: 200px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .playlist::-webkit-scrollbar {
            width: 4px;
        }

        .playlist::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 2px;
        }

        .playlist::-webkit-scrollbar-thumb {
            background: var(--neon-cyan);
            border-radius: 2px;
        }

        .playlist-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 5px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid transparent;
        }

        .playlist-item:hover {
            background: rgba(0, 240, 255, 0.05);
            border-color: rgba(0, 240, 255, 0.2);
        }

        .playlist-item.active {
            background: linear-gradient(90deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 160, 0.1));
            border-color: var(--neon-cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
        }

        .playlist-item.active .track-number {
            color: var(--neon-cyan);
            text-shadow: 0 0 10px var(--neon-cyan);
        }

        .playlist-item.active .track-title {
            color: #fff;
        }

        .track-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
            width: 30px;
            transition: all 0.3s;
        }

        .track-title {
            flex: 1;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s;
        }

        .track-duration {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
        }

        /* Mobile responsive */
        @media (max-width: 480px) {
            .player-main {
                flex-direction: column;
                text-align: center;
            }

            .player-container {
                padding: 25px;
            }

            .player-title {
                font-size: 1.2rem;
            }
        }