.detail-player.detail-theme .detail-player-main {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	animation: detailPlayerFadeUp 240ms ease;
}
.detail-player.detail-theme .global-player-detail-top {
	display: flex;
	justify-content: space-around;
	font-size: 16px;
}
.detail-player.detail-theme .global-player-timeline {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 10px;
}
.detail-player.detail-theme .compact-player-meta {
	display: none;
}
.detail-player.detail-theme .global-player-btn {
	width: 40px;
	height: 40px;
	transition: transform 160ms ease, background-color 160ms ease;
}
.detail-player.detail-theme .global-player-btn:hover {
	transform: translateY(-2px);
}
.detail-player.detail-theme .global-player-btn i {
	font-size: 18px;
	transition: color 160ms ease;
}
.detail-player.detail-theme .global-player-progress {
	height: 2px;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
}
.detail-player.detail-theme .global-player-time {
	justify-content: space-between;
	width: 100%;
}
.detail-player.detail-theme .detail-title-author {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.detail-player.detail-theme #global-player-title {
	font-size: 20px;
	font-weight: 700;
}
.detail-player.detail-theme .detail-player-author {
	font-size: 12px;
	color: rgba(255,255,255,0.75);
}
.detail-player.detail-theme .detail-player-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.detail-player.detail-theme .detail-player-controls .btn-play-main {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	transition: transform 200ms ease, background-color 160ms ease;
}
.detail-player.detail-theme .detail-player-controls .btn-play-main:hover {
	transform: scale(1.04);
}
.detail-player.detail-theme .detail-player-controls .btn-play-main i {
	font-size: 54px;
}
/* 显式显示五个控件（避免被compact样式隐藏） */
.detail-player #global-player-prev,
.detail-player #global-player-next,
.detail-player #global-player-mode,
.detail-player #global-player-toggle,
.detail-player #global-player-list { display: inline-flex; }
.detail-player.detail-theme .detail-stat {
	position: relative;
}
.detail-player.detail-theme .detail-stat i {
	font-size: 24px;
	margin: 0;
	transition: transform 160ms ease, color 160ms ease;
}
.detail-player.detail-theme .detail-stat:hover i {
	transform: translateY(-2px);
}
.detail-player.detail-theme .detail-stat::after {
	content: attr(data-count);
	position: absolute;
	top: -8px;
	right: -10px;
	background: #fff;
	color: #121212;
	border-radius: 10px;
	padding: 0 4px;
	font-size: 11px;
	line-height: 18px;
	min-width: 18px;
	text-align: center;
	border: 1px solid rgba(0,0,0,0.2);
}
.detail-player.detail-theme .global-player-progress::-webkit-slider-runnable-track {
	height: 2px;
	background: rgba(255,255,255,0.25);
	border-radius: 2px;
}
.detail-player.detail-theme .global-player-progress::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #00d1b2;
	margin-top: -6px;
	transition: transform 160ms ease;
}
.detail-player.detail-theme .global-player-progress::-webkit-slider-thumb:active {
	transform: scale(1.08);
}
.detail-player.detail-theme .global-player-progress::-moz-range-track {
	height: 2px;
	background: rgba(255,255,255,0.25);
	border-radius: 2px;
}
.detail-player.detail-theme .global-player-progress::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #00d1b2;
}
/* 统一区块下方间距：标题、统计、时间/进度、控件 */
.detail-player.detail-theme .detail-title-author {
	margin-bottom: 24px;
}
.detail-player.detail-theme .global-player-detail-top {
	margin-bottom: 24px;
	padding: 0 12px;
}
.detail-player.detail-theme .global-player-timeline {
	margin-bottom: 24px;
}
.detail-player.detail-theme .detail-player-controls {
	margin-bottom: 36px;
}

@keyframes detailPlayerFadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
