*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--bg:     #060114;
	--bg2:    #0d0225;
	--cyan:   #00f2fe;
	--purple: #7000ff;
	--text:   #ffffff;
	--dim:    rgba(255,255,255,0.4);
	--sep:    rgba(255,255,255,0.07);
	--h:      80px;
}

html, body {
	background: transparent;
	height: var(--h);
	overflow: hidden;
}

#player {
	position: relative;
	width: 100%;
	height: var(--h);
	background: linear-gradient(90deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'DM Sans', sans-serif;
	overflow: hidden;
}

#player::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--purple) 30%, var(--cyan) 50%, var(--purple) 70%, transparent);
	opacity: 0.5;
	z-index: 3;
}

#player::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), var(--purple), transparent);
	background-size: 200% 100%;
	animation: bslide 5s linear infinite;
	z-index: 3;
}

@keyframes bslide {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.eq-banner {
	position: absolute;
	bottom: 2px;
	left: 0; right: 0;
	height: calc(var(--h) - 4px);
	display: flex;
	align-items: flex-end;
	gap: 1.5px;
	padding: 0 2px;
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: opacity 1s ease;
}

#player.on .eq-banner { opacity: 1; }

.eq-banner span {
	flex: 1;
	border-radius: 1px 1px 0 0;
	height: 3px;
	animation: eqbg var(--dur, 0.8s) ease-in-out infinite alternate;
	animation-delay: var(--delay, 0s);
	animation-play-state: paused;
	background: linear-gradient(to top, var(--purple), var(--cyan));
	opacity: 0.1;
}

#player.on .eq-banner span { animation-play-state: running; }

@keyframes eqbg {
	0%   { height: 3px;  opacity: 0.06; }
	100% { height: 45%;  opacity: 0.13; }
}

.ripple {
	position: absolute;
	width: 0; height: 0;
	pointer-events: none;
	z-index: 2;
}

.ripple > div {
	position: absolute;
	border-radius: 50%;
	top: 0; left: 0;
	transform: translate(-50%, -50%) scale(1);
	opacity: 0.1;
}

.ripple > div:nth-child(1)  { width:  68px; height:  68px; border: 1px solid var(--cyan); }
.ripple > div:nth-child(2)  { width:  90px; height:  90px; border: 1px solid var(--cyan); }
.ripple > div:nth-child(3)  { width: 114px; height: 114px; border: 1px solid var(--cyan); }
.ripple > div:nth-child(4)  { width: 142px; height: 142px; border: 1px solid var(--cyan); }
.ripple > div:nth-child(5)  { width: 178px; height: 178px; border: 1px solid var(--purple); }
.ripple > div:nth-child(6)  { width: 224px; height: 224px; border: 1px solid var(--purple); }
.ripple > div:nth-child(7)  { width: 292px; height: 292px; border: 1px solid var(--purple); }
.ripple > div:nth-child(8)  { width: 396px; height: 396px; border: 1px solid var(--purple); }
.ripple > div:nth-child(9)  { width: 560px; height: 560px; border: 1px solid var(--purple); opacity: 0.05; }
.ripple > div:nth-child(10) { width: 800px; height: 800px; border: 1px solid var(--purple); opacity: 0.03; }

#player.on .ripple > div:nth-child(1)  { animation: rpl 2.8s 0.00s ease-out infinite; }
#player.on .ripple > div:nth-child(2)  { animation: rpl 2.8s 0.28s ease-out infinite; }
#player.on .ripple > div:nth-child(3)  { animation: rpl 2.8s 0.56s ease-out infinite; }
#player.on .ripple > div:nth-child(4)  { animation: rpl 2.8s 0.84s ease-out infinite; }
#player.on .ripple > div:nth-child(5)  { animation: rpl 3.4s 1.10s ease-out infinite; }
#player.on .ripple > div:nth-child(6)  { animation: rpl 3.4s 1.40s ease-out infinite; }
#player.on .ripple > div:nth-child(7)  { animation: rpl 4.0s 1.70s ease-out infinite; }
#player.on .ripple > div:nth-child(8)  { animation: rpl 4.0s 2.00s ease-out infinite; }
#player.on .ripple > div:nth-child(9)  { animation: rpl 4.6s 2.30s ease-out infinite; }
#player.on .ripple > div:nth-child(10) { animation: rpl 4.6s 2.60s ease-out infinite; }

@keyframes rpl {
	0%   { transform: translate(-50%,-50%) scale(.8);  opacity: .6; }
	60%  { opacity: .08; }
	100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0; }
}

.belt {
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

.zone-left {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
	padding-right: 20px;
}

.info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	text-align: right;
	width: 100%;
}

.live-row {
	display: none;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	height: 14px;
}

.live-row.visible { display: flex; }

