		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #f8f9fa;
            color: #2d3748;
            line-height: 1.6;
        }
		
		a {text-decoration: none;}
		a:hover {text-decoration: none;}
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background: white;
            min-height: 100vh;
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .header h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 8px;
        }
        
        .header p {
            color: #718096;
            font-size: 16px;
            font-weight: 400;
        }
        
        .search-container {
            position: relative;
            margin-bottom: 30px;
        }
        
        .search-box {
            width: 100%;
            padding: 16px 20px 16px 50px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.3s ease;
        }
        
        .search-box:focus {
            border-color: #4a5568;
        }
        
        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
            font-size: 18px;
        }
        
        .music-list {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 120px;
        }
        
        .music-item {
            display: flex;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #e2e8f0;
            transition: background-color 0.2s ease;
            cursor: pointer;
        }
        
        .music-item:hover {
            background-color: #f7fafc;
        }
        
        .music-item:last-child {
            border-bottom: none;
        }
        
        .music-item.playing {
            background-color: #edf2f7;
        }
        
        .play-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #4a5568;
            border: none;
            color: white;
            cursor: pointer;
            margin-right: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 14px;
        }
        
        .play-btn:hover {
            background: #2d3748;
            transform: scale(1.05);
        }
        
        .music-info {
            flex: 1;
            min-width: 0;
        }
        
        .music-title {
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 4px;
            color: #1a202c;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .music-artist {
            color: #718096;
            font-size: 14px;
            font-weight: 400;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .music-duration {
            color: #a0aec0;
            font-size: 14px;
            font-weight: 400;
            margin-left: 16px;
        }
		
		.back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #4a5568;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 30px;
            padding: 8px 0;
            transition: color 0.2s ease;
        }
        
        .back-button:hover {
            color: #2d3748;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .page-title {
            font-size: 2.25rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 8px;
        }
        
        .page-subtitle {
            color: #718096;
            font-size: 16px;
        }
        
        .track-hero {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            padding: 30px;
            background: #f7fafc;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }
        
        .track-cover {
            width: 160px;
            height: 160px;
            background: #e2e8f0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #a0aec0;
            flex-shrink: 0;
        }
        
        .track-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .track-details {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 25px;
            font-size: 14px;
            color: #718096;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .detail-item i {
            color: #a0aec0;
            width: 16px;
        }
        
        .track-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .main-actions {
            display: flex;
            gap: 12px;
        }
        
        .secondary-actions {
            display: flex;
            gap: 8px;
        }
        
        .primary-btn {
            padding: 14px 28px;
            background: #4a5568;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 15px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            flex: 1;
            justify-content: center;
        }
        
        .primary-btn:hover {
            background: #2d3748;
            transform: translateY(-1px);
        }
        
        .download-btn {
            padding: 14px 28px;
            background: #ce5460;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 15px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            flex: 1;
            justify-content: center;
        }
        
        .download-btn:hover {
            background: #4a5568;
            transform: translateY(-1px);
        }
        
        .secondary-btn {
            padding: 12px 16px;
            background: white;
            color: #4a5568;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.2s ease;
            font-size: 13px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            min-width: 80px;
        }
        
        .secondary-btn:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
        }
        
        .lyrics-section {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 16px;
        }
        
        .lyrics-content {
            font-size: 16px;
            line-height: 1.8;
            color: #4a5568;
        }
        
        .player {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            max-width: 800px;
            width: 100%;
            background: white;
            border: 1px solid #e2e8f0;
            border-bottom: none;
            border-radius: 16px 16px 0 0;
            padding: 24px;
            display: none;
            flex-direction: column;
            z-index: 1000;
            box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
        }
        
        .player.active {
            display: flex;
        }
        
        .player-top {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .player-btn {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #4a5568;
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 18px;
            margin-right: 20px;
        }
        
        .player-btn:hover {
            background: #2d3748;
            transform: scale(1.05);
        }
        
        .player-info {
            flex: 1;
            min-width: 0;
        }
        
        .player-title {
            font-weight: 600;
            font-size: 18px;
            color: #1a202c;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .player-artist {
            color: #718096;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .player-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .control-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            color: #4a5568;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 14px;
        }
        
        .control-btn:hover {
            background: #edf2f7;
            transform: scale(1.05);
        }
        
        .progress-container {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
        }
        
        .time-display {
            font-size: 12px;
            color: #718096;
            font-weight: 500;
            min-width: 40px;
        }
        
        .progress-bar {
            flex: 1;
            height: 6px;
            background: #e2e8f0;
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }
        
        .progress-fill {
            height: 100%;
            background: #4a5568;
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s ease;
        }
        
        .volume-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 20px;
        }
        
        .volume-icon {
            color: #718096;
            font-size: 14px;
        }
        
        .volume-bar {
            width: 80px;
            height: 4px;
            background: #e2e8f0;
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }
        
        .volume-fill {
            height: 100%;
            background: #4a5568;
            border-radius: 2px;
            width: 80%;
        }
		
		/* Pagination Navigation CSS */

