* {margin: 0;padding: 0;  box-sizing: border-box;font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;}
.container { max-width: 1200px;margin: 0 auto;padding: 0px;}
header {text-align: center;margin-bottom: 0px; padding-top: 0px; }
        
h2 {font-size: 1rem; margin-bottom: 0px;background: linear-gradient(90deg, #00dbde, #fc00ff);
-webkit-background-clip: text;background-clip: text;color: transparent;letter-spacing: 1px; }
        
        .subtitle {
            font-size: 1.1rem;
            color: #a0a0c0;
            margin-bottom: 0px;
        }
        
        /* Navigation Styles */
        .playlist-nav {
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 1px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            justify-content: left;
            list-style: none;
            gap: 5px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-btn {
            background-color: #2d3047;
            color: #e0e0ff;
            border: none;
            padding: 5px 10px 10px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-btn:hover {
            background-color: #3a3d5e;
            transform: translateY(-2px);
        }
        
        .nav-btn.active {
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            color: white;
        }
        
        .mydropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #2d3047;
            min-width: 220px;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            z-index: 100;
            margin-top: 5px;
            overflow: hidden;
        }
        
        .mydropdown-content.show {
            display: block;
        }
        
        .mydropdown-item {
            padding: 12px 16px;
            color: #e0e0ff;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.2s ease;
        }
        
        .mydropdown-item:hover {
            background-color: #3a3d5e;
            padding-left: 20px;
        }
        
        /* Player Styles */
        .player-container {
            background-color: #181a1b;
            border-radius: 16px;
            padding: 2px 25px 0px ;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            margin-bottom: 1px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .now-playing {
            display: flex;
            align-items: center;
            margin-bottom: 0px;
            gap: 10px;
        }
        

        
        .track-info {
            flex: 1;
        }
        
        .track-title {font-size: 1rem;font-weight: 600;
            margin-bottom: 0px;color: #ffffff;   }
        
        .track-artist {
            font-size: 0rem;
            color: #a0a0c0;
        }
        
        .player-controls {
            margin-bottom: 1px;
        }
        
        .progress-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 3px;
        }
        
        .progress-bar {
            flex: 1;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .progress {
            height: 100%;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            border-radius: 4px;
            width: 0%;
            transition: width 0.1s;
        }
        
        .time-display {
            font-size: 0.9rem;
            color: #a0a0c0;
            min-width: 100px;
            text-align: center;
        }
        
        .controls {
            display: flex;
            justify-content: space-between;
            align-items: left;padding: 1px 10px 0px;
        }
        
        .control-buttons {
            display: flex;
            gap: 15px;
        }
        
        .control-btn {
            background-color: #2d3047;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: #e0e0ff;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;

        }
        
        .control-btn:hover {
            background-color: #3a3d5e;
            transform: scale(1.05);
        }
        
        .play-btn {
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            color: white;
            width: 30px;
            height: 30px;
            font-size: 1rem;
        }
        
        .volume-container {
            display: flex;
			padding:0px 0px 0px 10px;
            align-items: left;
            gap: 10px;
            width: 100%;
        }
        
        .volume-slider {
            flex: 1;
            height: 2px;
             border-radius: 3px;
            outline: none;
            width: 100%;
            background-color: tomato;
             cursor: pointer;
        }
        }
        
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 100px;
            height: 8px;
            border-radius: 50%;
            background: tomato;
            cursor: pointer;
        }
        
        /* Playlist Styles */
        .playlist-container {
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            padding: 0px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .playlist-header {
            font-size: 1.5rem;
            margin-bottom: 6px;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 10px;
			
        }
        
        .playlist-header i {
            color: #00dbde;
        }
        
        .track-list {
            list-style: none;
            max-height: 600px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .track-list::-webkit-scrollbar {
            width: 8px;
        }
        
        .track-list::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }
        
        .track-list::-webkit-scrollbar-thumb {
            background: #00dbde;
            border-radius: 4px;
        }
        
        .track-item {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-radius: 8px;
        }
        
        .track-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .track-item.active {
            background: linear-gradient(90deg, rgba(0, 219, 222, 0.2), rgba(252, 0, 255, 0.2));
            border-left: 4px solid #00dbde;
        }
        
        .track-number {
            width: 30px;
            color: #a0a0c0;
            font-weight: 600;
        }
        
        .track-details {
            flex: 1;
        }
        
        .track-name {
            font-weight: 600;
            margin-bottom: 4px;
            color: #ffffff;
        }
        
        .artist-name {
            font-size: 0.9rem;
            color: #a0a0c0;
        }
        
        .track-duration {
            color: #a0a0c0;
            font-size: 0.9rem;
        }
        
        .playlist-info {
            margin-top: 15px;
            color: #a0a0c0;
            font-size: 0.9rem;
            text-align: center;
        }
        
        @media (max-width: 100%) {
            .nav-menu {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-btn {
                width: 100%;
                justify-content: center;
            }
            
            .mydropdown-content {
                position: relative;
                margin-top: 5px;
                width: 100%;
            }
            
            .now-playing {
                flex-direction: column;
                text-align: center;
            }
            
            .controls {
                flex-direction: column;
                gap: 20px;
            }
            
            .volume-container {
                width: 90%;
            }
        }


