
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
            overflow: hidden;
        }
        
        .player-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            max-width: 500px;
            width: 100%;
            max-height: 200vh;
            text-align: center;
            border: 3px solid rgba(255,255,255,0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        h1 {
            color: #d4af37;
            font-family: 'Cinzel', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .cover-container {
        background: white;
            width: min(220px, 50vw);
            height: min(220px, 50vw);
            margin: 0 auto 15px;
            padding: 12px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #d4af37;
            position: relative;
            
        }
        
        #cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
          
        }
        

        
        .track-info {
            margin: 10px 0;
            padding: 12px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        #track-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #fff;
            margin: 3px 0;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        #track-artist {
            font-size: 1rem;
            color: #d4af37;
            margin: 3px 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin: 15px 0 5px;
        }
        
        .play-pause-btn {
            background: #d4af37;
            color: #1a1a2e;
            border: none;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
        }
        
        .play-pause-btn:hover {
            background: #ffd700;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
        }
        
        .play-pause-btn img {
            width: 35px;
            height: 35px;
            display: block;
        }
        
        .control-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(212, 175, 55, 0.5);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .control-btn:hover {
            background: rgba(212, 175, 55, 0.3);
            transform: scale(1.1);
            border-color: #d4af37;
        }
        
        .mute-btn {
            display: none !important;        
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 28px;
            transition: transform 0.3s;
            display: inline-block;
        }
        
        .mute-btn:hover {
            transform: scale(1.2);
        }
        
        .listener-count {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 10px;
            padding: 8px;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }
        
        .listener-count span {
            color: #d4af37;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .volume-indicator {
            display: none;
            color: white;
            font-size: 0.9em;
            margin-top: 5px;
        }
        


        @media (max-width: 380px) {
        
                body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
            overflow: hidden;
        }
        
        .player-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(0px);
            border-radius: 0px;
            padding: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            max-width: 500px;
            width: 100%;
          height: 100%;
            text-align: center;
            border: 3px solid rgba(255,255,255,0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
            .player-container {
                padding: 15px;
            }
            
            h1 {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }
            
            .cover-container {
                width: min(180px, 45vw);
                height: min(180px, 45vw);
                margin-bottom: 10px;
            }
            
            #track-title {
                font-size: 1rem;
            }
            
            #track-artist {
                font-size: 0.9rem;
            }
            
            .play-pause-btn {
                width: 80px;
                height: 80px;
            }
            
            .play-pause-btn img {
                width: 30px;
                height: 30px;
            }
            
            .mute-btn {
                font-size: 24px;
            }
        }

        @media (min-height: 700px) {
            .player-container {
                padding: 20px 20px;
                
            }
        }