/* Base Styles */
.bottom-nav {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
    background: white;
    clear: both;
}

.pagi-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Page Numbers & Links */
.navigation span,
.navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    line-height: 1;
    position: relative;
    box-sizing: border-box;
}

/* Current Page (Active) */
.navigation span {
    background: #4a5568;
    color: white;
    border-color: #4a5568;
    font-weight: 600;
    cursor: default;
    box-shadow: 0 2px 4px rgba(74, 85, 104, 0.2);
}

/* Other Pages */
.navigation a {
    background: white;
    color: #4a5568;
    border-color: #e2e8f0;
    font-weight: 500;
}

.navigation a:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navigation a:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navigation a:focus {
    outline: 2px solid #4a5568;
    outline-offset: 2px;
}

/* Dots/Ellipsis */
.navigation .nav_ext {
    background: transparent !important;
    border: none !important;
    color: #a0aec0;
    cursor: default;
    min-width: 30px;
    font-weight: 600;
    font-size: 16px;
}

.navigation .nav_ext:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Previous/Next Buttons (if needed) */
.pnext,
.pprev {
    margin: 0 8px;
}

.pnext a,
.pprev a {
    background: #4a5568;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pnext a:hover,
.pprev a:hover {
    background: #2d3748;
    transform: scale(1.05);
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.clr {
    clear: both;
}

.ignore-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Alternative Styles */

/* Rounded Style */
.pagination-rounded .navigation span,
.pagination-rounded .navigation a {
    border-radius: 50%;
    min-width: 40px;
    width: 40px;
    padding: 0;
}

/* Large Style */
.pagination-large .navigation span,
.pagination-large .navigation a {
    min-width: 48px;
    height: 48px;
    font-size: 16px;
    padding: 10px 14px;
}

/* Small Style */
.pagination-small .navigation span,
.pagination-small .navigation a {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    padding: 6px 10px;
}

/* Minimal Style */
.pagination-minimal .navigation span,
.pagination-minimal .navigation a {
    border: none;
    background: transparent;
    color: #4a5568;
}

.pagination-minimal .navigation span {
    background: #4a5568;
    color: white;
}

.pagination-minimal .navigation a:hover {
    background: #f7fafc;
}

/* Bordered Style */
.pagination-bordered {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    background: #f8f9fa;
}

/* Color Variants */

/* Blue Theme */
.pagination-blue .navigation span {
    background: #3182ce;
    border-color: #3182ce;
}

.pagination-blue .navigation a:hover {
    border-color: #3182ce;
    color: #3182ce;
}

/* Green Theme */
.pagination-green .navigation span {
    background: #38a169;
    border-color: #38a169;
}

.pagination-green .navigation a:hover {
    border-color: #38a169;
    color: #38a169;
}

/* Red Theme */
.pagination-red .navigation span {
    background: #e53e3e;
    border-color: #e53e3e;
}

.pagination-red .navigation a:hover {
    border-color: #e53e3e;
    color: #e53e3e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bottom-nav {
        margin-top: 30px;
        padding: 20px 0;
    }
    
    .pagi-nav {
        padding: 0 16px;
    }
    
    .navigation {
        gap: 6px;
    }
    
    .navigation span,
    .navigation a {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .navigation .nav_ext {
        min-width: 24px;
        font-size: 14px;
    }
    
    /* Hide middle page numbers on tablet */
    .navigation a:nth-child(n+8):nth-child(-n+15) {
        display: none;
    }
    
    /* Always show first few and last few */
    .navigation a:nth-child(-n+3),
    .navigation a:nth-last-child(-n+2) {
        display: inline-flex !important;
    }
}

@media (max-width: 480px) {
    .bottom-nav {
        margin-top: 20px;
        padding: 16px 0;
    }
    
    .navigation {
        gap: 4px;
    }
    
    .navigation span,
    .navigation a {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .navigation .nav_ext {
        min-width: 20px;
        font-size: 12px;
    }
    
    /* Hide more page numbers on mobile */
    .navigation a:nth-child(n+5):nth-child(-n+20) {
        display: none;
    }
    
    /* Show only first 2, current, dots, and last */
    .navigation a:nth-child(-n+2),
    .navigation a:nth-last-child(1) {
        display: inline-flex !important;
    }
}

@media (max-width: 360px) {
    .navigation {
        gap: 2px;
    }
    
    .navigation span,
    .navigation a {
        min-width: 28px;
        height: 28px;
        font-size: 11px;
        padding: 2px 6px;
    }
    
    /* Very minimal pagination on very small screens */
    .navigation a:nth-child(n+4):nth-child(-n+25) {
        display: none;
    }
    
    .navigation a:nth-child(-n+1),
    .navigation a:nth-last-child(1) {
        display: inline-flex !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .bottom-nav {
        background: #1a202c;
        border-top-color: #2d3748;
    }
    
    .navigation a {
        background: #2d3748;
        color: #e2e8f0;
        border-color: #4a5568;
    }
    
    .navigation a:hover {
        background: #4a5568;
        color: white;
    }
    
    .navigation .nav_ext {
        color: #718096;
    }
}

/* Print Styles */
@media print {
    .bottom-nav {
        display: none;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .navigation span,
    .navigation a {
        transition: none;
    }
    
    .navigation a:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .navigation span {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
    
    .navigation a {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
    
    .navigation a:hover {
        background: #000;
        color: #fff;
    }
}
        
        @media (max-width: 850px) {
            .player {
                left: 0;
                transform: none;
                max-width: none;
                border-radius: 0;
                border-left: none;
                border-right: none;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 16px;
            }
            
            .header {
                padding: 20px 0;
                margin-bottom: 30px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .music-item {
                padding: 16px;
            }
            
            .player {
                padding: 20px;
            }
            
            .volume-container {
                display: none;
            }
			
			.page-title {
                font-size: 1.875rem;
            }
            
            .track-hero {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 20px;
            }
            
            .track-cover {
                width: 140px;
                height: 140px;
                font-size: 40px;
            }
            
            .track-details {
                justify-content: center;
                gap: 12px;
            }
            
            .detail-item {
                font-size: 13px;
            }
            
            .main-actions {
                flex-direction: column;
            }
            
            .secondary-actions {
                justify-content: center;
            }
            
        }
        
        @media (max-width: 480px) {
            .music-duration {
                display: none;
            }
            
            .player-controls {
                display: none;
            }
			
			.track-details {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }
            
            .detail-item {
                min-width: 200px;
                justify-content: flex-start;
            }
            
            .secondary-actions {
                flex-wrap: wrap;
            }
        }