:root {
            --electric-red: #C00000;
            --neon-red: #E20000;
            --dark-bg: #0a0a0a;
            --card-bg: #1a1a1a;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--dark-bg);
            min-height: 100vh;
            color: white;
        }

        .wavy-font {
            font-family: 'Righteous', cursive;
        }

        /* Red theme animations */
        @keyframes electricPulse {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(192, 0, 0, 0.3);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 40px rgba(192, 0, 0, 0.6);
                transform: scale(1.02);
            }
        }

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

        @keyframes textShimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

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

        .electric-pulse {
            animation: electricPulse 3s ease-in-out infinite;
        }

        .wave-float {
            animation: waveFloat 4s ease-in-out infinite;
        }

        .shimmer-text {
            background: linear-gradient(
                90deg,
                var(--electric-red),
                var(--neon-red),
                var(--electric-red)
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textShimmer 3s linear infinite;
        }

        .gradient-bg {
            background: linear-gradient(-45deg, var(--electric-red), var(--neon-red));
            background-size: 400% 400%;
            overflow: hidden;
        }

        .gradient-bg::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: playing 2.5s linear infinite;
        }

        /* Electric button styles */
        .electric-btn {
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, var(--electric-red), var(--neon-red));
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .electric-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(192, 0, 0, 0.4);
        }

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

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

        /* Wave decorations */
        .wave-decoration {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem;
            border: 1px solid rgba(192, 0, 0, 0.2);
        }

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

        /* Glass morphism cards */
        .glass-card {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(192, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            border-color: rgba(192, 0, 0, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Lightning decoration */
        .lightning {
            width: 100px;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C00000'%3E%3Cpath d='M11 21h-1l1-7H7.5c-.88 0-.33-.75-.31-.78C8.48 10.94 10.42 7.54 13.01 3h1l-1 7h3.51c.4 0 .62.19.4.66C15.39 14.25 13.04 18.54 11 21z'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
            opacity: 0.6;
            animation: waveFloat 3s ease-in-out infinite;
        }

        /* Radio Player decoration and animation */
        .radio-player {
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, var(--electric-red), var(--neon-red));
        }

        .radio-player::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: playing 2.5s linear infinite;
        }

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

        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(100%);
                opacity: 0;
            }
        }

        .player-enter {
            animation: slideUp 0.5s ease-out forwards;
        }

        .player-exit {
            animation: slideDown 0.5s ease-out forwards;
        }

        /* Styles for the video carousel */
        .video-carousel-container {
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }
        
        .video-carousel-track {
            display: flex;
            gap: 20px;
            padding: 10px 10px 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }


        .video-carousel-track::-webkit-scrollbar {
            height: 8px;
        }
        
        .video-carousel-track::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, var(--electric-red), var(--neon-red));
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(192, 0, 0, 0.5);
        }
        
        .video-carousel-track::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, var(--neon-red), var(--electric-red));
            box-shadow: 0 0 15px rgba(192, 0, 0, 0.7);
        }
        
        /* For Firefox */
        .video-carousel-track {
            scrollbar-width: thin;
            scrollbar-color: var(--electric-red) rgba(26, 26, 26, 0.8);
        }
        
        .video-carousel-card {
            flex: 0 0 auto;
            width: 300px;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(192, 0, 0, 0.3);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            transform-origin: center;
        }
        
        .video-carousel-card:hover {
            border-color: rgba(192, 0, 0, 0.6);
            box-shadow: 0 10px 25px rgba(192, 0, 0, 0.2);
            transform: scale(1.05);
        }
        
        .video-thumb-container {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        
        .video-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .video-carousel-card:hover .video-thumb {
            transform: scale(1.1);
        }
        
        .video-title-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: white;
            transition: all 0.3s ease;
        }
        
        .video-title {
            font-weight: 600;
            font-size: 16px;
            margin: 0;
            line-height: 1.4;
        }
        
        .play-indicator {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: linear-gradient(45deg, var(--electric-red), var(--neon-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.9;
            transition: transform 0.3s ease;
        }
        
        .video-carousel-card:hover .play-indicator {
            transform: scale(1.2);
        }
        
        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .video-carousel-card:hover .play-overlay {
            opacity: 1;
        }
        
        .play-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--electric-red), var(--neon-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: electricPulse 2s infinite;
        }

        /* Podcast player styles */
        .podcast-player {
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, var(--electric-red), var(--neon-red));
        }
        
        .podcast-player::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: playing 2.5s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .podcast-player.playing::before {
            opacity: 1;
        }
        
        
        .progress-bar {
            background: rgba(255, 255, 255, 0.3);
            height: 4px;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .progress-fill {
            background: white;
            height: 100%;
            width: 0%;
            transition: width 0.1s ease;
        }
        
        .control-button {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .control-button:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.05);
        }
        
        .description-content {
            max-height: 3rem;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .description-expanded {
            max-height: none;
        }
        
        /* Responsive styles */
        @media (max-width: 640px) {
            .video-carousel-card {
                width: 250px;
            }
            
            .video-thumb-container {
                height: 150px;
            }
            
            .play-icon {
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .video-carousel-card {
                width: 220px;
            }
        }