.nav {
	background: #000;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	position: relative;
}

.logo {
	width: 40px;
	height: 40px;
	background: url(/images1/logo.jpg);
	border-radius: 6px;
	margin-right: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;	
}
.nav-items {
	display: flex;
	gap: 25px;
	align-items: center;
}

.album-art {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 0 auto 30px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	position: relative;
	background: #333;
	border: 3px solid white;
	transition: transform 0.3s ease;
}

.album-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.album-art.rolling {
	animation: rotate 15s linear infinite;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.player-controls {
	background: rgba(255,255,255,0.1);
	padding: 16px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	width: 250px;
	margin: 0 auto;
}

.time-slider {
	width: 100%;
	-webkit-appearance: none;
	height: 4px;
	background: rgba(255,255,255,0.3);
	border-radius: 2px;
	margin: 15px 0;
}

.time-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	background: white;
	border-radius: 50%;
	cursor: pointer;
	transition: transform 0.2s;
}

.time-slider::-webkit-slider-thumb:active {
	transform: scale(1.2);
}

.time-display {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	opacity: 0.8;
	margin-bottom: 20px;
}

.controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.control-btn {
	border: none;
	color: #2f3542;
	font-size: 14px;
	cursor: pointer;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	transition: all 0.2s;
}

.control-btn:active {
	transform: scale(0.9);
	background: rgba(255,255,255,0.2);
}

.play-btn {
	width: 40px;
	height: 40px;
}

.speed-btn {
	font-size: 14px;
	border-radius: 20px;
	width: auto;
	padding: 6px 16px 8px 16px;
}

.download-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	display: none;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
}

.modal-content {
	background: white;
	padding: 25px;
	border-radius: 15px;
	text-align: center;
	color: #333;
	position: relative;
	transform: translateY(20px);
	opacity: 0;
	animation: modalShow 0.3s forwards;
}

@keyframes modalShow {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-content button {
	background: #6366f1;
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: 25px;
	margin-top: 15px;
	cursor: pointer;
	transition: transform 0.2s;
}

.modal-content button:active {
	transform: scale(0.95);
}
.content-main {
	flex: 1;
	background-color: #000;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	color: white;
	position: relative;
	width: 100vw;
	background: url(/images1/music-bg.jpg) no-repeat center center;
	background-size: cover;
}
.header-mp3{
	text-align: center;
	margin: 30px 0;
	padding-top: 100px;
}
.header-mp3 h1{font-size: 16px;}
.mp3-body {
	margin: 0 auto;
	width: 420px;
	height: 650px;
	background: url(/images1/sjbg.png) no-repeat center center;
	background-size: contain;
	color: #fff;
}
.nav-new a {
color: #000 !important; 
padding: 0 !important; 
}
.article-title-mp3 h2{text-align:center;}