.jukebox { position:relative;top:0%;left: 50%;transform: translate(-50%, 0%);max-width: 500px; background: #1a1a1a; padding: 25px; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.9); border: 1px solid #333; }
        
        h2 { text-align: center; color: #00ffcc; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 2px; }

        /* Featured Buttons */
        .featured-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .feature-card { background: #252525; padding: 10px; border-radius: 10px; text-align: center; cursor: pointer; border: 1px solid #444; transition: 0.3s; }
        .feature-card:hover { border-color: #00ffcc; background: #333; transform: translateY(-3px); }
        .feature-card img { width: 100%; height: 60px; object-fit: cover; border-radius: 5px; margin-bottom: 8px; }
        .feature-card span { font-size: 11px; font-weight: bold; display: block; line-height: 1.2; color: #00ffcc; }

        /* Results List */
        .track-list { max-height: 300px; overflow-y: auto; background: #111; border-radius: 10px; border: 1px solid #222; margin-bottom: 20px; color: #00ffcc;}
        .track-item { display: flex; align-items: center; gap: 12px; padding: 12px; cursor: pointer; border-bottom: 1px solid #222; font-size: 14px; }
        .track-item:hover { background: #252525; }
        .active { background: #2a2a2a !important; color: #00ffcc; border-left: 4px solid #00ffcc; }

        /* Player Section */
        .player-section { text-align: center; border-top: 1px solid #333; padding-top: 20px; color: #00ffcc; }
        #current-art { width: 100%; height: 180px; object-fit: contain; border-radius: 8px; margin-bottom: 15px; display: none; background: #000; }
        #now-playing { font-size: 13px; margin-bottom: 10px; color: #00ffcc; height: 18px; overflow: hidden; }
        audio { width: 100%; filter: invert(90%); }