:root {
	color-scheme: dark;
	--background: #030914;
	--surface: rgba(12, 25, 44, 0.76);
	--surface-light: rgba(19, 36, 61, 0.8);
	--border: rgba(120, 166, 235, 0.16);
	--text: #f7f9ff;
	--secondary-text: #a2b3ce;
	--muted-text: #738bab;
	--blue: #168cff;
	--cyan: #22c6ff;
	--green: #20e39a;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--background);
}

body {
	min-height: 100vh;
	margin: 0;
	overflow-x: hidden;
	color: var(--text);
	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	background:
		radial-gradient(
			circle at 85% 20%,
			rgba(0, 115, 255, 0.12),
			transparent 31%
		),
		radial-gradient(
			circle at 4% 42%,
			rgba(231, 101, 35, 0.15),
			transparent 30%
		),
		linear-gradient(120deg, #080a11 0%, #07111e 48%, #020914 100%);
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -3;
	opacity: 0.13;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
	background-size: 34px 34px;
}

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.background-glow {
	position: fixed;
	z-index: -2;
	border-radius: 999px;
	filter: blur(110px);
	pointer-events: none;
}

.background-glow-left {
	top: 160px;
	left: -260px;
	width: 560px;
	height: 560px;
	background: rgba(224, 101, 38, 0.24);
}

.background-glow-right {
	top: 50px;
	right: -330px;
	width: 600px;
	height: 600px;
	background: rgba(0, 112, 255, 0.18);
}

.header,
main,
footer {
	width: min(1320px, calc(100% - 48px));
	margin-right: auto;
	margin-left: auto;
}

.header {
	min-height: 110px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	border-bottom: 1px solid rgba(114, 151, 211, 0.09);
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	color: inherit;
	text-decoration: none;
}

.logo-wave {
	height: 54px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.logo-wave i {
	display: block;
	width: 5px;
	border-radius: 8px;
	background: linear-gradient(180deg, #21d6ff, #2761ff);
	box-shadow: 0 0 15px rgba(25, 149, 255, 0.55);
}

.logo-wave i:nth-child(1) {
	height: 21px;
}
.logo-wave i:nth-child(2) {
	height: 39px;
}
.logo-wave i:nth-child(3) {
	height: 53px;
}
.logo-wave i:nth-child(4) {
	height: 35px;
}
.logo-wave i:nth-child(5) {
	height: 18px;
}

.logo-text strong,
.logo-text small {
	display: block;
}

.logo-text strong {
	font-size: 27px;
	letter-spacing: -0.7px;
}

.logo-text small {
	margin-top: 3px;
	color: #b1bdd0;
	font-size: 13px;
}

.navigation {
	display: flex;
	align-items: center;
	gap: 12px;
}

.navigation a {
	padding: 12px 18px;
	color: #b6c4dc;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 999px;
	transition: 0.2s ease;
}

.navigation a:hover,
.navigation a.active {
	color: #eef5ff;
	border-color: rgba(73, 131, 229, 0.18);
	background: linear-gradient(
		180deg,
		rgba(46, 88, 173, 0.3),
		rgba(21, 43, 84, 0.24)
	);
	box-shadow: 0 10px 28px rgba(0, 66, 181, 0.14);
}

.navigation a.active {
	color: #a9ceff;
}

.live-status {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 17px;
	color: #e1ebfc;
	font-size: 13px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(9, 23, 41, 0.7);
	backdrop-filter: blur(20px);
}

.live-status i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #e32020;
	box-shadow: 0 0 15px #e32020;
}

main {
	margin-top: 39px;
}

.hero {
	display: grid;
	grid-template-columns: 400px minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}

.left-column {
	min-width: 0;
}

.cover {
	position: relative;
	width: 100%;
	aspect-ratio: 1.06;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 25px;
	background:
		radial-gradient(
			circle at 67% 68%,
			rgba(255, 139, 48, 0.86),
			transparent 12%
		),
		radial-gradient(
			circle at 53% 45%,
			rgba(111, 44, 70, 0.55),
			transparent 35%
		),
		linear-gradient(180deg, #3d3655 0%, #a85c42 49%, #172439 100%);
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cover::before {
	content: '';
	position: absolute;
	right: -5%;
	bottom: 16%;
	left: -5%;
	height: 24%;
	opacity: 0.75;
	background: linear-gradient(
		90deg,
		transparent 0 4%,
		rgba(5, 14, 25, 0.9) 4% 7%,
		transparent 7% 10%,
		rgba(5, 14, 25, 0.9) 10% 13%,
		transparent 13% 17%,
		rgba(5, 14, 25, 0.9) 17% 20%,
		transparent 20% 23%,
		rgba(5, 14, 25, 0.9) 23% 27%,
		transparent 27% 31%,
		rgba(5, 14, 25, 0.9) 31% 36%,
		transparent 36% 42%,
		rgba(5, 14, 25, 0.9) 42% 46%,
		transparent 46% 52%,
		rgba(5, 14, 25, 0.9) 52% 57%,
		transparent 57% 63%,
		rgba(5, 14, 25, 0.9) 63% 68%,
		transparent 68% 73%,
		rgba(5, 14, 25, 0.9) 73% 77%,
		transparent 77% 82%,
		rgba(5, 14, 25, 0.9) 82% 86%,
		transparent 86%
	);
	clip-path: polygon(
		0 75%,
		8% 55%,
		15% 70%,
		22% 35%,
		30% 68%,
		38% 46%,
		47% 72%,
		55% 30%,
		65% 68%,
		74% 44%,
		82% 70%,
		91% 45%,
		100% 72%,
		100% 100%,
		0 100%
	);
}

.cover-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 73% 59%, rgba(255, 180, 80, 0.8), transparent 9%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.45));
}

.cover-copy {
	position: absolute;
	z-index: 4;
	top: 39px;
	left: 39px;
	display: flex;
	flex-direction: column;
	color: #ffd7a5;
	font-family: 'Brush Script MT', 'Segoe Script', cursive;
	font-size: 41px;
	font-style: italic;
	line-height: 0.92;
	text-shadow: 0 3px 18px rgba(38, 7, 4, 0.58);
	transform: rotate(-4deg);
}

.cover-copy span:nth-child(3) {
	margin-top: 9px;
}

.cover-copy i {
	width: 118px;
	height: 2px;
	margin-top: 11px;
	background: #ffd59f;
	transform: rotate(-5deg);
	box-shadow: 0 0 10px rgba(255, 194, 128, 0.55);
}

.listener-silhouette {
	position: absolute;
	z-index: 3;
	right: 42px;
	bottom: 0;
	width: 205px;
	height: 275px;
}

.listener-silhouette .head {
	position: absolute;
	top: 43px;
	left: 73px;
	width: 68px;
	height: 79px;
	border-radius: 48% 48% 44% 44%;
	background: #08090f;
}

.listener-silhouette .hair {
	position: absolute;
	top: 34px;
	left: 48px;
	width: 116px;
	height: 171px;
	border-radius: 51% 51% 42% 42%;
	background: repeating-linear-gradient(92deg, #08080d 0 6px, #171019 7px 9px);
	clip-path: polygon(25% 0, 74% 0, 100% 100%, 0 100%);
}

.listener-silhouette .body-shape {
	position: absolute;
	bottom: -36px;
	left: -15px;
	width: 230px;
	height: 173px;
	border-radius: 50% 50% 0 0;
	background: linear-gradient(180deg, #08090d, #020307);
}

.headphones-left,
.headphones-right {
	position: absolute;
	z-index: 4;
	top: 68px;
	width: 20px;
	height: 53px;
	border: 6px solid #05070b;
	border-radius: 16px;
}

.headphones-left {
	left: 48px;
}

.headphones-right {
	right: 39px;
}

.headphones-top {
	position: absolute;
	z-index: 4;
	top: 39px;
	left: 54px;
	width: 101px;
	height: 66px;
	border: 8px solid #06080c;
	border-bottom: 0;
	border-radius: 70px 70px 0 0;
}

.city {
	position: absolute;
	z-index: 2;
	right: -10px;
	bottom: 56px;
	left: -10px;
	height: 80px;
	opacity: 0.56;
	background:
		radial-gradient(circle, #f6a34a 0 2px, transparent 3px) 0 0 / 20px 19px,
		linear-gradient(180deg, transparent, rgba(2, 7, 14, 0.91));
	filter: blur(0.6px);
}

.cover-volume {
	height: 70px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 0 18px;
}

.mute-button {
	position: relative;
	width: 24px;
	height: 24px;
	padding: 0;
	color: #eef5ff;
	cursor: pointer;
	border: 0;
	background: none;
}

.mute-button svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.mute-button.is-muted {
	color: #7f8794;
}

.mute-button.is-muted::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	transform: translate(-50%, -50%) rotate(45deg);
	pointer-events: none;
}

.cover-volume input {
	width: 260px;
	height: 4px;
	cursor: pointer;
	accent-color: #20a6ff;
}

.player-column {
	min-width: 0;
}

.player-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.on-air {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 9px 14px;
	color: #23aaff;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	border: 1px solid rgba(24, 127, 255, 0.13);
	border-radius: 999px;
	background: rgba(0, 107, 255, 0.13);
}

.mini-wave {
	height: 14px;
	display: flex;
	align-items: center;
	gap: 2px;
}

.mini-wave i {
	width: 2px;
	border-radius: 3px;
	background: #20b9ff;
	animation: miniWave 0.75s ease-in-out infinite alternate;
}

.mini-wave i:nth-child(1) {
	height: 6px;
}
.mini-wave i:nth-child(2) {
	height: 13px;
	animation-delay: 0.12s;
}
.mini-wave i:nth-child(3) {
	height: 9px;
	animation-delay: 0.24s;
}
.mini-wave i:nth-child(4) {
	height: 5px;
	animation-delay: 0.36s;
}

.genres {
	display: flex;
	justify-content: flex-end;
	gap: 7px;
	flex-wrap: wrap;
}

.genres span {
	padding: 8px 13px;
	color: #c7d4e8;
	font-size: 12px;
	white-space: nowrap;
	border: 1px solid rgba(122, 159, 216, 0.12);
	border-radius: 999px;
	background: rgba(25, 38, 59, 0.72);
}

.track-information {
	margin-top: 20px;
}

.track-information h1,
.track-information h2 {
	overflow-wrap: anywhere;
}

.track-information h1 {
	margin: 0;
	font-size: clamp(29px, 3vw, 46px);
	line-height: 1.09;
	letter-spacing: -1.3px;
}

.track-information h2 {
	margin: 7px 0 0;
	color: #cbd7ea;
	font-size: clamp(23px, 2.2vw, 34px);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.7px;
}

.track-information p {
	margin: 17px 0 0;
	color: #7192c1;
	font-size: 16px;
}

.visualizer {
	height: 108px;
	margin: 23px 0 19px;
	display: flex;
	align-items: center;
	gap: 3px;
	overflow: hidden;
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 4%,
		#000 95%,
		transparent
	);
}

.visualizer span {
	flex: 1;
	min-width: 2px;
	height: var(--height);
	opacity: 0.37;
	border-radius: 5px;
	background: linear-gradient(180deg, #ff28de, #5b08ff);
	box-shadow: 0 0 11px rgb(253 18 255 / 42%);
	transform-origin: center;
}

body.playing .visualizer span {
	opacity: 0.95;
	animation: visualizerWave var(--speed) ease-in-out infinite alternate;
	animation-delay: var(--delay);
}

.player-controls {
	display: flex;
	align-items: center;
	gap: 25px;
}

.round-button {
	position: relative;
	width: 61px;
	height: 61px;
	flex: 0 0 auto;
	padding: 0;
	color: #e2ecfa;
	cursor: pointer;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: linear-gradient(
		145deg,
		rgba(28, 47, 77, 0.85),
		rgba(12, 25, 44, 0.85)
	);
	transition: 0.2s ease;
}

.round-button:hover {
	transform: translateY(-2px);
	border-color: rgba(61, 157, 255, 0.38);
}

.round-button svg {
	position: absolute;
	inset: 17px;
	width: 27px;
	height: 27px;
	fill: currentColor;
}

.play-button {
	position: relative;
	width: 92px;
	height: 92px;
	flex: 0 0 auto;
	padding: 0;
	color: #fff;
	cursor: pointer;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(150deg, #22bfff, #155cff);
	box-shadow:
		0 18px 42px rgba(0, 92, 255, 0.38),
		0 0 30px rgba(16, 162, 255, 0.3);
	transition: 0.2s ease;
}

.play-button:hover {
	transform: scale(1.035);
	filter: brightness(1.08);
}

.play-button svg {
	position: absolute;
	inset: 27px;
	width: 38px;
	height: 38px;
	fill: currentColor;
}

.pause-icon {
	display: none;
}

body.playing .play-icon {
	display: none;
}

body.playing .pause-icon {
	display: block;
}

.quality {
	min-height: 50px;
	display: flex;
	align-items: center;
	gap: 9px;
	margin-left: auto;
	padding: 0 16px;
	color: #dce8fa;
	font-size: 12px;
	white-space: nowrap;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(8, 21, 39, 0.76);
}

.quality-bars {
	height: 17px;
	display: flex;
	align-items: flex-end;
	gap: 2px;
}

.quality-bars i {
	width: 3px;
	border-radius: 2px;
	background: #1ab4ff;
}

.quality-bars i:nth-child(1) {
	height: 5px;
}
.quality-bars i:nth-child(2) {
	height: 9px;
}
.quality-bars i:nth-child(3) {
	height: 13px;
}
.quality-bars i:nth-child(4) {
	height: 17px;
}

.listeners {
	min-height: 71px;
	min-width: 176px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 10px 18px;
	border: 1px solid rgba(29, 133, 222, 0.22);
	border-radius: 18px;
	background: linear-gradient(
		135deg,
		rgba(8, 35, 62, 0.91),
		rgba(7, 25, 45, 0.84)
	);
}

.listeners svg {
	width: 34px;
	height: 34px;
	fill: #1eb4ff;
	filter: drop-shadow(0 0 9px rgba(24, 160, 255, 0.42));
}

.listeners small,
.listeners strong {
	display: block;
}

.listeners small {
	color: #8ba4c9;
	font-size: 11px;
	white-space: nowrap;
}

.listeners strong {
	margin-top: 2px;
	font-size: 22px;
}

.features {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.features article {
	min-height: 93px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: linear-gradient(
		135deg,
		rgba(29, 44, 68, 0.75),
		rgba(7, 21, 39, 0.75)
	);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
	backdrop-filter: blur(18px);
}

.feature-icon {
	width: 49px;
	height: 49px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	color: #2bc5ff;
	font-size: 23px;
	border-radius: 50%;
	background: linear-gradient(
		145deg,
		rgba(39, 114, 255, 0.28),
		rgba(5, 87, 212, 0.15)
	);
	box-shadow: 0 0 26px rgba(17, 112, 255, 0.17);
}

.features strong,
.features span {
	display: block;
}

.features strong {
	font-size: 14px;
}

.features span {
	margin-top: 5px;
	color: #90a5c5;
	font-size: 12px;
}

.about {
	margin-top: 21px;
	padding: 27px 31px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 45px;
	border: 1px solid var(--border);
	border-radius: 21px;
	background: linear-gradient(
		135deg,
		rgba(11, 22, 38, 0.84),
		rgba(6, 18, 34, 0.68)
	);
}

.about h3 {
	margin: 0 0 10px;
	font-size: 24px;
}

.about p {
	max-width: 830px;
	margin: 5px 0 0;
	color: #a0b1cb;
	font-size: 14px;
	line-height: 1.58;
}

.quote {
	flex: 0 0 auto;
	padding-right: 20px;
	color: #78b9ff;
	font-family: 'Brush Script MT', 'Segoe Script', cursive;
	font-size: 31px;
	font-style: italic;
	line-height: 1.05;
	text-align: center;
	transform: rotate(-7deg);
	text-shadow: 0 0 21px rgba(36, 133, 255, 0.38);
}

footer {
	min-height: 86px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	color: #6f88ae;
	font-size: 12px;
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-links a,
.footer-links button {
	padding: 10px 16px;
	color: #b6c6dd;
	cursor: pointer;
	text-decoration: none;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(9, 22, 39, 0.73);
}

@keyframes miniWave {
	to {
		transform: scaleY(0.4);
	}
}

@keyframes visualizerWave {
	from {
		transform: scaleY(0.32);
	}

	to {
		transform: scaleY(1);
	}
}

@media (max-width: 1120px) {
	.header {
		grid-template-columns: 1fr auto;
	}

	.navigation {
		display: none;
	}

	.hero {
		grid-template-columns: 340px minmax(0, 1fr);
		gap: 38px;
	}

	.player-controls {
		gap: 15px;
		flex-wrap: wrap;
	}

	.quality {
		margin-left: 0;
	}

	.features {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 780px) {
	.header,
	main,
	footer {
		width: min(100% - 28px, 620px);
	}

	.header {
		min-height: 88px;
	}

	.logo-text strong {
		font-size: 21px;
	}

	.logo-text small {
		display: none;
	}

	.live-status {
		padding: 9px 12px;
		font-size: 12px;
	}

	main {
		margin-top: 27px;
	}

	.hero {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.cover {
		width: min(100%, 430px);
		margin: auto;
	}

	.cover-volume {
		justify-content: center;
	}

	.mobile-play-button {
		display: block;
	}

	.player-controls .play-button {
		display: none;
	}

	.cover-volume {
		gap: 12px;
		padding-right: 4px;
		padding-left: 4px;
	}

	.player-top {
		display: block;
		text-align: center;
	}

	.genres {
		margin-top: 14px;
		justify-content: center;
	}

	.track-information {
		text-align: center;
	}

	.visualizer {
		height: 82px;
	}

	.player-controls {
		justify-content: center;
	}

	.quality {
		margin-left: 0;
	}

	.features {
		grid-template-columns: 1fr;
	}

	.about {
		display: block;
		text-align: center;
	}

	.quote {
		margin-top: 28px;
		padding: 0;
	}

	footer {
		padding: 23px 0;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.logo-wave {
		transform: scale(0.84);
		transform-origin: left center;
		margin-right: -8px;
	}

	.live-status {
		font-size: 0;
	}

	.live-status::after {
		content: 'Live';
		font-size: 12px;
	}

	.cover-copy {
		top: 29px;
		left: 29px;
		font-size: 33px;
	}

	.listener-silhouette {
		right: 5px;
		transform: scale(0.9);
		transform-origin: bottom right;
	}

	.cover-volume input {
		width: min(245px, calc(100vw - 100px));
	}

	.genres span:nth-child(n + 4) {
		display: none;
	}

	.play-button {
		width: 80px;
		height: 80px;
	}

	.play-button svg {
		inset: 23px;
		width: 34px;
		height: 34px;
	}

	.quality,
	.listeners {
		min-height: 52px;
	}

	.listeners {
		min-width: 151px;
	}

	.footer-links {
		flex-wrap: wrap;
		justify-content: center;
	}
}

.mobile-play-button {
	display: none;
	position: relative;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	padding: 0;
	color: #fff;
	cursor: pointer;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(150deg, #22bfff, #155cff);
	box-shadow:
		0 10px 28px rgba(0, 92, 255, 0.38),
		0 0 22px rgba(16, 162, 255, 0.28);
}

.mobile-play-button svg {
	position: absolute;
	inset: 16px;
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.mobile-play-button .pause-icon {
	display: none;
}

body.playing .mobile-play-button .play-icon {
	display: none;
}

body.playing .mobile-play-button .pause-icon {
	display: block;
}

/* Mobile player controls вЂ” final override */
@media (max-width: 780px) {
	.mobile-play-button {
		display: block;
	}

	.player-controls .play-button {
		display: none;
	}
}

/* iOS/mobile: РіСЂРѕРјРєРѕСЃС‚СЊ СЂРµРіСѓР»РёСЂСѓРµС‚СЃСЏ РєРЅРѕРїРєР°РјРё СѓСЃС‚СЂРѕР№СЃС‚РІР° */
@media (max-width: 780px) {
	.cover-volume input[type='range'] {
		display: none;
	}

	.cover-volume {
		justify-content: center;
		gap: 20px;
	}
}

/* Mobile: Play РїРѕ С†РµРЅС‚СЂСѓ РѕР±Р»РѕР¶РєРё, РіСЂРѕРјРєРѕСЃС‚СЊ СЃРєСЂС‹С‚Р° */
@media (max-width: 780px) {
	.cover {
		position: relative;
	}

	.cover .mobile-play-button {
		display: block;
		position: absolute;
		z-index: 20;
		top: 50%;
		left: 50%;
		width: 82px;
		height: 82px;
		transform: translate(-50%, -50%);
		box-shadow:
			0 18px 42px rgba(0, 92, 255, 0.5),
			0 0 35px rgba(16, 162, 255, 0.42);
	}

	.cover .mobile-play-button:hover {
		transform: translate(-50%, -50%);
	}

	.cover .mobile-play-button svg {
		inset: 23px;
		width: 36px;
		height: 36px;
	}

	.cover-volume {
		display: none;
	}

	.player-controls .play-button {
		display: none;
	}
}

.cover::before,
.cover-overlay,
.cover-copy,
.listener-silhouette,
.city {
	display: none;
}

/* =========================================================
   РљР°РЅР°Р»С‹ Dobreff Radio
   ========================================================= */

a.logo,
.logo {
	display: inline-flex;
	width: max-content;
	max-width: max-content;
	flex: 0 0 auto;
	align-self: center;
}

/* РќР°РІРёРіР°С†РёСЏ РєР°РЅР°Р»РѕРІ */
.channel-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-left: auto;
	flex-wrap: nowrap;
}

.channel-button {
	appearance: none;
	border: 1px solid rgba(91, 151, 255, 0.28);
	border-radius: 999px;
	background: transparent;
	color: #c8d5eb;
	min-height: 46px;
	padding: 10px 18px;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.channel-button:hover {
	color: #ffffff;
	border-color: rgba(47, 143, 255, 0.7);
	background: rgba(24, 94, 190, 0.16);
	transform: translateY(-1px);
}

.channel-button.active,
.channel-button[aria-pressed='true'] {
	color: #8fc5ff;
	border-color: rgba(46, 133, 255, 0.62);
	background: rgba(18, 67, 139, 0.34);
	box-shadow:
		inset 0 0 0 1px rgba(48, 135, 255, 0.08),
		0 8px 28px rgba(0, 76, 180, 0.12);
}

.channel-button:focus-visible {
	outline: 2px solid #43a5ff;
	outline-offset: 3px;
}

/* РР·РѕР±СЂР°Р¶РµРЅРёРµ РєР°РЅР°Р»Р° СѓРїСЂР°РІР»СЏРµС‚СЃСЏ JavaScript */
.cover {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: background-image 0.25s ease;
}

@media (max-width: 1100px) {
	.header {
		flex-wrap: wrap;
		gap: 16px;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.channel-nav {
		order: 3;
		width: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 4px;
		scrollbar-width: thin;
	}

	.channel-button {
		flex: 0 0 auto;
	}
}

@media (max-width: 780px) {
	.channel-nav {
		gap: 8px;
		margin-left: 0;
	}

	.channel-button {
		min-height: 42px;
		padding: 9px 14px;
		font-size: 14px;
	}
}

/* ===== Blue live visualizer ===== */

.visualizer {
	height: 108px;
	margin: 23px 0 19px;
	display: flex;
	align-items: flex-end;
	gap: 3px;
	overflow: hidden;
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 4%,
		#000 96%,
		transparent
	);
}

.visualizer span {
	flex: 1;
	min-width: 2px;
	height: var(--height);
	opacity: 0.42;
	border-radius: 4px 4px 2px 2px;
	background: linear-gradient(180deg, #ff63ee 0%, #ff20c9 48%, #6716ff 100%);
	box-shadow: 0 0 7px rgb(255 32 184 / 28%);
	transform: scaleY(0.38);
	transform-origin: bottom center;
}

body.playing .visualizer span {
	opacity: 0.92;
	animation: blueVisualizerWave var(--speed) ease-in-out infinite alternate;
	animation-delay: var(--delay);
}

@keyframes blueVisualizerWave {
	0% {
		transform: scaleY(0.28);
		opacity: 0.58;
	}
	35% {
		transform: scaleY(0.72);
		opacity: 0.82;
	}
	70% {
		transform: scaleY(1);
		opacity: 1;
	}
	100% {
		transform: scaleY(0.46);
		opacity: 0.72;
	}
}

.online-product-inventory-icon {
	position: relative;
	width: 8px;
	height: 8px;
	border-radius: 100px;
	background-color: #54c63a;
}

.online-product-inventory-icon:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	background: #54c63a;
	border-radius: 100%;
	animation: online-inventory-pulse 2s linear infinite;
}

.online-product-inventory-icon.online-no-stock,
.online-product-inventory-icon.online-no-stock:before {
	background: #d9534f;
}

@keyframes online-inventory-pulse {
	0% {
		opacity: 0.5;
	}

	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}

/* === NEW WEB AUDIO VISUALIZER CSS START === */

body.web-audio-visualizer .visualizer {
	align-items: flex-end;
}

body.web-audio-visualizer .visualizer span,
body.playing.web-audio-visualizer .visualizer span {
	animation: none !important;
	transform: none !important;
	transform-origin: bottom center;
	transition: none;
	will-change: height, opacity;
}

body:not(.playing).web-audio-visualizer .visualizer span {
	height: 5% !important;
	opacity: 0.34 !important;
}

/* === NEW WEB AUDIO VISUALIZER CSS END === */

/* MOBILE CHANNEL NAV FULL VIEWPORT */
@media (max-width: 1100px) {
	.channel-nav {
		width: calc(100% + 120px);
		max-width: none;
		margin-left: -24px;
		margin-right: -24px;
		padding-left: 24px;
		padding-right: 24px;
		box-sizing: border-box;
		overflow-x: auto;
		overflow-y: hidden;
		justify-content: flex-start;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.channel-nav::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}
}

/* Скрыть канал Instrumental */
.channel-button[data-channel="instrumental"] {
    display: none;
}
