/*

KrazyMania.Com | Live Radio 24/7 |

https://krazymania.com/

*/

@charset "utf-8";

/* CSS Document */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Animated background with hexagon pattern */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, transparent 2%, rgba(247, 201, 6, 0.03) 2%, rgba(247, 201, 6, 0.03) 3%, transparent 3%),
                radial-gradient(circle at 75% 75%, transparent 2%, rgba(0, 0, 0, 0.03) 2%, rgba(0, 0, 0, 0.03) 3%, transparent 3%);
            background-size: 80px 80px;
            animation: grid-move 30s linear infinite;
            z-index: -2;
        }

        /* Animated shapes */
        .music-shapes-layer {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .bg-icon {
            position: absolute;
            opacity: 0.12;
        }

        .shape-dj {
            width: 260px;
            height: 260px;
            border-radius: 50%;
            top: 8%;
            left: 7%;
            background:
                radial-gradient(circle at center, rgba(247, 201, 6, 0.35) 0 12px, transparent 12px),
                repeating-radial-gradient(circle at center, rgba(247, 201, 6, 0.2) 0 2px, rgba(0, 0, 0, 0) 2px 9px);
            border: 2px solid rgba(247, 201, 6, 0.5);
            box-shadow: 0 0 28px rgba(247, 201, 6, 0.2);
            animation: float-rotate 22s ease-in-out infinite;
        }

        .shape-music {
            width: 150px;
            height: 150px;
            top: 56%;
            right: 10%;
            animation: float-rotate 27s ease-in-out infinite reverse;
        }

        .shape-music::before {
            content: '\266A';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Orbitron', monospace;
            font-size: 8.5rem;
            line-height: 1;
            color: rgba(247, 201, 6, 0.35);
            text-shadow: 0 0 24px rgba(247, 201, 6, 0.3);
        }

        .shape-radio {
            width: 190px;
            height: 190px;
            bottom: 14%;
            left: 18%;
            animation: float-rotate 25s ease-in-out infinite;
        }

        .shape-radio::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 22px;
            width: 10px;
            height: 92px;
            transform: translateX(-50%);
            background: linear-gradient(to top, rgba(247, 201, 6, 0.15), rgba(247, 201, 6, 0.45));
            border-radius: 10px;
            box-shadow: 0 0 16px rgba(247, 201, 6, 0.22);
        }

        .shape-radio::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 28px;
            width: 120px;
            height: 120px;
            transform: translateX(-50%);
            border-radius: 50%;
            border: 2px solid rgba(247, 201, 6, 0.3);
            box-shadow:
                0 0 0 16px rgba(247, 201, 6, 0.12),
                0 0 0 34px rgba(247, 201, 6, 0.08);
        }

        @keyframes float-rotate {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translateY(-10px) rotate(270deg) scale(1.05);
            }
        }

        /* Gradient overlay */
        .gradient-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(247, 201, 6, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            z-index: -1;
            animation: gradient-shift 10s ease-in-out infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Floating particles */
        .particle {
            position: fixed;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .particle::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 2px;
            background: #f7c906ff;
            box-shadow: 0 0 10px #f7c906ff, 0 0 20px #f7c906ff;
            animation: float-up 15s linear infinite;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(10, 10, 10, 0.8);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(247, 201, 6, 0.1);
        }

        nav.scrolled {
            padding: 15px 50px;
            background: rgba(10, 10, 10, 0.95);
            box-shadow: 0 5px 30px rgba(247, 201, 6, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px;
        }

        .logo-svg {
            width: 40px;
            height: 40px;
        }

        .logo-text {
            font-family: 'Orbitron', monospace;
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(45deg, #f7c906ff, #000000);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(247, 201, 6, 0.5);
        }

        @keyframes glow {
            0%, 100% { 
                filter: brightness(1);
                text-shadow: 0 0 30px rgba(247, 201, 6, 0.5);
            }
            50% { 
                filter: brightness(1.5);
                text-shadow: 0 0 40px rgba(247, 201, 6, 0.8);
            }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 16px;
            font-family: 'Orbitron', monospace;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        .nav-links a.active {
            opacity: 1;
            color: #f7c906ff;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            border-color: #f7c906ff;
            box-shadow: inset 0 0 10px rgba(247, 201, 6, 0.5);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f7c906ff, #000000);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(247, 201, 6, 0.8);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #f7c906ff;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            min-height: -webkit-fill-available;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            position: relative;
            padding: 80px 20px 20px;
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
            animation: fade-in-up 1s ease-out;
            z-index: 10;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Text Rotator Styles */
        .text-rotator {
            position: relative;
            min-height: 100px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .text-set {
            position: absolute;
            width: 100%;
            opacity: 0;
            display: none;
        }

        .text-set.active {
            opacity: 1;
            display: block;
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(0.98rem, 2.94vw, 2.4rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px rgba(247, 201, 6, 0.5);
            overflow: hidden;
        }

        .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
            animation: charFlyIn 0.5s ease-out forwards;
        }

        @keyframes charFlyIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .char.out {
            animation: charFlyOut 0.3s ease-in forwards;
        }

        @keyframes charFlyOut {
            to {
                opacity: 0;
                transform: translateY(-30px) rotateX(90deg);
            }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        .subtitle.visible {
            animation: subtitleFade 0.8s ease-out 0.5s forwards;
        }

        @keyframes subtitleFade {
            to {
                opacity: 0.6;
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2.6rem, 10vw, 3.8rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px rgba(247, 201, 6, 0.5);
        }

        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch-text::before {
            animation: glitch-1 0.5s infinite;
            color: #f7c906ff;
            z-index: -1;
            text-shadow: -2px 0 #f7c906ff;
        }

        .glitch-text::after {
            animation: glitch-2 0.5s infinite;
            color: #000000;
            z-index: -1;
            text-shadow: 2px 0 #000000;
        }

        @keyframes glitch-1 {
            0%, 100% { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { -webkit-clip-path: inset(33% 0 33% 0); clip-path: inset(33% 0 33% 0); transform: translate(-2px); }
            40% { -webkit-clip-path: inset(66% 0 0 0); clip-path: inset(66% 0 0 0); transform: translate(2px); }
            60% { -webkit-clip-path: inset(0 0 66% 0); clip-path: inset(0 0 66% 0); transform: translate(1px); }
            80% { -webkit-clip-path: inset(25% 0 50% 0); clip-path: inset(25% 0 50% 0); transform: translate(-1px); }
        }

        @keyframes glitch-2 {
            0%, 100% { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { -webkit-clip-path: inset(50% 0 25% 0); clip-path: inset(50% 0 25% 0); transform: translate(2px); }
            40% { -webkit-clip-path: inset(0 0 75% 0); clip-path: inset(0 0 75% 0); transform: translate(-2px); }
            60% { -webkit-clip-path: inset(75% 0 0 0); clip-path: inset(75% 0 0 0); transform: translate(-1px); }
            80% { -webkit-clip-path: inset(40% 0 40% 0); clip-path: inset(40% 0 40% 0); transform: translate(1px); }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0.6;
            animation: fade-in 1s ease-out 0.5s both;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 0.6; }
        }

        .cta-container {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            z-index: 100;
        }

        .cta-button {
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .cta-primary {
            background: linear-gradient(45deg, #f7c906ff, #000000);
            color: white;
            animation: pulse 2s infinite;
            box-shadow: 0 0 30px rgba(247, 201, 6, 0.5);
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(247, 201, 6, 0.5);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(247, 201, 6, 0.8);
            }
        }

        .cta-secondary {
            background: transparent;
            color: #f7c906ff;
            border: 2px solid #f7c906ff;
            box-shadow: inset 0 0 20px rgba(247, 201, 6, 0.1);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-secondary:hover {
            background: rgba(247, 201, 6, 0.1);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(247, 201, 6, 0.4), inset 0 0 30px rgba(247, 201, 6, 0.2);
            border-color: #ffffff;
        }

        /* ── Social Media Tooltips ──────────────────────────────────────── */
        .social-tooltips {
            padding: 60px 20px 100px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .social-title {
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: #f7c906ff;
            margin-bottom: 25px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(247, 201, 6, 0.4);
        }

        .social-links-container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            align-items: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .follow-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(45deg, #f7c906ff, #000000);
            color: #000;
            font-family: 'Orbitron', monospace;
            font-size: 0.85rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .follow-btn:hover {
            opacity: 0.85;
            transform: translateY(-3px);
        }

        .follow-btn--secondary {
            background: transparent;
            border: 1px solid #f7c906ff;
            color: #f7c906ff;
        }

        @media (max-width: 480px) {
            .social-tooltips {
                padding: 30px 15px;
            }
            .social-links-container {
                flex-direction: column;
                align-items: stretch;
            }
            .follow-btn {
                justify-content: center;
            }
        }

        /* ── Compact Rotator Banner ──────────────────────────────────── */
        .compact-rotator-wrap {
            padding: 80px 20px 0;
            text-align: center;
            border-top: 1px solid rgba(247, 201, 6, 0.15);
        }

        .compact-rotator {
            min-height: 120px;
        }

        .compact-rotator .glitch-text {
            font-size: clamp(1.8rem, 6vw, 3.2rem);
        }

        .compact-rotator .subtitle {
            font-size: 1.1rem;
            margin: 10px 0 0;
        }

        @media (max-width: 768px) {
            .compact-rotator { min-height: 140px; }
            .compact-rotator .glitch-text { font-size: clamp(1.2rem, 5vw, 2rem); }
            .compact-rotator .subtitle { font-size: 0.9rem; }
        }
        /* ── End Compact Rotator Banner ─────────────────────────────────── */

        /* Features Section - Stats/Highlight Banners */
        .features {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #f7c906ff, #000000);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

        .stats-banner-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .stat-banner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(247, 201, 6, 0.25);
            border-radius: 16px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .stat-banner:hover {
            transform: translateY(-6px);
            border-color: #f7c906ff;
            box-shadow: 0 0 30px rgba(247, 201, 6, 0.3);
        }

        .stat-icon {
            font-size: 2.5rem;
            line-height: 1;
        }

        .stat-value {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #f7c906ff, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* About Section */
        .about {
            padding: 60px 20px 100px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            justify-content: center;
        }

        .about-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(247, 201, 6, 0.25);
            border-radius: 16px;
            padding: 40px 44px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 30px rgba(247, 201, 6, 0.06);
        }

        .about-text h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #f7c906ff, #000000);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-text p {
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .music-visual {
            width: 320px;
            height: 320px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 8s ease-in-out infinite;
        }

        .audio-orb {
            width: 250px;
            height: 250px;
            position: relative;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at center, rgba(247, 201, 6, 0.12) 0%, rgba(10, 10, 10, 0.88) 56%, rgba(0, 0, 0, 0.95) 100%);
            border: 1px solid rgba(247, 201, 6, 0.26);
            box-shadow: 0 0 16px rgba(247, 201, 6, 0.28), inset 0 0 18px rgba(247, 201, 6, 0.08);
            overflow: hidden;
        }

        .audio-pulse-ring {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 1px solid rgba(247, 201, 6, 0.3);
            animation: audio-ring-pulse 4.8s ease-out infinite;
        }

        .audio-pulse-ring.ring-2 { animation-delay: 1.05s; }
        .audio-pulse-ring.ring-3 { animation-delay: 2.1s; }

        .waveform-line {
            position: absolute;
            left: 28px;
            right: 28px;
            bottom: 78px;
            height: 48px;
            display: flex;
            align-items: flex-end;
            gap: 4px;
        }

        .wave-bar {
            flex: 1;
            min-height: 6px;
            border-radius: 999px;
            background: linear-gradient(to top, #f7c906ff, #fff7c9);
            box-shadow: 0 0 6px rgba(247, 201, 6, 0.35);
            transform-origin: bottom;
            animation: wave-line-bounce 1.65s ease-in-out infinite;
        }

        .wave-bar:nth-child(2)  { animation-delay: 0.06s; }
        .wave-bar:nth-child(3)  { animation-delay: 0.12s; }
        .wave-bar:nth-child(4)  { animation-delay: 0.18s; }
        .wave-bar:nth-child(5)  { animation-delay: 0.24s; }
        .wave-bar:nth-child(6)  { animation-delay: 0.3s; }
        .wave-bar:nth-child(7)  { animation-delay: 0.36s; }
        .wave-bar:nth-child(8)  { animation-delay: 0.42s; }
        .wave-bar:nth-child(9)  { animation-delay: 0.48s; }
        .wave-bar:nth-child(10) { animation-delay: 0.54s; }
        .wave-bar:nth-child(11) { animation-delay: 0.6s; }
        .wave-bar:nth-child(12) { animation-delay: 0.66s; }
        .wave-bar:nth-child(13) { animation-delay: 0.72s; }
        .wave-bar:nth-child(14) { animation-delay: 0.78s; }
        .wave-bar:nth-child(15) { animation-delay: 0.84s; }
        .wave-bar:nth-child(16) { animation-delay: 0.9s; }

        .audio-orb-core {
            position: absolute;
            top: 78px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Orbitron', monospace;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: #f7c906ff;
            text-shadow: 0 0 8px rgba(247, 201, 6, 0.45);
        }

        @keyframes audio-ring-pulse {
            0% {
                transform: scale(0.82);
                opacity: 0.48;
            }
            100% {
                transform: scale(1.18);
                opacity: 0;
            }
        }

        @keyframes wave-line-bounce {
            0%, 100% {
                height: 8px;
                opacity: 0.62;
            }
            50% {
                height: 34px;
                opacity: 0.9;
            }
        }

        /* Alternative graphic for second row */
        .about-graphic-alt {
            width: 300px;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .hexagon {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #f7c906ff, #000000);
            opacity: 0.3;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .hexagon:nth-child(1) {
            width: 150px;
            height: 150px;
            animation: hexagon-rotate 8s linear infinite;
        }

        .hexagon:nth-child(2) {
            width: 100px;
            height: 100px;
            animation: hexagon-rotate 12s linear infinite reverse;
            opacity: 0.5;
        }

        .hexagon:nth-child(3) {
            width: 200px;
            height: 200px;
            animation: hexagon-rotate 15s linear infinite;
            opacity: 0.2;
        }

        @keyframes hexagon-rotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Contact Section */
        .contact {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* ── Affiliates Section ──────────────────────────────────────────── */
        .affiliates {
            padding: 100px 40px;
            text-align: center;
            background: linear-gradient(180deg, rgba(247, 201, 6, 0.05), rgba(0, 0, 0, 0.8));
            border-top: 1px solid rgba(247, 201, 6, 0.2);
        }

        .affiliates-subtitle {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 50px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .affiliates-grid {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            gap: 30px;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .affiliate-link {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            width: 140px;
            height: 140px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(247, 201, 6, 0.1), rgba(247, 201, 6, 0.05));
            border: 2px solid rgba(247, 201, 6, 0.3);
            border-radius: 15px;
            color: #f7c906ff;
            text-decoration: none;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .affiliate-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(247, 201, 6, 0.2), transparent);
            -webkit-transition: left 0.5s ease;
            transition: left 0.5s ease;
        }

        .affiliate-link:hover {
            border-color: #f7c906ff;
            box-shadow: 0 0 30px rgba(247, 201, 6, 0.4), inset 0 0 20px rgba(247, 201, 6, 0.1);
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
        }

        .affiliate-link:hover::before {
            left: 100%;
        }

        .affiliate-icon {
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .affiliate-name {
            font-family: 'Orbitron', monospace;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 1024px) {
            .affiliates-grid {
                gap: 25px;
            }
            .affiliate-link {
                width: 120px;
                height: 120px;
            }
            .affiliate-icon {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .affiliates {
                padding: 60px 20px;
            }
            .affiliates-grid {
                gap: 20px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }
            .affiliate-link {
                width: 100px;
                height: 100px;
            }
            .affiliate-icon {
                font-size: 1.8rem;
            }
            .affiliate-name {
                font-size: 0.75rem;
            }
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(247, 201, 6, 0.2);
            border-radius: 10px;
            padding: 40px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #f7c906ff;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(247, 201, 6, 0.3);
            color: white;
            font-size: 1rem;
            border-radius: 5px;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f7c906ff;
            box-shadow: 0 0 20px rgba(247, 201, 6, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #f7c906ff, #000000);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            font-family: 'Orbitron', monospace;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(247, 201, 6, 0.5);
        }

        .contact-info {
            padding: 40px;
        }

        .contact-info h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #f7c906ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .info-item {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #f7c906ff, #000000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .info-details h4 {
            color: #f7c906ff;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-details p {
            opacity: 0.8;
        }

        /* Map Section */
        .map-container {
            margin-top: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(247, 201, 6, 0.2);
            border-radius: 10px;
            padding: 20px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            text-align: center;
            opacity: 0.6;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(247, 201, 6, 0.1) 50%, transparent 60%);
            animation: scan 3s linear infinite;
        }

        @keyframes scan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* ── Telegram Button ─────────────────────────────────────────────── */
        .telegram-btn-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            padding: 30px 20px 10px;
        }

        @keyframes telegram-attract {
            0%   { transform: scale(1);    box-shadow: 0 0 18px rgba(247, 201, 6, 0.4); }
            20%  { transform: scale(1.08); box-shadow: 0 0 40px rgba(247, 201, 6, 0.9), 0 0 80px rgba(247, 201, 6, 0.4); }
            40%  { transform: scale(1);    box-shadow: 0 0 18px rgba(247, 201, 6, 0.4); }
            60%  { transform: scale(1.05); box-shadow: 0 0 35px rgba(247, 201, 6, 0.8), 0 0 70px rgba(247, 201, 6, 0.3); }
            80%  { transform: scale(1);    box-shadow: 0 0 18px rgba(247, 201, 6, 0.4); }
            100% { transform: scale(1);    box-shadow: 0 0 18px rgba(247, 201, 6, 0.4); }
        }

        @keyframes telegram-shake {
            0%, 100% { rotate: 0deg; }
            15%       { rotate: -6deg; }
            30%       { rotate: 6deg; }
            45%       { rotate: -4deg; }
            60%       { rotate: 4deg; }
            75%       { rotate: -2deg; }
            90%       { rotate: 2deg; }
        }

        .telegram-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: linear-gradient(135deg, #f7c906ff, #e0b500);
            color: #000;
            font-family: 'Orbitron', monospace;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid rgba(247, 201, 6, 0.4);
            letter-spacing: 0.05em;
            box-shadow: 0 0 18px rgba(247, 201, 6, 0.4);
            animation: telegram-attract 3s ease-in-out infinite, telegram-shake 3s ease-in-out infinite;
            transition: box-shadow 0.2s;
        }

        .telegram-btn:hover {
            animation-play-state: paused;
            transform: scale(1.08);
            box-shadow: 0 0 50px rgba(247, 201, 6, 1), 0 0 100px rgba(247, 201, 6, 0.5);
        }

        @keyframes telegram-text-glitch {
            0%, 84%, 100% {
                text-shadow: 0 0 0 transparent;
                transform: translateX(0);
                opacity: 1;
            }
            86% {
                text-shadow: -2px 0 rgba(255, 0, 80, 0.75), 2px 0 rgba(0, 255, 255, 0.75);
                transform: translateX(-2px);
                opacity: 0.92;
            }
            88% {
                text-shadow: 2px 0 rgba(255, 0, 80, 0.75), -2px 0 rgba(0, 255, 255, 0.75);
                transform: translateX(2px);
                opacity: 0.95;
            }
            90% {
                text-shadow: -1px 0 rgba(255, 0, 80, 0.65), 1px 0 rgba(0, 255, 255, 0.65);
                transform: translateX(-1px);
                opacity: 0.94;
            }
            92% {
                text-shadow: 1px 0 rgba(255, 0, 80, 0.65), -1px 0 rgba(0, 255, 255, 0.65);
                transform: translateX(1px);
                opacity: 0.97;
            }
            94% {
                text-shadow: -2px 0 rgba(255, 0, 80, 0.55), 2px 0 rgba(0, 255, 255, 0.55);
                transform: translateX(0);
                opacity: 1;
            }
        }

        .telegram-btn-text {
            position: relative;
            display: inline-block;
            animation: telegram-text-glitch 2.4s linear infinite;
        }

        .telegram-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        /* ── Affiliates Ticker ───────────────────────────────────────────── */
        .affiliates-ticker {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background: #000000;
            border-top: 2px solid #f7c906ff;
            border-bottom: 2px solid #f7c906ff;
            overflow: hidden;
            height: 52px;
        }

        .ticker-label {
            font-family: 'Orbitron', monospace;
            font-size: 0.75rem;
            font-weight: 900;
            color: #000000;
            background: #f7c906ff;
            padding: 0 20px;
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            white-space: nowrap;
            letter-spacing: 1px;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            z-index: 2;
            box-shadow: 4px 0 12px rgba(247, 201, 6, 0.5);
        }

        .ticker-track {
            overflow: hidden;
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
        }

        .ticker-inner {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 0;
            -webkit-animation: ticker-scroll 30s linear infinite;
            animation: ticker-scroll 30s linear infinite;
            width: -webkit-max-content;
            width: max-content;
        }

        .ticker-inner:hover {
            -webkit-animation-play-state: paused;
            animation-play-state: paused;
        }

        @keyframes ticker-scroll {
            0%   { -webkit-transform: translateX(0); transform: translateX(0); }
            100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
        }

        .ticker-item {
            font-family: 'Orbitron', monospace;
            font-size: 0.85rem;
            font-weight: 700;
            color: #f7c906ff;
            text-decoration: none;
            white-space: nowrap;
            padding: 0 35px;
            letter-spacing: 1px;
            -webkit-transition: color 0.2s ease;
            transition: color 0.2s ease;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            height: 52px;
            border-right: 1px solid rgba(247, 201, 6, 0.2);
        }

        .ticker-item:hover {
            color: #ffffff;
            background: rgba(247, 201, 6, 0.1);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(247, 201, 6, 0.2);
            padding: 40px 20px 100px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #f7c906ff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #000000;
            text-shadow: 0 0 10px currentColor;
        }

        .copyright {
            opacity: 0.6;
            font-size: 0.9rem;
        }

        .copyright a {
            color: #f7c906ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .copyright a:hover {
            color: #000000;
            text-shadow: 0 0 10px currentColor;
        }


        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(
                transparent 50%,
                rgba(247, 201, 6, 0.01) 50%
            );
            background-size: 100% 4px;
            animation: scanlines 8s linear infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 0 0 30px rgba(247, 201, 6, 0.5);
            }
            50% { 
                transform: translateY(-10px);
                box-shadow: 0 10px 40px rgba(247, 201, 6, 0.7);
            }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ===== LISTEN LIVE SECTION ===== */
        /* ── Logo Banner ─────────────────────────────────────────────────── */
        .logo-banner {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 60px 20px;
            margin-top: 80px;
            background: transparent;
            border: none;
        }

        .logo-glitch-wrap {
            position: relative;
            display: inline-block;
            line-height: 0;
        }

        .logo-banner-img {
            width: auto;
            max-width: 90vw;
            height: auto;
            -webkit-filter: none;
            filter: none;
            -webkit-animation: none;
            animation: none;
        }

        .logo-banner-img.glitch-layer {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            pointer-events: none;
            mix-blend-mode: screen;
            will-change: transform, clip-path, opacity;
            -webkit-animation-duration: 2.6s;
            animation-duration: 2.6s;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
        }

        .logo-banner-img.glitch-layer-a {
            -webkit-filter: hue-rotate(40deg) saturate(1.3) contrast(1.08);
            filter: hue-rotate(40deg) saturate(1.3) contrast(1.08);
            -webkit-animation-name: logo-glitch-a;
            animation-name: logo-glitch-a;
        }

        .logo-banner-img.glitch-layer-b {
            -webkit-filter: hue-rotate(-45deg) saturate(1.35) contrast(1.08);
            filter: hue-rotate(-45deg) saturate(1.35) contrast(1.08);
            -webkit-animation-name: logo-glitch-b;
            animation-name: logo-glitch-b;
            -webkit-animation-duration: 2.6s;
            animation-duration: 2.6s;
        }

        @-webkit-keyframes logo-glitch-a {
            0%, 76%, 100% { opacity: 0; -webkit-transform: translate(0, 0); clip-path: inset(0 0 0 0); }
            77% { opacity: 0.78; -webkit-transform: translate(-9px, 2px); clip-path: inset(8% 0 68% 0); }
            79% { opacity: 0.72; -webkit-transform: translate(10px, -2px); clip-path: inset(62% 0 10% 0); }
            81% { opacity: 0.7; -webkit-transform: translate(-7px, 1px); clip-path: inset(34% 0 34% 0); }
            83% { opacity: 0.62; -webkit-transform: translate(6px, -1px); clip-path: inset(18% 0 56% 0); }
        }

        @keyframes logo-glitch-a {
            0%, 76%, 100% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
            77% { opacity: 0.78; transform: translate(-9px, 2px); clip-path: inset(8% 0 68% 0); }
            79% { opacity: 0.72; transform: translate(10px, -2px); clip-path: inset(62% 0 10% 0); }
            81% { opacity: 0.7; transform: translate(-7px, 1px); clip-path: inset(34% 0 34% 0); }
            83% { opacity: 0.62; transform: translate(6px, -1px); clip-path: inset(18% 0 56% 0); }
        }

        @-webkit-keyframes logo-glitch-b {
            0%, 73%, 100% { opacity: 0; -webkit-transform: translate(0, 0); clip-path: inset(0 0 0 0); }
            74% { opacity: 0.66; -webkit-transform: translate(11px, 1px); clip-path: inset(16% 0 54% 0); }
            76% { opacity: 0.7; -webkit-transform: translate(-10px, -1px); clip-path: inset(70% 0 6% 0); }
            78% { opacity: 0.6; -webkit-transform: translate(8px, 0); clip-path: inset(40% 0 26% 0); }
            80% { opacity: 0.55; -webkit-transform: translate(-6px, 1px); clip-path: inset(26% 0 48% 0); }
        }

        @keyframes logo-glitch-b {
            0%, 73%, 100% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
            74% { opacity: 0.66; transform: translate(11px, 1px); clip-path: inset(16% 0 54% 0); }
            76% { opacity: 0.7; transform: translate(-10px, -1px); clip-path: inset(70% 0 6% 0); }
            78% { opacity: 0.6; transform: translate(8px, 0); clip-path: inset(40% 0 26% 0); }
            80% { opacity: 0.55; transform: translate(-6px, 1px); clip-path: inset(26% 0 48% 0); }
        }

        @media (max-width: 768px) {
            .logo-banner {
                padding: 40px 20px;
            }
            .logo-banner-img {
                width: 220px;
            }
        }

        .listen-live {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .player-wrapper {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(247, 201, 6, 0.3);
            border-radius: 16px;
            padding: 40px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(247, 201, 6, 0.1);
        }

        /* Now Playing Bar */
        .now-playing-bar {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 14px;
            margin-bottom: 30px;
            padding: 16px 20px;
            background: rgba(247, 201, 6, 0.08);
            border: 1px solid rgba(247, 201, 6, 0.2);
            border-radius: 10px;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        /* Blinking live dot */
        .live-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #f7c906ff;
            display: inline-block;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            box-shadow: 0 0 8px #f7c906ff;
            -webkit-animation: blink-dot 1.2s ease-in-out infinite;
            animation: blink-dot 1.2s ease-in-out infinite;
        }

        @-webkit-keyframes blink-dot {
            0%, 100% { opacity: 1; box-shadow: 0 0 8px #f7c906ff, 0 0 16px #f7c906ff; }
            50% { opacity: 0.2; box-shadow: none; }
        }

        @keyframes blink-dot {
            0%, 100% { opacity: 1; box-shadow: 0 0 8px #f7c906ff, 0 0 16px #f7c906ff; }
            50% { opacity: 0.2; box-shadow: none; }
        }

        .live-label {
            font-family: 'Orbitron', monospace;
            font-size: 0.75rem;
            font-weight: 900;
            color: #f7c906ff;
            letter-spacing: 3px;
            padding: 3px 10px;
            border: 1px solid #f7c906ff;
            border-radius: 4px;
        }

        .now-playing-info {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            gap: 3px;
            min-width: 0;
        }

        .now-playing-label {
            font-size: 0.75rem;
            opacity: 0.5;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Orbitron', monospace;
        }

        .now-playing-track {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 500px;
        }

        /* Radio Player Controls */
        .radio-player {
            margin-bottom: 30px;
        }

        .player-controls {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 20px;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        .radio-play-btn {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: linear-gradient(45deg, #f7c906ff, #e0b500);
            color: #000000;
            border: none;
            border-radius: 8px;
            font-family: 'Orbitron', monospace;
            font-size: 1.1rem;
            font-weight: 900;
            cursor: pointer;
            letter-spacing: 2px;
            text-transform: uppercase;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            box-shadow: 0 0 20px rgba(247, 201, 6, 0.5), 0 0 40px rgba(247, 201, 6, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
            min-width: 140px;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            -webkit-animation: pulse-glow 2s ease-in-out infinite;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(247, 201, 6, 0.5), 0 0 40px rgba(247, 201, 6, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1); }
            50% { box-shadow: 0 0 30px rgba(247, 201, 6, 0.7), 0 0 60px rgba(247, 201, 6, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2); }
        }

        .radio-play-btn:hover,
        .radio-play-btn:focus {
            -webkit-transform: translateY(-3px) scale(1.08);
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 8px 40px rgba(247, 201, 6, 0.8), 0 0 60px rgba(247, 201, 6, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
            outline: none;
            -webkit-animation: none;
            animation: none;
        }

        .radio-play-btn.playing {
            background: linear-gradient(45deg, #222, #111);
            color: #f7c906ff;
            border: 2px solid #f7c906ff;
            box-shadow: 0 0 30px rgba(247, 201, 6, 0.4), 0 0 50px rgba(247, 201, 6, 0.2), inset 0 0 10px rgba(247, 201, 6, 0.1);
            -webkit-animation: none;
            animation: none;
        }

        .radio-play-btn.playing:hover,
        .radio-play-btn.playing:focus {
            -webkit-transform: translateY(-3px) scale(1.08);
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 8px 40px rgba(247, 201, 6, 0.6), 0 0 60px rgba(247, 201, 6, 0.4);
        }

        .volume-wrap {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            min-width: 150px;
            max-width: 260px;
        }

        .vol-icon {
            font-size: 1.2rem;
            opacity: 0.8;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

        #volumeSlider {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 100%;
            height: 4px;
            border-radius: 2px;
            background: rgba(247, 201, 6, 0.3);
            outline: none;
            cursor: pointer;
        }

        #volumeSlider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #f7c906ff;
            cursor: pointer;
            box-shadow: 0 0 6px rgba(247, 201, 6, 0.8);
        }

        #volumeSlider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #f7c906ff;
            cursor: pointer;
            border: none;
            box-shadow: 0 0 6px rgba(247, 201, 6, 0.8);
        }

        #volumeSlider::-ms-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #f7c906ff;
            cursor: pointer;
            border: none;
        }

        .loading-indicator {
            font-family: 'Orbitron', monospace;
            font-size: 0.75rem;
            color: #f7c906ff;
            letter-spacing: 1px;
            opacity: 0;
            -webkit-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
        }

        .loading-indicator.visible {
            opacity: 1;
        }

        /* Song History */
        .song-history-panel {
            border-top: 1px solid rgba(247, 201, 6, 0.15);
            padding-top: 24px;
        }

        .song-history-title {
            font-family: 'Orbitron', monospace;
            font-size: 1.1rem;
            font-weight: 700;
            color: #f7c906ff;
            margin-bottom: 16px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .song-history-list {
            list-style: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            gap: 8px;
            max-height: 220px;
            overflow-y: auto;
        }

        .song-history-list::-webkit-scrollbar {
            width: 4px;
        }

        .song-history-list::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.05);
        }

        .song-history-list::-webkit-scrollbar-thumb {
            background: rgba(247, 201, 6, 0.4);
            border-radius: 2px;
        }

        .song-history-item {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 14px;
            padding: 10px 14px;
            border-radius: 6px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            -webkit-transition: background 0.2s ease;
            transition: background 0.2s ease;
        }

        .song-history-item.current {
            background: rgba(247, 201, 6, 0.08);
            border-color: rgba(247, 201, 6, 0.25);
        }

        .song-time {
            font-family: 'Orbitron', monospace;
            font-size: 0.72rem;
            color: #f7c906ff;
            opacity: 0.8;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            min-width: 42px;
        }

        .song-info {
            font-size: 0.95rem;
            opacity: 0.85;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ===== END LISTEN LIVE ===== */

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-banner-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content,
            .contact-container {
                gap: 30px;
            }

            nav {
                padding: 15px 30px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content {
                padding: 0 20px;
            }

            .glitch-text {
                font-size: clamp(1.2rem, 4.9vw, 2.4rem);
            }

            .text-rotator {
                min-height: 150px;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .cta-container {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }

            .stats-banner-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .music-visual {
                width: 240px;
                height: 240px;
            }

            .audio-orb {
                width: 190px;
                height: 190px;
            }

            .waveform-line {
                left: 20px;
                right: 20px;
                bottom: 56px;
                height: 36px;
            }

            .audio-orb-core {
                top: 56px;
                font-size: 0.85rem;
            }

            .shape-dj {
                width: 180px;
                height: 180px;
            }

            .shape-music {
                width: 110px;
                height: 110px;
                right: 5%;
            }

            .shape-music::before {
                font-size: 5.8rem;
            }

            .shape-radio {
                width: 140px;
                height: 140px;
            }

            /* Listen Live mobile */
            .player-wrapper {
                padding: 20px;
            }

            .now-playing-track {
                max-width: 100%;
                font-size: 0.95rem;
            }

            .radio-play-btn {
                width: 100%;
            }

            .volume-wrap {
                max-width: 100%;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .glitch-text {
                font-size: clamp(1rem, 7vw, 1.8rem);
            }

            .subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-text h2 {
                font-size: 1.8rem;
            }

            .contact-form,
            .contact-info {
                padding: 20px;
            }

            .feature-content {
                padding: 20px;
            }

            .cta-container {
                bottom: 60px;
            }

            nav {
                padding: 12px 15px;
            }

            .logo-text {
                font-size: 18px;
            }
        }

        /* ===== TEAM COVERFLOW ===== */
        .team-section {
            padding: 80px 20px 80px;
            text-align: center;
        }

        .team-coverflow-wrap {
            margin: 60px auto 0;
            max-width: 920px;
        }

        .team-coverflow {
            position: relative;
            height: 480px;
            perspective: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-card {
            position: absolute;
            width: 280px;
            background: linear-gradient(145deg, rgba(247, 201, 6, 0.07), rgba(0, 0, 0, 0.95));
            border: 1px solid rgba(247, 201, 6, 0.25);
            border-radius: 24px;
            padding: 40px 28px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.7s ease, box-shadow 0.7s ease, border-color 0.7s ease;
            transform: translateX(160%) scale(0.6);
            opacity: 0;
            pointer-events: none;
            will-change: transform, opacity;
        }

        .team-card.card-active {
            transform: translateX(0) scale(1) rotateY(0deg);
            opacity: 1;
            z-index: 10;
            box-shadow: 0 0 60px rgba(247, 201, 6, 0.22), 0 20px 60px rgba(0,0,0,0.6), inset 0 0 40px rgba(247, 201, 6, 0.06);
            border-color: rgba(247, 201, 6, 0.65);
            pointer-events: auto;
        }

        .team-card.card-prev {
            transform: translateX(-65%) scale(0.8) rotateY(28deg);
            opacity: 0.45;
            z-index: 5;
            pointer-events: auto;
            cursor: pointer;
        }

        .team-card.card-next {
            transform: translateX(65%) scale(0.8) rotateY(-28deg);
            opacity: 0.45;
            z-index: 5;
            pointer-events: auto;
            cursor: pointer;
        }

        .team-card.card-prev:hover,
        .team-card.card-next:hover {
            opacity: 0.7;
        }

        .team-photo {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #f7c906ff;
            box-shadow: 0 0 20px rgba(247, 201, 6, 0.5);
            flex-shrink: 0;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-photo-fallback {
            display: none;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f7c906ff, #000);
            color: #000;
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 900;
            align-items: center;
            justify-content: center;
        }

        .team-name {
            font-family: 'Orbitron', monospace;
            font-size: 1rem;
            font-weight: 700;
            color: #f7c906ff;
            margin: 0;
            text-shadow: 0 0 12px rgba(247, 201, 6, 0.5);
            text-align: center;
        }

        .team-role {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.65);
            margin: 0;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-align: center;
        }

        .team-social {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 4px;
        }

        .team-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(247, 201, 6, 0.4);
            color: #f7c906ff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 700;
            background: rgba(247, 201, 6, 0.06);
            transition: all 0.3s;
        }

        .team-social a:hover {
            background: #f7c906ff;
            color: #000;
            box-shadow: 0 0 14px rgba(247, 201, 6, 0.6);
        }

        .team-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 28px;
        }

        .team-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(247, 201, 6, 0.25);
            border: 1px solid rgba(247, 201, 6, 0.45);
            cursor: pointer;
            transition: all 0.35s;
        }

        .team-dot.active {
            width: 28px;
            border-radius: 4px;
            background: #f7c906ff;
            box-shadow: 0 0 12px rgba(247, 201, 6, 0.7);
        }

        .team-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 24px;
        }

        .team-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 2px solid rgba(247, 201, 6, 0.4);
            background: rgba(247, 201, 6, 0.08);
            color: #f7c906ff;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .team-btn:hover {
            background: #f7c906ff;
            color: #000;
            box-shadow: 0 0 20px rgba(247, 201, 6, 0.6);
        }

        @media (max-width: 600px) {
            .team-coverflow {
                height: 420px;
            }
            .team-card {
                width: 240px;
                padding: 32px 20px 26px;
            }
            .team-card.card-prev {
                transform: translateX(-58%) scale(0.72) rotateY(28deg);
            }
            .team-card.card-next {
                transform: translateX(58%) scale(0.72) rotateY(-28deg);
            }
            .team-photo {
                width: 90px;
                height: 90px;
            }
        }