/* CSS Document */

 :root {
            --primary-purple: #8b5cf6;
            --primary-pink: #ec4899;
            --primary-cyan: #06b6d4;
            --dark-bg: #0f0f23;
            --darker-bg: #0a0a1a;
            --accent-gold: #fbbf24;
        }

        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            color: white;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink), var(--primary-cyan));
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

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

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .logo-text {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: 4rem;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }

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

        .tagline {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .play-button {
            background: linear-gradient(45deg, var(--accent-gold), #f59e0b);
            border: none;
            border-radius: 50px;
            padding: 20px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-bg);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .play-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
            color: var(--dark-bg);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-note {
            position: absolute;
            font-size: 2rem;
            opacity: 0.3;
            animation: float 6s infinite ease-in-out;
        }

        .floating-note:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-note:nth-child(2) { top: 60%; right: 45%; animation-delay: 2s; }
        .floating-note:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
        .floating-note:nth-child(4) { top: 40%; right: 35%; animation-delay: 1s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .section-bg {
            background: var(--dark-bg);
            position: relative;
        }
.section-bgC {
            background: #151128;
            position: relative;
        }
        .section-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
        }

        .card-custom {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
			color: whitesmoke;
        }
.modal-custom {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
			color: whitesmoke;
        }
        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
        }

        .dj-card {
            text-align: center;
            padding: 2rem;
        }
		
		.playstyle {
			color: aquamarine;
		}

        .dj-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 3rem;
        }

        .now-playing {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .now-playing::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .equalizer {
            display: flex;
            align-items: end;
            justify-content: center;
            gap: 3px;
            margin: 1rem 0;
        }

        .bar {
            width: 4px;
            background: linear-gradient(to top, var(--accent-gold), var(--primary-cyan));
            border-radius: 2px;
            animation: bounce 1.5s infinite ease-in-out;
        }

        .bar:nth-child(1) { height: 20px; animation-delay: 0.1s; }
        .bar:nth-child(2) { height: 35px; animation-delay: 0.2s; }
        .bar:nth-child(3) { height: 25px; animation-delay: 0.3s; }
        .bar:nth-child(4) { height: 40px; animation-delay: 0.4s; }
        .bar:nth-child(5) { height: 30px; animation-delay: 0.5s; }
        .bar:nth-child(6) { height: 45px; animation-delay: 0.6s; }
        .bar:nth-child(7) { height: 25px; animation-delay: 0.7s; }

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

        .social-icon {
            display: inline-block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin: 0 10px;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1) rotate(5deg);
            color: white;
        }
 .request {
            
            width: 100px;
            height: 30px;
            border-radius: 5%;
            background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
            color: white;
            text-decoration: none;
            font-size: .8rem;
            margin: 0 10px;
            transition: transform 0.3s ease;
        }

        .request:hover {
            transform: scale(1.1) rotate(5deg);
            color: white;
        }

        .navbar-custom {
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
        }

        .navbar-brand {
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            color: var(--primary-purple) !important;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.8) !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-purple) !important;
        }

        @media (max-width: 768px) {
            .logo-text {
                font-size: 2.5rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
        }
