:focus{
	outline:none;
}
body{
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	margin:0;
	padding:0;
	font-size:12px;
	background:#FFFFFF;
}
.title{
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
	background-color:#3784c5;
	font-size:18px;
	color:#fff;
}
.container{
	padding:24px;
	display:flex;
	flex-wrap:wrap;
	gap:20px;
	justify-content:center;
}
.player{
	width:400px;
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:14px;
	padding:16px;
	box-shadow:0 4px 10px rgba(0,0,0,.06);
	display:flex;
	flex-direction:column;
	gap:12px;
}
.track-title{
	font-size:15px;
	font-weight:600;
	color:#222;
	text-align:center;
}
.description{
	font-size:11px;
	text-align:center;
}
.controls{
	display:flex;
	justify-content:center;
	gap:10px;
}
.icon-btn{
	width:42px;
	height:42px;
	border:none;
	border-radius:50%;
	background:#4a90e2;
	color:#fff;
	font-size:18px;
	cursor:pointer;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	transition:transform .1s ease, opacity .2s ease;
}
.icon-btn:hover{
	opacity:.9;
}
.icon-btn:active{
	transform:scale(.96);
}
.icon-btn:disabled{
	background:#c9cdd3;
	cursor:not-allowed;
}
.progress{
	-webkit-appearance:none;
	appearance:none; width:100%;
	height:6px;
	border-radius:3px;
	background:#e5e7eb;
	cursor:pointer;
}
.progress::-webkit-slider-thumb{
	-webkit-appearance:none;
	width:12px;
	height:12px;
	border-radius:50%;
	background:#4a90e2;
}
.progress::-moz-range-thumb{
	width:12px;
	height:12px;
	border-radius:50%;
	background:#4a90e2;
	border:none;
}
.time{
	font-size:12px;
	color:#555;
	display:flex;
	justify-content:space-between;
}
.lyrics-btn{
	margin-top:8px;
	padding:6px 12px;
	border:none;
	border-radius:6px;
	background:#6c757d;
	color:#fff;
	cursor:pointer;
	transition:background .2s;
}
.lyrics-btn:hover{
	background:#5a6268;
}
.lyrics{
	max-height:0;
	overflow:auto;
	transition:max-height 0.3s ease, padding 0.3s ease;
	margin-top:0;
	padding:0 4px;
	font-size:13px; color:#333; line-height:1.4; white-space:pre-wrap;
	border-top:none;
}
.lyrics.show{
	max-height:250px;
	padding:8px 4px;
	border-top:1px solid #e5e7eb;
	margin-top:8px;
}

.info{
	text-align:center;
	font-size:12px;
	width:calc(100% - 10px);
	margin:10px 0px;
	padding:5px 5px;
	/*color:#3784c5;*/
	color:#999999;
}
a,a:hover,a:visited{
	color: inherit;
	text-decoration:none;
}