* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

[v-cloak] {
	display: none;
}

.cursor {
	cursor: pointer;
}

i {
	font-style: normal;
}

.flex {
	display: flex;
	gap: 8px;
}

.flex-1 {
	flex: 1;
}

html, body {
	height: 100%;
	overflow: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
	background: #0c0c0c;
	color: #fff;
	display: flex;
	flex-direction: column;
}

#app {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	position: relative;
}

.bg-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;
	z-index: -2;
}

.bg-cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: blur(60px) saturate(1.2) brightness(0.35);
	transform: scale(1.15);
	z-index: -2;
	transition: opacity 0.8s ease;
}

.bg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(20px);
	z-index: -1;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/* Edge/性能模式：彻底禁用高开销CSS效果，消除DevTools下鼠标卡顿 */
html.edge-perf .bg-animation,
html.edge-perf .bg-cover,
html.edge-perf .full-bg,
html.edge-perf .current-cover.playing,
html.edge-perf .lyric-line.active,
html.edge-perf .lyric-line.active::before,
html.edge-perf .loading i {
	animation: none !important;
}
html.edge-perf .bg-overlay,
html.edge-perf .wrap-box,
html.edge-perf .navbar,
html.edge-perf .full-mask,
html.edge-perf .search-input,
html.edge-perf .full-playlist-backdrop,
html.edge-perf .full-playlist-panel,
html.edge-perf .full-volume-panel {
	backdrop-filter: none !important;
	filter: none !important;
}
html.edge-perf .full-bg {
	filter: none !important;
	transform: none !important;
	animation: none !important;
	opacity: 0 !important;
}
html.edge-perf .full-mask {
	backdrop-filter: none !important;
	filter: none !important;
	background: none !important;
}
html.edge-perf .lyric-line:not(.active),
html.edge-perf .lyric-line:not(.active):hover {
	filter: none !important;
}
html.edge-perf .lyric-line.active {
	filter: none !important;
	box-shadow: none !important;
}
html.edge-perf .song-item:hover {
	transform: none !important;
}

.hide {
	display: none !important;
}

