
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(45deg, #000000, #3d3d3d);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            color: white;
            overflow: hidden;
        }
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .player {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            width: 500px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1;
            display: flex;
        }
        .album-art {
            width: 150px;
            height: 150px;
            margin-right: 30px;
            margin-left: 5%;
        }
        @keyframes pulse-art {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .album-art img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: pulse-art 3s infinite ease-in-out;
        }
        .player-content {
            flex: 1;
        }
        .wave-animation {
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        .wave {
            width: 3px;
            height: 100%;
            background: white;
            margin: 0 2px;
            border-radius: 3px;
            animation: wave 1s infinite ease-in-out;
        }
        @keyframes wave {
            0%, 100% { height: 20px; }
            50% { height: 60px; }
        }
        .station-info {
            text-align: center;
            margin-bottom: 15px;
        }
        .station-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .now-playing {
            font-size: 14px;
            opacity: 0.8;
        }
        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
        }
        .play-pause {
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            color: #3498db;
            transition: transform 0.2s;
        }
        .play-pause:hover {
            transform: scale(1.1);
        }
        .status-button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            padding: 8px 12px;
            border-radius: 20px;
            color: white;
            font-size: 12px;
            margin-left: 10px;
            cursor: default;
            transition: background-color 0.3s;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .status-button.online {
            background: rgba(46, 204, 113, 0.6);
            animation: pulse 1.5s infinite ease-in-out;
        }
        .volume-control {
            position: relative;
            width: 100%;
            margin-top: 20px;
        }
        .volume-slider {
            -webkit-appearance: none;
            width: 100%;
            height: 5px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.3);
            outline: none;
        }
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
        }
        .volume-percentage {
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
        }
        .social-buttons {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 2;
        }
        .social-button {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .social-button:hover {
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        }
        .social-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            z-index: -1;
        }
        .facebook:hover { color: #3b5998; }
        .youtube:hover { color: #c4302b; }
        .tiktok:hover { color: #000000; }
        .whatsapp:hover { color: #25d366; }
        .instagram:hover { color: #e1306c; }
        .twitter:hover { color: #1da1f2; }
        .download-buttons {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 2;
        }
        .download-button {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .download-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .download-button i {
            font-size: 24px;
            margin-right: 10px;
        }
        .mobile-download-buttons {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            flex-direction: column;
            gap: 10px;
        }
        .mobile-download-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 200px;
        }
        .mobile-download-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .mobile-download-button i {
            font-size: 24px;
            margin-right: 10px;
        }
        .dropdown {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            display: block !important; /* Show the dropdown on mobile */
        }
        
        .dropbtn {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 16px;
            font-size: 16px;
            border: none;
            cursor: pointer;
            border-radius: 25px;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        .dropbtn:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(52, 152, 219, 0.95);
            min-width: 300px;
            max-height: 400px;
            overflow-y: auto;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            z-index: 1;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            padding: 25px;
            color: white;
            top: 45px;
            left: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform: translateY(-10px);
            opacity: 0;
            animation: dropdownAppear 0.4s ease forwards;
        }

        @keyframes dropdownAppear {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .dropdown-content h3 {
            text-align: center;
            margin: 0 0 20px 0;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            font-size: 1.3em;
            letter-spacing: 1px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .dropdown-content h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
        }

        .schedule-item {
            background: rgba(255, 255, 255, 0.1);
            margin-bottom: 15px;
            padding: 15px;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .schedule-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .schedule-item:hover::before {
            transform: translateX(100%);
        }

        .schedule-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .schedule-item img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 16px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            object-fit: cover;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        }

        .schedule-item:hover img {
            border-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
        }

        .schedule-item div {
            flex-grow: 1;
            position: relative;
            z-index: 1;
        }

        .schedule-item strong {
            display: block;
            font-size: 1.1em;
            margin-bottom: 5px;
            color: #ffffff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .schedule-item:hover strong {
            transform: translateX(5px);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .schedule-item p {
            margin: 0;
            font-size: 0.9em;
            opacity: 0.8;
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            position: relative;
        }

        .schedule-item:hover p {
            opacity: 1;
            transform: translateX(5px);
            color: #ffffff;
        }

        .schedule-separator {
            height: 2px;
            background: linear-gradient(to right, 
                rgba(255, 255, 255, 0), 
                rgba(255, 255, 255, 0.3), 
                rgba(255, 255, 255, 0));
            margin: 15px 0;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .schedule-separator::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            animation: separatorShine 2s infinite;
        }

        @keyframes separatorShine {
            to {
                left: 100%;
            }
        }

        /* Custom scrollbar for dropdown */
        .dropdown-content::-webkit-scrollbar {
            width: 8px;
        }

        .dropdown-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 5px;
        }

        .dropdown-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .dropdown-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
            border-color: rgba(255, 255, 255, 0.2);
        }

        @media screen and (max-width: 768px) {
            body {
                overflow: auto;
            }
            .social-buttons,
            .download-buttons,
            .floating-messages {
                display: none !important;
            }
            #particles-js {
                display: block !important;
                z-index: 0;
            }

            .dropdown {
                position: absolute;
                top: 10px;
                left: 10px;
                z-index: 1001;
            }
            
            .player {
                position: relative;
                z-index: 1;
                width: 90%;
                max-width: 400px;
                flex-direction: column;
                align-items: center;
                padding: 20px;
                margin-top: 60px;
                margin-bottom: 100px;  /* Add space for mobile social buttons */
            }

            .mobile-social-buttons {
                display: flex !important;
            }
            
            .schedule-item {
                padding: 12px;
            }

            .schedule-item img {
                width: 50px;
                height: 50px;
            }

            .schedule-item strong {
                font-size: 1em;
            }

            .schedule-item p {
                font-size: 0.8em;
            }
            .mobile-download-buttons {
                bottom: 90px;  /* Adjust position to account for social buttons */
            }
        }
        .floating-messages {
            position: fixed;  
            top: 80px;  
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 1000;
            width: 90%;  
            max-width: 400px;  
            pointer-events: none;  
        }
        
        .floating-message {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border-radius: 20px;
            padding: 10px 20px;
            color: white;
            font-size: 16px;  
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;  
            box-sizing: border-box;
            margin: 0 auto;
        }

        @media screen and (max-width: 768px) {
            .floating-messages {
                display: block !important;  
                top: 120px;  
            }
            
            .floating-message {
                font-size: 14px;  
                padding: 8px 15px;  
                white-space: normal;  
                line-height: 1.4;  
            }
        }

        /* Add new mobile social buttons styles */
        .mobile-social-buttons {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            justify-content: center;
            gap: 20px;
            z-index: 1000;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mobile-social-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .mobile-social-button:hover,
        .mobile-social-button:active {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
        }

        .mobile-social-button.facebook:active { background: #3b5998; }
        .mobile-social-button.youtube:active { background: #c4302b; }
        .mobile-social-button.tiktok:active { background: #000000; }
        .mobile-social-button.whatsapp:active { background: #25d366; }
        .mobile-social-button.instagram:active { background: #e1306c; }
        .mobile-social-button.twitter:active { background: #1da1f2; }

        @media screen and (max-width: 768px) {
            .mobile-social-buttons {
                display: flex !important;
            }
            
            .player {
                margin-bottom: 100px;  /* Add space for mobile social buttons */
            }
            
            .mobile-download-buttons {
                bottom: 90px;  /* Adjust position to account for social buttons */
            }
        }
    