    
        :root {
            --primary-color: #ff5e5e;
            --secondary-color: #ffd93b;
            --bg-color: #1a1a1a;
            --card-bg: #2b2b2b;
            --text-color: #f0f0f0;
            --highlight-text: #fff;
            --subtitle-bg: rgba(0, 0, 0, 0.85);
            --border-color: #444;
            --subtle-text: rgba(255, 255, 255, 0.6);
            --radio-pulse-color: #ff5e5e;
            --space-animation-speed: 1;
            --nebula-intensity: 0.1;
            --particle-speed: 15s;
            --star-brightness: 0.6;
            --star-vibration: none;
            --bass-frequency: 2s;
            --mid-frequency: 1s;
            --treble-frequency: 0.5s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 75%, #0c0c0c 100%);
            background-attachment: fixed;
            padding: 20px;
            text-align: center;
            line-height: 1.6;
            margin: 0;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Space Background Animation */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,var(--star-brightness)), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,calc(var(--star-brightness) * 1.3)), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,var(--star-brightness)), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,calc(var(--star-brightness) * 0.8)), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,var(--star-brightness)), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            animation: twinkle 4s ease-in-out infinite alternate, var(--star-vibration);
            animation-duration: calc(4s / var(--space-animation-speed)), 0.5s;
            z-index: -2;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 25% 25%, rgba(120, 119, 198, var(--nebula-intensity)) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 119, 198, var(--nebula-intensity)) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(120, 255, 198, calc(var(--nebula-intensity) * 0.5)) 0%, transparent 50%);
            animation: nebula 20s ease-in-out infinite;
            animation-duration: calc(20s / var(--space-animation-speed));
            z-index: -1;
        }

        @keyframes twinkle {
            0% { opacity: 0.3; transform: scale(1); }
            100% { opacity: 0.8; transform: scale(1.05); }
        }

        @keyframes starVibration {
            0%, 100% { transform: scale(1) rotate(0deg); }
            25% { transform: scale(1.1) rotate(1deg); }
            50% { transform: scale(0.95) rotate(-1deg); }
            75% { transform: scale(1.05) rotate(0.5deg); }
        }

        @keyframes bassPulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        @keyframes midPulse {
            0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
            50% { opacity: 1; transform: scale(1.3) rotate(5deg); }
        }

        @keyframes treblePulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            25% { opacity: 1; transform: scale(1.2); }
            50% { opacity: 0.7; transform: scale(0.9); }
            75% { opacity: 1; transform: scale(1.1); }
        }

        @keyframes nebula {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-10px, -10px) rotate(1deg); }
            50% { transform: translate(10px, -20px) rotate(-1deg); }
            75% { transform: translate(-5px, 10px) rotate(0.5deg); }
        }

        /* Floating Space Particles */
        .space-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, var(--star-brightness));
            border-radius: 50%;
            animation: float var(--particle-speed) linear infinite;
        }

        /* Frequency-reactive star animations */
        .particle.bass {
            animation: float var(--particle-speed) linear infinite, bassPulse var(--bass-frequency) ease-in-out infinite;
        }

        .particle.mid {
            animation: float var(--particle-speed) linear infinite, midPulse var(--mid-frequency) ease-in-out infinite;
        }

        .particle.treble {
            animation: float var(--particle-speed) linear infinite, treblePulse var(--treble-frequency) ease-in-out infinite;
        }

        .particle:nth-child(1) {
            width: 3px;
            height: 3px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            width: 2px;
            height: 2px;
            top: 20%;
            left: 80%;
            animation-delay: 3s;
        }

        .particle:nth-child(3) {
            width: 4px;
            height: 4px;
            top: 60%;
            left: 20%;
            animation-delay: 6s;
        }

        .particle:nth-child(4) {
            width: 2px;
            height: 2px;
            top: 80%;
            left: 70%;
            animation-delay: 9s;
        }

        .particle:nth-child(5) {
            width: 3px;
            height: 3px;
            top: 40%;
            left: 50%;
            animation-delay: 12s;
        }

        @keyframes float {
            0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
        }

        /* Site Header */
        .site-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
            border-bottom: 3px solid var(--primary-color);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            animation: headerSlideIn 1s ease-out;
        }

        @keyframes headerSlideIn {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo img {
            height: 80px;
            width: auto;
            filter: drop-shadow(0 0 10px rgba(255, 94, 94, 0.3));
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .social-nav {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .social-nav a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.5em;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 15px;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid transparent;
        }

        .social-nav a:hover {
            color: var(--primary-color);
            background: rgba(255, 94, 94, 0.1);
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 94, 94, 0.3);
        }

        .social-nav a i {
            font-size: 1.2em;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Styles */
        .header {
            margin-bottom: 30px;
        }

        h1 {
            font-size: 3.5em;
            font-weight: 700;
            color: var(--primary-color);
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .slogan {
            font-size: 1.5em;
            color: var(--secondary-color);
            margin-top: 0;
            animation: fadeIn 1s ease-in-out;
            font-weight: 400;
        }

        /* Search Form */
        #musicSearchForm {
            margin: 40px 0;
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            background: rgba(43, 43, 43, 0.7);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        input[type="text"] {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--card-bg);
            border: 2px solid var(--secondary-color);
            color: var(--highlight-text);
            padding: 15px 20px;
            font-size: 1.1em;
            width: 100%;
            max-width: 500px;
            transition: all 0.3s;
            border-radius: 8px;
            outline: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        input[type="text"]::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        input[type="text"]:focus {
            border-color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(255, 94, 94, 0.4);
        }

        input[type="submit"] {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 15px 35px;
            font-size: 1.1em;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            font-weight: 700;
        }

        input[type="submit"]:hover {
            background-color: #e55353;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 94, 94, 0.5);
        }

        /* Radio Players Section */
        .radio-section {
            margin: 40px 0;
        }

        #radio-players {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .radio-player-card {
            background-color: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 25px;
            transition: all 0.5s ease-in-out;
            cursor: pointer;
            width: 300px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .radio-player-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

        .radio-player-card.active {
            border-color: var(--primary-color);
            animation: pulse 2s infinite;
            background-color: rgba(255, 94, 94, 0.1);
        }

        .radio-player-card h3 {
            margin: 0 0 20px;
            color: var(--secondary-color);
            font-size: 1.4em;
            font-weight: 700;
        }

        .radio-player-card audio {
            width: 100%;
            height: 50px;
            background: #444;
            border-radius: 8px;
            margin-top: 10px;
        }

        /* Results Section */
        #searchResultsContainer {
            margin: 40px 0;
        }

        /* Cards Grid */
        .card-grid {
            margin: 50px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
        }

        .card {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-in-out;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .card h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8em;
            color: var(--secondary-color);
            margin-top: 0;
            margin-bottom: 25px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 350px;
            overflow-y: auto;
        }

        ul::-webkit-scrollbar {
            width: 10px;
        }

        ul::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
        }

        ul::-webkit-scrollbar-thumb {
            background-color: var(--primary-color);
            border-radius: 5px;
            border: 3px solid var(--card-bg);
        }

        li {
            padding: 15px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
            font-size: 1.1em;
            text-align: left;
            opacity: 0;
            animation: fadeInUp 0.5s forwards;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        li:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        li:last-child {
            border-bottom: none;
        }

        .song-title {
            font-weight: 700;
            color: var(--highlight-text);
            cursor: pointer;
            transition: color 0.3s;
        }

        .song-title:hover {
            color: var(--secondary-color);
        }

        .request-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
            margin-left: 15px;
            padding: 8px 15px;
            border-radius: 5px;
            background: rgba(255, 217, 59, 0.1);
            border: 1px solid var(--secondary-color);
        }

        .request-link:hover {
            color: var(--primary-color);
            background: rgba(255, 94, 94, 0.1);
            border-color: var(--primary-color);
            transform: translateX(3px);
        }

        .pagination-links {
            margin-top: 25px;
            font-size: 1.1em;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .pagination-links a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s;
            padding: 8px 15px;
            border-radius: 5px;
            border: 1px solid var(--primary-color);
        }

        .pagination-links a:hover {
            background-color: var(--primary-color);
            color: var(--bg-color);
            transform: translateY(-2px);
        }

        /* Audio Controls */
        .audio-controls {
            display: flex;
            gap: 10px;
        }

        .play-audio-btn, .stop-audio-btn {
            background: none;
            border: none;
            color: var(--secondary-color);
            font-size: 1.3em;
            cursor: pointer;
            transition: all 0.3s;
            padding: 8px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-audio-btn:hover, .stop-audio-btn:hover {
            color: var(--primary-color);
            background: rgba(255, 94, 94, 0.1);
            transform: scale(1.1);
        }

        /* Subtitle Container */
        .subtitle-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background-color: var(--subtitle-bg);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
            border-top: 2px solid var(--primary-color);
        }

        .subtitle-container.show {
            opacity: 1;
            visibility: visible;
        }

        .subtitle-container h2 {
            font-size: 1.6em;
            color: var(--primary-color);
            margin: 0 0 10px;
            font-weight: 700;
        }

        .subtitle-container p {
            font-size: 1.3em;
            font-weight: bold;
            color: var(--highlight-text);
            text-align: center;
            margin: 0;
            padding: 0 30px;
            line-height: 1.4;
        }

        .subtitle-word {
            color: var(--text-color);
            font-size: 1.3em;
            font-weight: bold;
            transition: color 0.3s ease;
            display: inline-block;
            margin: 0 3px;
        }

        .subtitle-word.highlight {
            color: var(--primary-color);
            text-shadow: 0 0 8px var(--primary-color);
            transform: scale(1.1);
        }

        /* Cinematic Relato Modal */
        .relato-cinematico {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 30px;
        }

        .relato-cinematico.show {
            display: flex;
        }

        .relato-inner {
            background-color: var(--card-bg);
            color: var(--text-color);
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
            text-align: left;
            position: relative;
            border: 2px solid var(--border-color);
            animation: modalEntrance 0.5s ease-out;
        }

        @keyframes modalEntrance {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .relato-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.8em;
            text-align: center;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 15px;
            font-weight: 700;
        }

        .relato-text {
            font-style: italic;
            margin-top: 20px;
            white-space: pre-wrap;
            text-align: justify;
            padding: 0;
            font-size: 1.1em;
            line-height: 1.7;
            color: var(--highlight-text);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 1.8em;
            color: var(--text-color);
            cursor: pointer;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .close-btn:hover {
            background: rgba(255, 94, 94, 0.2);
            color: var(--primary-color);
            transform: rotate(90deg);
        }

        /* Comments Section */
        .comments-section {
            margin-top: 40px;
            border-top: 2px solid var(--border-color);
            padding-top: 30px;
        }

        .comments-section h3 {
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.5em;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        #comments-list {
            list-style: none;
            padding: 0;
            max-height: 250px;
            overflow-y: auto;
            margin-bottom: 20px;
        }

        .comment-item {
            background-color: #383838;
            color: #f0f0f0;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 1px solid #444;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .comment-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            font-size: 0.95em;
            color: #aaa;
            border-bottom: 1px solid #555;
            padding-bottom: 8px;
            margin-bottom: 10px;
        }

        .comment-author {
            font-weight: bold;
            color: var(--secondary-color);
        }

        .comment-date {
            font-size: 0.9em;
        }

        .comment-text {
            margin: 0;
            font-size: 1.05em;
            line-height: 1.5;
        }

        #comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        #comment-form input,
        #comment-form textarea {
            background-color: #555;
            border: 2px solid #777;
            color: #f0f0f0;
            padding: 12px;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1em;
            transition: border-color 0.3s;
        }

        #comment-form input:focus,
        #comment-form textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
        }

        #comment-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        #comment-form button {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 700;
            font-size: 1.1em;
            align-self: flex-end;
        }

        #comment-form button:hover {
            background-color: #e55353;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 94, 94, 0.4);
        }

        /* Song Announcer */
        #songAnnouncer {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.95);
            border: 2px solid var(--primary-color);
            padding: 15px 25px;
            border-radius: 10px;
            text-align: center;
            color: var(--text-color);
            font-size: 1.2em;
            font-weight: bold;
            z-index: 1000;
            pointer-events: none;
            transition: all 0.5s ease-in-out;
            box-shadow: 0 4px 20px rgba(255, 94, 94, 0.4);
            backdrop-filter: blur(8px);
            max-width: 90vw;
            word-wrap: break-word;
        }

        .announcer-hidden {
            opacity: 0;
            transform: translateX(-50%) translateY(20px);
        }

        .announcer-show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        #announcerTitle {
            font-size: 1.4em;
            color: var(--secondary-color);
            margin-bottom: 8px;
            font-weight: 700;
            text-shadow: 0 0 8px rgba(255, 217, 59, 0.5);
        }

        /* AI Assistant Bubble */
        #assistantBubble {
            background: var(--card-bg);
            border: 3px solid var(--primary-color);
            border-radius: 20px;
            padding: 20px;
            margin-right: 20px;
            width: 300px;
            position: relative;
            color: var(--text-color);
            transition: all 0.5s ease;
            font-size: 1.1em;
            line-height: 1.5;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
            transform: translateY(20px);
            opacity: 0;
            pointer-events: auto;
        }

        #assistantBubble.show {
            opacity: 1;
            transform: translateY(0);
        }

        #assistantBubble::after {
            content: '';
            position: absolute;
            bottom: 20px;
            right: -15px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 15px solid var(--primary-color);
        }

        /* AI Assistant Container and Character */
        #aiAssistant {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            transition: right 0.5s ease, transform 0.5s ease;
        }

        #assistantCharacter {
            width: 200px;
            height: 140px;
            margin: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Impact', 'Arial Narrow Bold', 'Arial Black', sans-serif;
            font-weight: 900;
            transition: transform 0.5s ease;
        }

        /* PARENTAL ADVISORY Logo Styles */
        .cd-advisory-logo-eyes {
            position: relative;
            width: 170px;
            height: 110px;
            background: #000000;
            border: 2px solid #000000;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 5px 0;
        }

        .cd-advisory-top-text-eyes {
            font-size: 13px;
            letter-spacing: 1px;
            color: #FFFFFF;
            text-align: center;
            line-height: 1;
            margin-bottom: 2px;
        }

        .stripe-row {
            width: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .stripe-row.black-top-eyes, .stripe-row.black-bottom-eyes {
            background: #000000;
            height: 8px;
        }

        .stripe-row.white-middle-eyes {
            background: #FFFFFF;
            height: 35px;
        }

        .cd-advisory-eye-full {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #000000;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cd-advisory-eye-full.left {
            left: 45px;
        }

        .cd-advisory-eye-full.right {
            right: 45px;
        }

        .pupil {
            width: 5px;
            height: 5px;
            background: #FFFFFF;
            border-radius: 50%;
            box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
        }

        .cd-advisory-mouth-eyes {
            position: absolute;
            width: 30px;
            height: 2px;
            background: #000000;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .cd-advisory-bottom-text-eyes {
            font-size: 10px;
            color: #FFFFFF;
            text-align: center;
            line-height: 1;
            margin-top: 2px;
        }
        /* Animations */
        @keyframes floatIdle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes excitedJump {
            0% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.1); }
            100% { transform: translateY(0) scale(1); }
        }

        @keyframes armSwingLeft {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(-15deg); }
        }

        @keyframes armSwingRight {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(15deg); }
        }

        @keyframes legSwingLeft {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(-5deg); }
        }

        @keyframes legSwingRight {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(5deg); }
        }

        @keyframes blink {
            0%, 45%, 55%, 100% { transform: scaleY(1); }
            50% { transform: scaleY(0.1); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 5px var(--radio-pulse-color), 0 0 10px var(--radio-pulse-color); }
            50% { box-shadow: 0 0 25px var(--radio-pulse-color), 0 0 40px var(--radio-pulse-color); }
            100% { box-shadow: 0 0 5px var(--radio-pulse-color), 0 0 10px var(--radio-pulse-color); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .site-header {
                padding: 10px 0;
            }

            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .logo img {
                height: 60px;
            }

            .social-nav {
                gap: 15px;
            }

            .social-nav a {
                font-size: 1.3em;
                padding: 8px 12px;
            }

            .container {
                padding: 10px;
            }

            h1 {
                font-size: 2.5em;
                margin-bottom: 10px;
            }

            .slogan {
                font-size: 1.2em;
            }

            #musicSearchForm {
                flex-direction: column;
                padding: 20px;
            }

            .card-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .card {
                padding: 20px;
            }

            #radio-players {
                flex-direction: column;
                align-items: stretch;
            }

            .radio-player-card {
                width: 100%;
                max-width: 400px;
            }

            #aiAssistant {
                bottom: 20px;
                left: 20px;
            }

            #assistantCharacter {
                width: 90px;
                height: 140px;
            }

            .character-head {
                width: 60px;
                height: 60px;
            }

            .character-body {
                width: 45px;
                height: 55px;
                top: 55px;
            }

            .character-arm {
                height: 45px;
                top: 60px;
            }

            .character-leg {
                height: 50px;
            }

            #assistantBubble {
                width: 250px;
                font-size: 1em;
            }

            .subtitle-container {
                padding: 15px;
            }

            .subtitle-container h2 {
                font-size: 1.3em;
            }

            .subtitle-container p {
                font-size: 1.1em;
            }

            #songAnnouncer {
                bottom: 15px;
                padding: 12px 20px;
                font-size: 1em;
                max-width: 95vw;
            }

            #announcerTitle {
                font-size: 1.2em;
            }
        }

        @media (max-width: 480px) {
            .site-header {
                padding: 8px 0;
            }

            .header-content {
                padding: 0 10px;
            }

            .logo img {
                height: 50px;
            }

            .social-nav {
                gap: 10px;
            }

            .social-nav a {
                font-size: 1.1em;
                padding: 6px 10px;
            }

            h1 {
                font-size: 2em;
            }

            .slogan {
                font-size: 1em;
            }

            #assistantCharacter {
                width: 70px;
                height: 110px;
            }

            #assistantBubble {
                width: 220px;
                font-size: 0.95em;
            }

            #songAnnouncer {
                bottom: 10px;
                padding: 10px 15px;
                font-size: 0.9em;
                max-width: 98vw;
            }

            #announcerTitle {
                font-size: 1.1em;
            }
        }
    
	/* === Modern Radio Players Styles === */