.wrap-box {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 20px;
	backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.navbar {
	flex: 0 0 auto;
	position: relative;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 15px 0;
	z-index: 100;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
}

.logo i {
	color: #ff6b6b;
	font-size: 28px;
	margin-right: 12px;
}

.search-container {
	flex: 1;
	max-width: 600px;
	margin: 0 40px;
	position: relative;
}

.search-wrapper {
	display: flex;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 25px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.search-input {
	flex: 1;
	padding: 12px 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 16px;
	outline: none;
	filter: brightness(6);
}

.source-select {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	padding: 12px 15px;
	outline: none;
	cursor: pointer;
}

.source-select option {
	background: #2a2a2a;
	color: #fff;
	padding: 8px;
}

.search-btn {
	background: #ff6b6b;
	border: none;
	color: #fff;
	padding: 12px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-btn:hover {
	background: #ff5252;
}

.main-container {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 30px;
	display: grid;
	grid-template-columns: 2.2fr 2.3fr 2fr;
	gap: 25px;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

.content-section {
	min-width: 0;
	overflow: hidden;
	/* min-height: 60vh; */
	display: flex;
	flex-direction: column;
}

.section-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-right: 14px;
}


.section-title span {
	font-size: 14px;
	font-weight: 300;
	flex: 1;
}

.section-title .play-ctr i {
	font-size: 27px;
	margin: 0 16px;
	cursor: pointer;
}

.section-title i.on {
	color: #ff5252;
}

/* 标签切换 */
.tab-switch {
	display: flex;
	gap: 5px;
	margin-left: auto;
}

.tab-btn {
	padding: 4px 12px;
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tab-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.tab-btn.active {
	background: linear-gradient(135deg, #ff6b6b, #ff5252);
	color: #fff;
}

/* 歌单解析面板 */
.playlist-parse-panel {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.playlist-parse-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	cursor: pointer;
}

.playlist-parse-title {
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px;
}

.playlist-parse-title i {
	color: #ff6b6b;
}

.playlist-parse-toggle {
	color: rgba(255, 255, 255, 0.6);
	transition: transform 0.3s ease;
	font-size: 12px;
}

.playlist-parse-toggle.expanded {
	transform: rotate(180deg);
}

.playlist-parse-form {
	display: flex;
	gap: 8px;
	align-items: center;
}

.playlist-parse-form.collapsed {
	display: none;
}

.playlist-parse-input {
	flex: 1;
	padding: 6px 10px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	color: #fff;
	font-size: 13px;
	outline: none;
	transition: all 0.3s ease;
}

.playlist-parse-input:focus {
	border-color: #ff6b6b;
	background: rgba(255, 255, 255, 0.15);
}

.playlist-parse-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.playlist-parse-btn {
	padding: 6px 12px;
	background: linear-gradient(135deg, #ff6b6b, #ff5252);
	border: none;
	border-radius: 6px;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.playlist-parse-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.playlist-parse-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.playlist-parse-result {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.playlist-parse-info {
	display: flex;
	gap: 10px;
	align-items: center;
}

.playlist-parse-cover {
	width: 45px;
	height: 45px;
	border-radius: 6px;
	object-fit: cover;
}

.playlist-parse-meta {
	flex: 1;
}

.playlist-parse-name {
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 150px;
}

.playlist-parse-count {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

.playlist-parse-load-btn {
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.playlist-parse-load-btn:hover {
	background: rgba(255, 255, 255, 0.25);
}

.search-results {
	/* max-height: 670px; */
	flex: 1;
	overflow-y: auto;
	height: 0;
	padding-right: 14px;
	margin-right: 8px;
}

.song-item {
	display: flex;
	align-items: center;
	padding: 10px 10px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 8px;
	position: relative;
	overflow: hidden;
}

.song-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.song-item.active {
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 107, 107, 0.1));
	border: 1px solid rgba(255, 107, 107, 0.5);
}

.song-index {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
}

.song-item.active .song-index {
	background: linear-gradient(135deg, #ff6b6b, #ff5252);
	color: #fff;
}

.song-info {
	flex: 1;
	width: 0;
	position: relative;
}

.song-info i {
	position: absolute;
	top: 2px;
	right: 2px;
	color: #ababab;
	display: none;
}

.song-info:hover i {
	display: block;
}

.song-name {
	font-weight: 600;
	margin-bottom: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.song-artist {
	color: rgba(255, 255, 255, 0.7);
	font-size: .8em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.song-duration {
	color: rgba(255, 255, 255, 0.5);
	font-size: .8em;
	margin-left: 15px;
	display: none;
}

.player-section {
	xposition: sticky;
	top: 120px;
	/* height: fit-content; */
	/* min-height: calc(100vh - 240px); */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.current-song {
	text-align: center;
	margin-bottom: 25px;
}

.current-cover-container {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.current-cover {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
	transition: all 0.5s ease;
	border: 4px solid rgba(255, 255, 255, 0.15);
	position: relative;
}

.current-cover.playing {
	animation: rotate 20s linear infinite;
	box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
	border-color: rgba(255, 107, 107, 0.3);
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.current-info h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #fff;
}

.current-info p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
}

.player-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}

.control-btn {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.control-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.control-btn.small {
	width: 45px;
	height: 45px;
	font-size: 18px;
}

.play-btn {
	width: 65px;
	height: 65px;
	font-size: 28px;
	background: linear-gradient(135deg, #ff6b6b, #ff5252);
	box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.play-btn:hover {
	background: linear-gradient(135deg, #ff5252, #ff4444);
	box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.progress-container {
	margin-bottom: 20px;
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff6b6b, #ff8a80);
	border-radius: 3px;
	width: 0%;
	transition: width 0.1s ease;
	position: relative;
}

.progress-fill::after {
	content: '';
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.time-info {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.volume-container {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}

.volume-icon {
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
}

.volume-slider {
	flex: 1;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
	background: #ff6b6b;
	border-radius: 50%;
	cursor: pointer;
}

.quality-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	max-height: 60px;
	opacity: 1;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
	            opacity 0.35s ease,
	            margin 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
	            padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
	            border-width 0.35s ease;
}

.quality-container.quality-hidden {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	border-width: 0;
}

.quality-label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.quality-select {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #fff;
	padding: 8px 12px;
	outline: none;
	cursor: pointer;
	font-size: 14px;
}

.quality-select option {
	background: #2a2a2a;
	color: #fff;
	padding: 8px;
}

.download-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 20px;
}

.download-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}

.download-btn:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.2);
	border-color: #ff6b6b;
	color: #ff6b6b;
}

.download-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.song-actions {
	display: flex;
	gap: 8px;
	margin-right: 15px;
}

.action-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.action-btn:hover {
	background: rgba(255, 107, 107, 0.3);
	color: #ff6b6b;
	transform: scale(1.1);
}

.list-section {
	/* height: 40vh; */
	flex: 1;
	/* overflow: auto; */
	/* margin-bottom: 10px; */
	overflow: hidden;
	display: flex;
	flex-direction: column;
	contain: layout style paint;
}

.lyrics-section {
	/* height: 40vh; */
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
}

/* 确保歌词容器自身没有滚动条轨道背景 */
.lyrics-container::-webkit-scrollbar-track {
	background: transparent !important;
	margin: 5px 0;
}

.lyrics-container::-webkit-scrollbar-corner {
	background: transparent !important;
}

/* 移除歌词列表底部的长条（可能是滚动条轨道或border） */
.lyrics-section ::-webkit-scrollbar-track {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
}

.lyrics-section ::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2) !important;
	border-radius: 10px;
}

.lyrics-section ::-webkit-scrollbar-corner {
	background: transparent !important;
}

.lyrics-section ::-webkit-scrollbar {
	width: 0px;
	height: 0px;
	/* 同时也隐藏水平滚动条 */
	background: transparent;
}

.lyrics-container:hover::-webkit-scrollbar {
	width: 6px;
}

.right-section {
	display: flex;
	flex-direction: column;
	gap: 25px;
	overflow: hidden;
	min-height: 0;
}

.lyrics-container,
.list-container {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	/* 强制隐藏水平滚动条 */
	padding-right: 14px;
	margin-right: 8px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

/* 专门针对歌词容器隐藏水平滚动条 */
.lyrics-container::-webkit-scrollbar:horizontal {
	height: 0 !important;
	display: none !important;
}

.lyrics-container::-webkit-scrollbar,
.list-container::-webkit-scrollbar,
.search-results::-webkit-scrollbar {
	width: 6px;
	background: transparent;
}

.lyrics-container::-webkit-scrollbar-thumb,
.list-container::-webkit-scrollbar-thumb,
.search-results::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
}

.lyrics-container::-webkit-scrollbar-track,
.list-container::-webkit-scrollbar-track,
.search-results::-webkit-scrollbar-track {
	background: transparent;
	margin: 5px 0;
	/* 给轨道上下留白 */
}

.lyric-line,
.lyric-empty {
	padding: 8px 12px;
	transition: 
		opacity 0.3s ease,
		transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
		background 0.4s ease,
		color 0.3s ease;
	border-radius: 8px;
	margin-bottom: 4px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	font-size: 15px;
}

.lyric-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 20px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	margin-bottom: 4px;
}

.lyric-loading i {
	color: #ff6b6b;
	font-size: 16px;
}

.lyric-line:hover {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
}

.lyric-line.active {
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	background: linear-gradient(90deg, rgba(255, 107, 107, 0.18), transparent);
	transform: scale(1.03) translateX(8px);
	border-left: 3px solid #ff6b6b;
	text-shadow: 0 0 12px rgba(255, 107, 107, 0.5);
	animation: lyric-pulse 2.5s ease-in-out infinite;
}

@keyframes lyric-pulse {
	0%, 100% { 
		text-shadow: 0 0 12px rgba(255, 107, 107, 0.5);
	}
	50% { 
		text-shadow: 0 0 18px rgba(255, 107, 107, 0.7);
	}
}

.lyrics-section:not(.full) .lyrics-container {
	text-align: center;
	padding-right: 0;
	margin-right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lyrics-section:not(.full) .lyric-line,
.lyrics-section:not(.full) .lyric-empty,
.lyrics-section:not(.full) .lyric-loading {
	width: 100%;
	text-align: center;
}

.error,
.empty-state {
	text-align: center;
	padding: 30px 20px;
	color: rgba(255, 255, 255, 0.7);
}

.error i,
.empty-state i {
	font-size: 48px;
	margin-bottom: 15px;
	display: block;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #aaa;
	z-index: 2000;
}

.loading i {
	animation: spin 1s linear infinite;
	color: #ff6b6b;
	width: 30px;
	height: 30px;
	font-size: 30px;
	margin: 10px auto;
}

.list-section .song-item {
	padding: 4px 8px;
	font-size: 14px;
	border-bottom: 1px solid rgba(153, 153, 153, 0.3);
}

.flt-tool,
.logo .m {
	display: none;
}

.lyrics-section.full {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	z-index: 999;
	text-align: center;
	font-size: clamp(20px, 1.2vw, 26px);
	padding: clamp(60px, 6vh, 82px) clamp(40px, 5vw, 92px) clamp(118px, 13vh, 156px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	overflow: hidden;
	isolation: isolate;
}

.full-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: blur(35px) saturate(1.8) brightness(0.35);
	transform: scale(1.06);
	z-index: -3;
	opacity: 0.72;
	transition: background-image 0.5s ease, filter 0.5s ease, transform 0.8s ease;
	animation: fullBgFloat 18s ease-in-out infinite;
}

.full-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	pointer-events: none;
}

@keyframes fullBgFloat {
	0%,
	100% {
		transform: scale(1.12) translate3d(0, 0, 0);
	}

	50% {
		transform: scale(1.16) translate3d(0, -1.5%, 0);
	}
}

.lyrics-full-layout {
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: hidden;
	min-height: 0;
}

.full-lyrics-main {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
}

.lyrics-section.full .lyrics-full-layout {
	display: block;
	flex: 1;
	min-height: 0;
	max-width: 1560px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}

.lyrics-section.full .full-player-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: absolute;
	left: clamp(44px, 7vw, 120px);
	top: clamp(68px, 11vh, 118px);
	transform: none;
	width: clamp(180px, 19vw, 260px);
	z-index: 2;
}

.lyrics-section.full .full-player-meta {
	width: 100%;
	margin-bottom: 12px;
	text-align: center;
}

.lyrics-section.full .full-lyrics-main {
	display: flex;
	flex-direction: column;
	position: relative;
	min-width: 0;
	width: min(56vw, 780px);
	margin-left: clamp(290px, 33vw, 500px);
	margin-right: auto;
	height: 100%;
	padding-top: clamp(18px, 3vh, 36px);
	padding-bottom: clamp(94px, 12vh, 146px);
}

.lyrics-section.full .full-cover {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: clamp(16px, 1vw, 22px);
	object-fit: cover;
	box-shadow: 0 16px 46px rgba(0, 0, 0, 0.58);
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: block;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.lyrics-section.full .full-cover:hover {
	transform: scale(1.05) rotate(2deg);
}

.lyrics-section.full .full-song-title,
.lyrics-section.full .full-lyrics-title {
	font-size: clamp(22px, 1.7vw, 28px);
	font-weight: 700;
	margin-bottom: 4px;
	color: #fff;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.25;
	max-width: 100%;
	display: block;
}

.lyrics-section.full .full-song-artist,
.lyrics-section.full .full-lyrics-artist {
	font-size: clamp(12px, 0.9vw, 14px);
	color: rgba(255, 255, 255, 0.72);
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.4;
	max-width: 100%;
	display: block;
}

.lyrics-section.full .full-bottom-bar {
	position: absolute;
	left: clamp(42px, 5vw, 96px);
	right: clamp(42px, 5vw, 96px);
	bottom: clamp(24px, 3.5vh, 38px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	z-index: 1001;
}

.lyrics-section.full .full-progress-strip {
	width: min(980px, 100%);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
}

.lyrics-section.full .full-progress-time {
	font-size: clamp(13px, 0.9vw, 15px);
	color: rgba(255, 255, 255, 0.62);
	letter-spacing: 0.4px;
	font-variant-numeric: tabular-nums;
}

.lyrics-section.full .full-progress-track {
	display: flex;
	align-items: center;
	height: 24px;
	cursor: pointer;
}

.lyrics-section.full .full-progress-bar {
	width: 100%;
	height: 5px;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	overflow: hidden;
}

.lyrics-section.full .full-progress-inner {
	height: 100%;
	background: #ff6b6b;
	box-shadow: 0 0 10px rgba(255, 107, 107, 0.6);
	transition: width 0.1s linear;
}

.lyrics-section.full .full-controls-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 1.8vw, 24px);
	width: 100%;
}

.lyrics-section.full .full-volume-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lyrics-section.full .full-volume-panel {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 14px);
	transform: translateX(-50%) translateY(8px);
	width: 58px;
	height: 150px;
	border-radius: 30px;
	background: rgba(12, 12, 14, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	backdrop-filter: blur(12px);
}

.lyrics-section.full .full-volume-wrap.show .full-volume-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.lyrics-section.full .full-volume-slider {
	width: 108px;
	height: 6px;
	margin: 0;
	transform: rotate(-90deg);
	transform-origin: center;
	-webkit-appearance: none;
	appearance: none;
	background: rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	outline: none;
	cursor: pointer;
}

.lyrics-section.full .full-volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #ff6b6b;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.lyrics-section.full .full-volume-slider::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #ff6b6b;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.lyrics-section.full .full-volume-btn i {
	font-size: 18px;
}

.lyrics-section.full .full-list-toggle {
	min-width: clamp(48px, 3.2vw, 56px);
}

.lyrics-section.full .full-playlist-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(2px);
	z-index: 1050;
}

.lyrics-section.full .full-playlist-panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: clamp(280px, 28vw, 380px);
	padding: clamp(22px, 3vh, 32px) 16px clamp(20px, 3vh, 28px);
	box-sizing: border-box;
	background: rgba(12, 12, 12, 0.62);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(18px);
	transform: translateX(100%);
	transition: transform 0.28s ease;
	z-index: 1060;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lyrics-section.full .full-playlist-panel.show {
	transform: translateX(0);
}

.lyrics-section.full .full-playlist-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 4px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lyrics-section.full .full-playlist-title {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-align: left;
}

.lyrics-section.full .full-playlist-meta {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.lyrics-section.full .full-playlist-list {
	flex: 1;
	overflow-y: auto;
	padding: 2px 4px 0 0;
}

.lyrics-section.full .full-playlist-list::-webkit-scrollbar {
	width: 6px;
}

.lyrics-section.full .full-playlist-list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.lyrics-section.full .full-playlist-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 12px;
	border-radius: 14px;
	cursor: pointer;
	text-align: left;
	border: 1px solid transparent;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.lyrics-section.full .full-playlist-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.08);
	transform: translateX(-1px);
}

.lyrics-section.full .full-playlist-item.active {
	background: linear-gradient(90deg, rgba(255, 107, 107, 0.18), rgba(255, 107, 107, 0.08));
	border-color: rgba(255, 107, 107, 0.35);
	box-shadow: 0 10px 26px rgba(255, 107, 107, 0.08);
}

.lyrics-section.full .full-playlist-index {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.58);
	background: rgba(255, 255, 255, 0.06);
	line-height: 1;
}

.lyrics-section.full .full-playlist-item.active .full-playlist-index {
	color: #fff;
	background: rgba(255, 107, 107, 0.9);
	box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.14);
}

.lyrics-section.full .full-playlist-info {
	min-width: 0;
	flex: 1;
}

.lyrics-section.full .full-playlist-name {
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-word;
}

.lyrics-section.full .full-playlist-artist {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 4px;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lyrics-section.full .full-playlist-tail {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	color: rgba(255, 255, 255, 0.22);
	font-size: 12px;
}

.lyrics-section.full .full-playlist-item.active .full-playlist-tail {
	color: rgba(255, 107, 107, 0.92);
}

.lyrics-section.full .full-playlist-empty {
	padding: 28px 12px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 14px;
}

.lyrics-section.full .lyrics-container {
	height: 100%;
	overflow-y: auto;
	padding: clamp(8px, 1.5vh, 18px) clamp(6px, 1vw, 16px);
	margin: 0;
	mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
	-webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
	text-align: center;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	flex: 1;
	min-height: 0;
	scroll-behavior: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-padding: 35% 0;
}

.lyrics-section.full .lyrics-container::-webkit-scrollbar {
	display: none;
}

.lyrics-section.full .lyric-line {
	padding: clamp(9px, 1.15vh, 14px) clamp(16px, 1.8vw, 28px);
	font-size: 0.86em;
	opacity: 0.6;
	margin-bottom: 4px;
	text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
	transition: 
		opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
		transform 0.36s cubic-bezier(0.34, 1.15, 0.64, 1),
		background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
		box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
		color 0.3s ease,
		letter-spacing 0.36s ease,
		filter 0.32s ease;
	border-radius: 10px;
	line-height: 1.5;
	width: 100%;
	max-width: 1040px;
	box-sizing: border-box;
	transform-origin: center;
	position: relative;
	letter-spacing: 0.2px;
	color: rgba(255, 255, 255, 0.78);
	will-change: transform, opacity, filter;
}

.lyrics-section.lyric-switching .lyric-line {
	transition: none !important;
}

.lyrics-section.lyric-switching .lyrics-container {
	scroll-behavior: auto;
}

.lyrics-section.full .lyric-line:hover {
	background: none;
	opacity: 0.65;
}

.lyrics-section.full .lyric-line:not(.active) {
	opacity: 0.42;
	transform: scale(0.97);
	filter: saturate(0.8) blur(0.2px);
}

.lyrics-section.full .lyric-line:not(.active):hover {
	opacity: 0.6;
	transform: scale(0.985);
	filter: saturate(0.88) blur(0);
}

.lyrics-section.full .lyric-line.active {
	opacity: 1;
	font-size: 1.18em;
	color: #fff;
	font-weight: 700;
	width: min(100%, 1100px);
	max-width: min(1100px, calc(100vw - 32px));
	padding-left: clamp(24px, 3.2vw, 42px);
	padding-right: clamp(24px, 3.2vw, 42px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 
		0 20px 50px rgba(0, 0, 0, 0.3),
		0 0 60px rgba(255, 107, 107, 0.1);
	text-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
	transform: scale(1.03);
	letter-spacing: 0.6px;
	filter: saturate(1.1) blur(0);
	animation: lyric-glow 3.5s ease-in-out infinite;
}

@keyframes lyric-glow {
	0%, 100% { 
		box-shadow: 
			0 20px 50px rgba(0, 0, 0, 0.3),
			0 0 60px rgba(255, 107, 107, 0.1);
		text-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
	}
	50% { 
		box-shadow: 
			0 24px 56px rgba(0, 0, 0, 0.35),
			0 0 70px rgba(255, 107, 107, 0.15);
		text-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
	}
}

.lyrics-section.full .lyric-line.active::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 34px);
	height: calc(100% + 18px);
	border-radius: 16px;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 107, 107, 0.08) 42%, transparent 70%);
	filter: blur(18px);
	opacity: 0.42;
	z-index: -1;
	pointer-events: none;
	transition: opacity 0.4s ease;
	animation: before-glow 3.5s ease-in-out infinite;
}

@keyframes before-glow {
	0%, 100% { opacity: 0.42; }
	50% { opacity: 0.55; }
}

.lyrics-section.full .lyric-loading {
	font-size: 0.95em;
	padding: clamp(14px, 1.5vh, 22px) clamp(20px, 2vw, 32px);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	width: fit-content;
	margin: 14vh auto 0;
}

.lyrics-section.full .lyric-loading i {
	font-size: 1.1em;
}

.lyrics-section.full .section-title.full-toolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 16px 24px 20px;
	justify-content: flex-end;
	z-index: 1000;
	background: linear-gradient(to bottom, rgba(5, 8, 14, 0.42), rgba(5, 8, 14, 0.12), transparent);
	box-sizing: border-box;
	min-height: 58px;
}

.lyrics-section.full .player-controls {
	gap: clamp(16px, 1.8vw, 26px);
	margin-bottom: 0 !important;
}

.lyrics-section.full .control-btn.small {
	width: clamp(48px, 3.2vw, 56px);
	height: clamp(48px, 3.2vw, 56px);
	font-size: clamp(18px, 1.2vw, 22px);
}

.lyrics-section.full .control-btn.play-btn {
	width: clamp(64px, 4.2vw, 76px) !important;
	height: clamp(64px, 4.2vw, 76px) !important;
	font-size: clamp(22px, 1.6vw, 28px) !important;
}

.lyrics-section.full .section-title.full-toolbar .toolbar-left,
.lyrics-section.full .section-title.full-toolbar .toolbar-right {
	display: flex;
	align-items: center;
	gap: 10px;
}



@media (max-width: 1024px) {
	.lyrics-section.full {
		padding: 60px 22px 132px;
		font-size: 20px;
	}

	.lyrics-section.full .full-cover {
		width: clamp(170px, 28vw, 250px);
		height: clamp(170px, 28vw, 250px);
		margin-bottom: 6px;
	}

	.lyrics-section.full .lyrics-full-layout {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.lyrics-section.full .full-player-info {
		position: static;
		width: clamp(170px, 28vw, 250px);
		margin: 0 auto 12px;
		max-height: none;
		max-width: none;
	}

	.lyrics-section.full .full-song-info,
	.lyrics-section.full .full-bottom-bar {
		margin-bottom: 12px;
	}

	.lyrics-section.full .player-controls {
		gap: 14px;
	}

	.lyrics-section.full .full-bottom-bar {
		left: 22px;
		right: 22px;
		bottom: 22px;
	}

	.lyrics-section.full .full-progress-strip {
		gap: 10px;
	}

	.lyrics-section.full .full-playlist-panel {
		width: min(88vw, 360px);
		padding: 20px 14px 18px;
	}

	.lyrics-section.full .lyrics-container {
		text-align: center;
		padding: 0 4px;
		margin: 0 auto;
	}

	.lyrics-section.full .full-lyrics-main {
		padding-top: 0;
		padding-bottom: 98px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.lyrics-section.full .lyric-line {
		max-width: 96vw;
	}

	.lyrics-section.full .lyric-line.active {
		max-width: calc(100vw - 20px);
		padding-left: clamp(18px, 3vw, 28px);
		padding-right: clamp(18px, 3vw, 28px);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.error i {
	color: #ff5252;
}

.empty-state i {
	color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
	.navbar {
		padding: 6px 0;
	}

	.logo {
		width: 100%;
		justify-content: space-between;
	}

	.logo .m {
		font-size: 0;
		display: block;
	}

	.logo .m i {
		margin-right: 6px;
		color: #ddd;
		font-size: 19px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 8px;
		padding: 3px 6px;
		width: 30px;
		text-align: center;
	}

	.wrap-box {
		padding: 14px 8px;
	}

	.nav-container {
		flex-direction: column;
		gap: 6px;
		padding: 0 10px;
	}

	.main-container {
		padding: 10px;
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.search-container {
		margin: 0;
		max-width: none;
		width: 100%;
	}

	.content-section {
		min-height: 40vh;
		max-height: 54vh;
	}

	.current-cover {
		width: 120px;
		height: 120px;
	}

	.song-actions {
		margin-right: 6px;
	}

	.player-controls {
		gap: 15px;
	}

	.search-input {
		padding: 8px 8px 8px 12px;
		font-size: 13px;
	}

	.search-results {
		max-height: 60vh;
	}

	.source-select {
		padding: 8px 3px;
		font-size: 13px;
		width: 100px;
	}

	.search-btn {
		padding: 8px 12px;
		font-size: 13px;
	}

	.song-item {
		padding: 6px 8px;
	}

	.song-name {
		font-size: 14px;
		font-weight: normal;
	}

	.song-duration {
		display: none;
	}

	.action-btn {
		width: 26px;
		height: 26px;
	}

	.current-song {
		margin-bottom: 15px;
	}

	.download-container {
		margin-bottom: 0;
	}

	.list-section {
		height: 70vh;
	}

	.lyrics-section {
		height: 50vh;
	}

	.flt-tool {
		display: flex;
		position: fixed;
		top: 43%;
		right: 4px;
		flex-direction: column;
		gap: 6px;
		z-index: 99;
		padding: 7px 4px;
		border-radius: 6px;
		background: #333;
		opacity: .7;
	}

	.flt-tool i {
		color: #ddd;
		font-size: 16px;
	}

	.lyrics-section.full {
		font-size: 18px;
	}

	.section-title .play-ctr i {
		margin: 0 10px;
	}
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	background: transparent;
}

.dialog {
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.dialog-cont {
	max-width: 90%;
	max-height: 84vh;
	overflow: auto;
	background: #fff;
	border-radius: 12px;
	padding: 10px;
	color: #333;
}