.live-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #ff2055;
	flex-shrink: 0;
	order: 2;
	animation: dpulse 1.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes dpulse {
	0%   { opacity: 1;  transform: scale(1);   box-shadow: 0 0 0 0px rgba(255,32,85,.7), 0 0 5px rgba(255,32,85,.5); }
	45%  { opacity: .5; transform: scale(1.2); box-shadow: 0 0 0 5px rgba(255,32,85,0),  0 0 10px rgba(255,32,85,0); }
	100% { opacity: 1;  transform: scale(1);   box-shadow: 0 0 0 0px rgba(255,32,85,.7), 0 0 5px rgba(255,32,85,.5); }
}

.live-label {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--cyan);
	font-family: 'Syne', sans-serif;
	white-space: nowrap;
	order: 1;
}

.title-wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	direction: ltr;
}

.title-wrap::after {
	content: '';
	position: absolute;
	top: 0; bottom: 0; right: 0;
	width: 32px;
	background: linear-gradient(to left, var(--bg2), transparent);
	z-index: 1;
	pointer-events: none;
}

.title-text {
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	white-space: nowrap;
	display: inline-block;
	letter-spacing: .2px;
}

.title-text.sc { animation: stxt linear infinite; }

@keyframes stxt {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.zone-center {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.cover {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #100430 center/cover no-repeat;
	border: 1.5px solid rgba(0,242,254,0.25);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(112,0,255,.45);
	font-size: 18px;
	transition: border-color .4s, box-shadow .4s;
	overflow: hidden;
	background-clip: padding-box;
}

.cover::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle at 38% 32%, rgba(255,255,255,.1), transparent 55%);
	pointer-events: none;
}

.cover i {
	position: relative;
	z-index: 1;
	transform: translateY(1px);
}

#player.on .cover {
	border-color: var(--cyan);
	animation: cover-pulse 2.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes cover-pulse {
	0%   { box-shadow: 0 0  0px rgba(0,242,254,0),  0 0  0px rgba(112,0,255,0); }
	45%  { box-shadow: 0 0 16px rgba(0,242,254,.5), 0 0 32px rgba(112,0,255,.35), 0 0 56px rgba(0,242,254,.1); }
	100% { box-shadow: 0 0  0px rgba(0,242,254,0),  0 0  0px rgba(112,0,255,0); }
}

.play-btn {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1.5px solid rgba(0,242,254,0.5);
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--cyan);
	font-size: 16px;
	line-height: 1;
	transition: background .25s, color .25s, box-shadow .3s, border-color .25s, transform .25s;
	flex-shrink: 0;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	overflow: hidden;
	background-clip: padding-box;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}

.play-btn:hover, #player.on .play-btn {
	background: linear-gradient(135deg, var(--cyan), var(--purple));
	color: #fff;
	border-color: transparent;
	background-clip: padding-box;
}

#player.on .play-btn {
	animation: btn-breathe 2.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes btn-breathe {
	0%   { box-shadow: 0 0  6px rgba(0,242,254,.25), 0 0 12px rgba(112,0,255,.2);  transform: scale(1); }
	45%  { box-shadow: 0 0 20px rgba(0,242,254,.8),  0 0 44px rgba(112,0,255,.55), 0 0 70px rgba(0,242,254,.2); transform: scale(1.05); }
	100% { box-shadow: 0 0  6px rgba(0,242,254,.25), 0 0 12px rgba(112,0,255,.2);  transform: scale(1); }
}

.play-btn .fa-play  { transform: translateX(2px); }
.play-btn .fa-pause { display: none; transform: none; }
#player.on .play-btn .fa-play  { display: none; }
#player.on .play-btn .fa-pause { display: block; }

.zone-right {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 20px;
	justify-content: flex-start;
}

.vol-icon {
	color: var(--dim);
	font-size: 13px;
	width: 14px;
	text-align: center;
	flex-shrink: 0;
	line-height: 1;
}

.vol-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 90px;
	height: 3px;
	border-radius: 2px;
	outline: none;
	cursor: pointer;
	background: rgba(255,255,255,0.1);
	background-image: linear-gradient(var(--cyan), var(--cyan));
	background-repeat: no-repeat;
	background-size: 80% 100%;
}

.vol-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 13px; height: 13px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 6px var(--cyan);
	cursor: pointer;
	transition: transform .15s;
}

.vol-slider::-webkit-slider-thumb:hover { transform: scale(1.4); }

.vol-slider::-moz-range-thumb {
	width: 13px; height: 13px;
	border-radius: 50%;
	background: #fff;
	border: none;
	box-shadow: 0 0 6px var(--cyan);
	cursor: pointer;
}

@media (max-width: 600px) {
	.zone-right { display: none; }
	.belt { grid-template-columns: 1fr auto; }
	.zone-left { padding-right: 14px; }
}

@media (max-width: 450px) {
	.cover { width: 44px; height: 44px; font-size: 16px; }
	.play-btn { width: 48px; height: 48px; font-size: 15px; }
	.live-label { font-size: 8px; letter-spacing: 1.5px; }
	.title-text { font-size: 13px; }
	.zone-center { gap: 8px; }
}

@media (max-width: 340px) {
	.cover { display: none; }
}