.section-title {
    font-size: 2em;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modern-radio-players {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.modern-radio-card {
    background: linear-gradient(145deg, #2b2b2b, #3a3a3a);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    width: 350px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-radio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary-color);
}

.modern-radio-card.active {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, #3a2a2a, #4a3a3a);
    animation: pulse 2s infinite;
}

.radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.radio-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.4em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 94, 94, 0.2);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    border: 1px solid var(--primary-color);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Visualizer Styles */
.radio-visualizer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 60px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 10px;
}

.visualizer-bar {
    width: 8px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: height 0.1s ease;
    height: 5px;
    transform-origin: bottom;
}

.modern-radio-card.active .visualizer-bar:nth-child(1) { animation: visualizer 1.2s ease-in-out infinite 0.1s; }
.modern-radio-card.active .visualizer-bar:nth-child(2) { animation: visualizer 1.3s ease-in-out infinite 0.2s; }
.modern-radio-card.active .visualizer-bar:nth-child(3) { animation: visualizer 0.9s ease-in-out infinite 0.3s; }
.modern-radio-card.active .visualizer-bar:nth-child(4) { animation: visualizer 1.1s ease-in-out infinite 0.4s; }
.modern-radio-card.active .visualizer-bar:nth-child(5) { animation: visualizer 0.8s ease-in-out infinite 0.5s; }
.modern-radio-card.active .visualizer-bar:nth-child(6) { animation: visualizer 1.4s ease-in-out infinite 0.6s; }
.modern-radio-card.active .visualizer-bar:nth-child(7) { animation: visualizer 1.0s ease-in-out infinite 0.7s; }
.modern-radio-card.active .visualizer-bar:nth-child(8) { animation: visualizer 1.2s ease-in-out infinite 0.8s; }
.modern-radio-card.active .visualizer-bar:nth-child(9) { animation: visualizer 0.9s ease-in-out infinite 0.9s; }
.modern-radio-card.active .visualizer-bar:nth-child(10) { animation: visualizer 1.3s ease-in-out infinite 1.0s; }

@keyframes visualizer {
    0%, 100% { height: 5px; }
    50% { height: 45px; }
}

/* Controls Styles */
.radio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.control-btn {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.time-display {
    font-size: 0.9em;
    color: var(--subtle-text);
    min-width: 50px;
    text-align: right;
}

.volume-slider {
    width: 80px;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    border: 2px solid var(--bg-color);
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    border: 2px solid var(--bg-color);
}

.volume-btn:hover + .volume-slider {
    opacity: 1;
}

/* Now Playing Styles */
.now-playing {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.now-playing p {
    margin: 0;
    font-size: 1em;
    line-height: 1.4;
}

.label {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.song-title {
    color: var(--highlight-text);
    font-weight: 500;
    font-size: 1.1em;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-radio-card {
        width: 100%;
        max-width: 400px;
        margin: 10px 0;
    }
    
    .radio-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .progress-container {
        min-width: auto;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }
    
    .volume-slider {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6em;
        margin: 30px 0 15px;
    }
}

@media (max-width: 480px) {
    .modern-radio-card {
        padding: 20px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .section-title {
        font-size: 1.4em;
    }
}
#assistantContainer {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: 'Bebas Neue', sans-serif;
  cursor: pointer;
  width: 280px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  border: 3px solid black;
}

/* Bloques tipo Parental Advisory */
.logo-block {
  padding: 8px;
  text-align: center;
}

.block-top {
  background: black;
  color: white;
  font-size: 1.4em;
  letter-spacing: 1px;
  border: 2px solid white;
}

.block-middle {
  background: white;
  color: black;
  font-size: 68px;
  line-height: 1;
}

.block-bottom {
  background: black;
  color: white;
  font-size: 1.4em;
  letter-spacing: 2px;
  border: 2px solid white;
}

/* Cuando el asistente habla → todo el bloque se vuelve "modo diálogo" */
.logo-message {
  background: black;
  color: white;
  font-size: 18px;
  padding: 15px;
  text-align: center;
}

/* Site Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 94, 94, 0.3);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 10000; /* Higher than subtitle */
    animation: footerSlideUp 1s ease-out;
    backdrop-filter: blur(5px);
}

@keyframes footerSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.reaction-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.reaction-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 2em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.reaction-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 94, 0.5);
}

.reaction-btn:active {
    transform: scale(0.95);
}

/* Floating Reaction Emojis */
.floating-reaction {
    position: fixed;
    bottom: 120px; /* Start from above the footer */
    font-size: 2em;
    pointer-events: none;
    z-index: 2000;
    animation: floatUpSpace 3s ease-out forwards;
}

@keyframes floatUpSpace {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-150px) scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-300px) scale(1.5) rotate(360deg);
    }
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 10px 0;
    }

    .reaction-bar {
        gap: 15px;
        padding: 0 10px;
    }

    .reaction-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .reaction-bar {
        gap: 10px;
    }

    .reaction-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }
}
