/* ZVUKATO LOCAL MANROPE */

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../webfonts/manrope-400.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../webfonts/manrope-500.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../webfonts/manrope-600.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../webfonts/manrope-700.woff2") format("woff2");
}

/* Ukrainian / Cyrillic */
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../webfonts/manrope-800-cyrillic.woff2") format("woff2");
    unicode-range:
        U+0301,
        U+0400-045F,
        U+0490-0491,
        U+04B0-04B1,
        U+2116;
}

/* Latin */
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../webfonts/manrope-800-latin.woff2") format("woff2");
    unicode-range:
        U+0000-00FF,
        U+0131,
        U+0152-0153,
        U+02BB-02BC,
        U+02C6,
        U+02DA,
        U+02DC,
        U+0304,
        U+0308,
        U+0329,
        U+2000-206F,
        U+20AC,
        U+2122,
        U+2191,
        U+2193,
        U+2212,
        U+2215,
        U+FEFF,
        U+FFFD;
}

/* END ZVUKATO LOCAL MANROPE */

/* ==================================================
   ZVUKATO — BASE / DESKTOP
   Очищена версія без старих стилів шаблону
================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #07111d;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
}

a {
    color: inherit;
}

.site-layout {
    display: flex;
    min-height: 100vh;
    background: transparent;
    width: 100%;
}

.sidebar {
	width: 280px;
	min-width: 280px;
	flex: 0 0 280px;

	min-height: 100vh;
	padding: 32px 20px 28px;

	background: #0e1d2e;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar__logo {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 64px;

	gap: 6px;

	margin: 0;
	padding: 0;

	text-decoration: none;
}

.sidebar__logo-text {
	font-family: "Manrope", sans-serif;
	color: #ffffff;

	font-size: 45px;
	font-weight: 700;
	line-height: 1;

	letter-spacing: -1.8px;
}

.sidebar__logo-play {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;
	flex: 0 0 38px;

	border-radius: 50%;

	background: #25d8d0;
	color: #071720;
}

.sidebar__logo-play i {
	font-size: 13px;
	transform: translateX(1px);
}

.sidebar__logo:hover .sidebar__logo-play {
    background: #43e9df;
    box-shadow: 0 0 0 5px rgba(37,216,208,.14);
    transform: scale(1.05);
}
@media screen and (max-width: 900px) {

	/* ==================================================
	   MOBILE MENU LOGO
	================================================== */

	.mobile-menu {
		padding: 18px 16px 28px;
	}


	.mobile-menu .sidebar__logo {
		display: flex !important;
		align-items: center;
		justify-content: flex-start;

		width: calc(100% - 52px);
		height: 48px;

		gap: 5px;
		margin: 0 0 28px;
		padding: 0 4px;

		text-decoration: none;
	}


	.mobile-menu .sidebar__logo-text {
		color: #ffffff;

		font-family: "Manrope", sans-serif;
		font-size: 27px;
		font-weight: 800;
		line-height: 1;

		letter-spacing: -1.1px;
	}


	.mobile-menu .sidebar__logo-play {
		position: relative;

		display: inline-flex;
		align-items: center;
		justify-content: center;

		width: 31px;
		height: 31px;
		flex: 0 0 31px;

		border-radius: 50%;

		background: #25d8d0;
		color: #071720;
	}


	.mobile-menu .sidebar__logo-play i {
		display: block;

		width: 9px;
		height: 12px;

		background: #071720;

		clip-path: polygon(
			0 0,
			100% 50%,
			0 100%
		);

		transform: translateX(1px);
	}
}
@media screen and (max-width: 900px) {

	.mobile-menu-close {
		position: fixed;

		top: 18px;
		left: min(calc(82vw - 56px), 264px);

		z-index: 1500;

		display: inline-flex;
		align-items: center;
		justify-content: center;

		width: 40px;
		height: 40px;

		padding: 0;

		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 11px;

		background: rgba(255, 255, 255, 0.045);
		color: #dce7ef;

		font-size: 18px;

		opacity: 0;
		visibility: hidden;

		cursor: pointer;

		transition:
			opacity 0.25s ease,
			visibility 0.25s ease,
			background-color 0.2s ease;
	}

	.mobile-menu-close.is-active {
		opacity: 1;
		visibility: visible;
	}

	.mobile-menu-close:hover {
		background: rgba(255, 255, 255, 0.08);
		color: #ffffff;
	}
}


.nav-list {
	width: 100%;

	margin: 60px 0 0;
	padding: 0;

	list-style: none;
}

.nav-list > li {
	position: relative;
	margin: 0;
}

.nav-list > li:not(:last-child)::after {
	content: "";

	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 0;

	height: 1px;

	background: rgba(255, 255, 255, 0.045);
}

.nav-list > li > a {
	display: flex;
	align-items: center;

	width: 100%;
	min-height: 52px;

	padding: 0 14px 0 46px;

	border-radius: 11px;

	color: #d8e0ea;

	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;

	text-decoration: none;

	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.nav-list > li > span {
	position: absolute;
	left: 15px;
	top: 50%;

	z-index: 2;

	color: #c6d0dc;
	font-size: 19px;

	pointer-events: none;

	transform: translateY(-50%);
	transition: color 0.2s ease;
}

.nav-list > li:hover > a,
.nav-list > li.is-active > a {
	background: rgba(255, 255, 255, 0.065);
	color: #ffffff;
}

.nav-list > li:hover > span,
.nav-list > li.is-active > span {
	color: #32ddd8;
}
.main {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 100vh;
    padding: 0 64px 64px;
    background: radial-gradient(
			circle at 72% 8%,
			rgba(60, 233, 231, 0.08),
			transparent 36%
		),
		radial-gradient(
			circle at 25% 30%,
			rgba(78, 116, 168, 0.06),
			transparent 40%
		),
		linear-gradient(
			135deg,
			#0d1826 0%,
			#142235 52%,
			#192a3d 100%
		);
    width: auto;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.topbar {
    padding: 32px 0 28px;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 34px;
    background: transparent !important;
}

.topbar__search {
    width: min(100%, 860px);
    max-width: 1040px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-radius: 16px;
    background: linear-gradient(
			180deg,
			rgba(22, 42, 61, 0.96),
			rgba(13, 29, 45, 0.98)
		);
    border: 1px solid rgba(123, 168, 205, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.025);
    position: relative;
    min-height: 54px;
    transition: border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
    overflow: visible;
}

.topbar__search > span {
    position: absolute;
    font-size: 18px;
    color: #62a8c5;
    flex: 0 0 auto;
    left: 18px;
    z-index: 2;
    pointer-events: none;
    transition: color 0.2s ease,
		transform 0.2s ease;
}

.topbar__search input[type="text"] {
    width: 100%;
    height: 54px;
    padding: 0 56px 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none !important;
    color: #f5fbff;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
}

.topbar__search input[type="text"]::placeholder {
    color: #718ca4;
    opacity: 1;
}

.topbar__search button[type="submit"] {
	position: absolute;
	top: 50%;
	right: 10px;
	z-index: 5;

	display: inline-flex !important;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;

	margin: 0;
	padding: 0;

	border: 0;
	border-radius: 10px;

	background: transparent;

	color: #2edce1;

	cursor: pointer;

	transform: translateY(-50%);

	transition:
		color .2s ease,
		background-color .2s ease,
		transform .2s ease;
}

.topbar__search button[type="submit"]:hover {
	color: #43e9df;
	background: rgba(45, 226, 214, 0.07);
}

.topbar__search button[type="submit"] .fa-search {
	display: block;

	margin: 0;
	padding: 0;

	color: inherit;

	font-size: 17px;
	line-height: 1;
}

/* Не використовуємо стару псевдоіконку,
   бо іконка вже є в HTML */
.topbar__search button[type="submit"]::before {
	content: none !important;
	display: none !important;
}

.section {
    width: 100%;
    max-width: 1320px;
    margin-bottom: 42px;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.section__title {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section__title::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 10px;
    border-radius: 5px;
    background: #32ddd8;
}

.section__link {
    color: #32ddd8;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
}

.section__link span {
    margin-left: 8px;
}

.genre-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.genre-pill {
    min-width: 130px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 14px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .2s ease;
}

.genre-pill span {
    color: #32ddd8;
    font-size: 20px;
}

.genre-pill:hover {
    background: rgba(255,255,255,0.065);
    transform: translateY(-2px);
}

.artist-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.artist-card {
    width: 142px;
    text-align: center;
    text-decoration: none;
    transition: transform .25s ease;
}

.artist-card:hover {
    transform: translateY(-4px);
}

.artist-card__img {
    width: 118px;
    height: 118px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(50,221,216,.45);
    background: rgba(255,255,255,.05);
    transition: transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.artist-card:hover .artist-card__img {
    transform: scale(1.05);
    border-color: rgba(50,221,216,.85);
    box-shadow: 0 0 0 4px rgba(50,221,216,.06),
        0 12px 30px rgba(16,230,222,.18);
}

.artist-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card__title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    transition: color .25s ease;
}

.artist-card:hover .artist-card__title {
    color: #3ce9e7;
}

@media screen and (max-width: 900px) {

	/* ==================================================
	   MOBILE HEADER
	================================================== */

	.mobile-header {
		position: sticky;
		top: 0;
		z-index: 1200;

		display: flex;
		align-items: center;
		justify-content: space-between;

		width: 100%;
		height: 70px;

		padding: 0 16px;

		background:
			linear-gradient(
				135deg,
				rgba(13, 30, 47, 0.98),
				rgba(16, 39, 57, 0.98)
			);

		border-bottom: 1px solid rgba(45, 212, 219, 0.1);

		box-shadow:
			0 8px 24px rgba(0, 0, 0, 0.12);

		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
	}


	/* Логотип */

	.mobile-logo {
		display: inline-flex;
		align-items: center;

		width: auto;
		gap: 5px;

		color: #ffffff;
		text-decoration: none;
	}

	.mobile-logo__text {
		color: #ffffff;

		font-family: "Manrope", sans-serif;
		font-size: 25px;
		font-weight: 800;
		line-height: 1;

		letter-spacing: -1px;
	}


	/* Play біля логотипа */

	.mobile-logo__play {
		position: relative;

		display: inline-flex;
		align-items: center;
		justify-content: center;

		width: 30px;
		height: 30px;
		flex: 0 0 30px;

		border-radius: 50%;

		background: #25d8d0;

		transition:
			background-color 0.2s ease,
			box-shadow 0.2s ease,
			transform 0.2s ease;
	}

	.mobile-logo__play i {
		display: block;

		width: 9px;
		height: 12px;

		background: #071720;

		clip-path: polygon(
			0 0,
			100% 50%,
			0 100%
		);

		transform: translateX(1px);
	}

	.mobile-logo:hover .mobile-logo__play {
		background: #43e9df;

		box-shadow:
			0 0 0 4px rgba(37, 216, 208, 0.13);

		transform: scale(1.04);
	}


	/* Кнопка відкриття меню */

	.mobile-menu-btn,
	.js-show-mobile-menu {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;

		width: 42px;
		height: 42px;
		flex: 0 0 42px;

		gap: 5px;
		margin: 0;
		padding: 0;

		border: 1px solid rgba(37, 216, 208, 0.3);
		border-radius: 12px;

		background: rgba(37, 216, 208, 0.08);
		color: #25d8d0;

		box-shadow: none;

		cursor: pointer;

		transition:
			background-color 0.2s ease,
			border-color 0.2s ease,
			transform 0.2s ease;
	}

	.mobile-menu-btn span,
	.js-show-mobile-menu span {
		display: block;

		width: 18px;
		height: 2px;

		margin: 0;

		border: 0;
		border-radius: 999px;

		background: currentColor;
	}

	.mobile-menu-btn:hover,
	.js-show-mobile-menu:hover {
		background: rgba(37, 216, 208, 0.14);
		border-color: rgba(37, 216, 208, 0.48);

		transform: translateY(-1px);
	}
}
.mobile-menu-btn {
    display: none;
}

.main-seo {
    max-width: 1180px;
    margin-top: 52px;
    padding: 24px 28px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    color: #aebbcc;
}

.main-seo h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.main-seo p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.main__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: 32px;
    padding-left: 32px;
    box-sizing: border-box;
    padding-inline: clamp(20px, 2.5vw, 48px);
    flex: 1 1 auto;
    background: transparent;
}

.topbar,
.main-seo {
    width: 100%;
    max-width: none;
    margin-bottom: 42px;
}

.main-seo__list {
    margin: 18px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    max-width: 900px;
}

.main-seo__list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(174,187,204,.9);
}

.main-seo__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #20dfd2;
}

.main-seo__list strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-weight: 700;
}

.main-seo__bottom {
    max-width: 900px;
    margin-top: 20px;
}

.site-footer {
    width: 100%;
    margin-top: 64px;
    padding: 42px 48px 34px;
    border-radius: 22px;
    background: rgba(255,255,255,0.032);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 22px 60px rgba(0,0,0,0.18);
    margin-bottom: 80px;
}

.site-footer__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.site-footer__brand {
    flex: 1 1 30%;
    max-width: 320px;
}

.site-footer__actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex: 1 1 40%;
    margin-right: 80px;
}

.site-footer__notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex: 1 1 30%;
    max-width: 420px;
}

.site-footer__brand p,
.site-footer__notice p {
    margin: 0;
    color: #aebbcc;
    font-size: 16px;
    line-height: 1.75;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    text-decoration: none;
}

.site-footer__logo span {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.4px;
    line-height: 1;
}

.site-footer__logo i {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;
	flex: 0 0 38px;

	margin-left: 8px;

	border-radius: 50%;

	background: #25d8d0;
	color: #071720;

	font-size: 13px;
	font-style: normal;

	transition:
		background .25s ease,
		box-shadow .25s ease,
		transform .25s ease;
}

.site-footer__logo i::before {
	content: "";
	display: block;

	width: 10px;
	height: 12px;

	background: currentColor;

	clip-path: polygon(0 0, 100% 50%, 0 100%);

	transform: translateX(1px);
}

.site-footer__logo:hover i {
	background: #43e9df;
	box-shadow: 0 0 0 5px rgba(37,216,208,.14);
	transform: scale(1.05);
}
.footer-btn {
    min-width: 210px;
    height: 64px;
    padding: 0 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    transition: all .2s ease;
}

.footer-btn > span {
    color: #32ddd8;
    font-size: 22px;
}

.footer-btn i {
    margin-left: auto;
    color: #32ddd8;
    font-size: 16px;
}

.footer-btn:hover {
    background: rgba(50,221,216,0.10);
    border-color: rgba(50,221,216,0.28);
    transform: translateY(-2px);
}

.site-footer__notice > span {
    color: #32ddd8;
    font-size: 24px;
    margin-top: 4px;
    flex: 0 0 auto;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
}

.site-footer__copy {
    color: #aebbcc;
    font-size: 16px;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #aebbcc;
    font-size: 16px;
}

.site-footer__socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s ease;
}

.site-footer__socials a:hover {
    color: #07111d;
    background: #32ddd8;
    transform: translateY(-2px);
}

.section__title a {
    color: inherit;
    text-decoration: none;
}

.section__title a:hover {
    color: #32ddd8 !important;
}

.section__title,
.section__title a {
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1.2;
    color: #ffffff !important;
    text-decoration: none !important;
}

.genres-page {
    width: 100%;
    max-width: 1320px;
}

.genres-page__head {
    margin-bottom: 28px;
}

.genres-page__head h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.genres-page__head p {
    margin: 0;
    color: #9aa8b8;
    font-size: 17px;
    line-height: 1.6;
}

.genres-page__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.genres-page__card {
    min-height: 170px;
    padding: 26px;
    border-radius: 20px;
    background: radial-gradient(circle at 80% 20%, rgba(50,221,216,0.13), transparent 36%),
        rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.075);
    box-shadow: 0 18px 45px rgba(0,0,0,0.16);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .22s ease;
}

.genres-page__card:hover {
    transform: translateY(-4px);
    background: radial-gradient(circle at 80% 20%, rgba(50,221,216,0.20), transparent 40%),
        rgba(255,255,255,0.065);
    border-color: rgba(50,221,216,0.32);
}

.genres-page__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(50,221,216,0.10);
    color: #32ddd8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.genres-page__title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.genres-page__desc {
    margin-top: 8px;
    color: #32ddd8;
    font-size: 14px;
    font-weight: 600;
}

.playlists-page {
    width: 100%;
    max-width: 1480px;
}

.playlists-page__head {
    margin-bottom: 30px;
}

.playlists-page__head h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.playlists-page__head h1::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 14px;
    border-radius: 4px;
    background: #32ddd8;
}

.playlists-page__head p {
    margin: 0;
    color: #9daabd;
    font-size: 16px;
    line-height: 1.6;
}

.playlists-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.playlist-category {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.20);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 28px;
    transition: transform .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.playlist-category:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 221, 216, 0.38);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.30),
		0 0 25px rgba(50, 221, 216, 0.07);
}

.playlist-category__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
			to bottom,
			rgba(4, 11, 20, 0.08) 20%,
			rgba(4, 11, 20, 0.42) 58%,
			rgba(4, 11, 20, 0.92) 100%
		);
    transition: background .25s ease;
}

.playlist-category:hover .playlist-category__overlay {
    background: linear-gradient(
			to bottom,
			rgba(4, 11, 20, 0.02) 15%,
			rgba(4, 11, 20, 0.32) 55%,
			rgba(4, 11, 20, 0.88) 100%
		);
}

.playlist-category__icon {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    background: rgba(5, 13, 24, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(8px);
    transition: transform .25s ease,
		background .25s ease,
		border-color .25s ease;
}

.playlist-category:hover .playlist-category__icon {
    transform: translate(-50%, -50%) scale(1.07);
    background: rgba(50, 221, 216, 0.18);
    border-color: rgba(50, 221, 216, 0.75);
}

.playlist-category__title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.playlist-category--workout {
    background-image: url("../images/playlists/workout.jpg");
}

.playlist-category--car {
    background-image: url("../images/playlists/car.jpg");
}

.playlist-category--work {
    background-image: url("../images/playlists/work.jpg");
}

.playlist-category--study {
    background-image: url("../images/playlists/study.jpg");
}

.playlist-category--sleep {
    background-image: url("../images/playlists/sleep.jpg");
}

.playlist-category--meditation {
    background-image: url("../images/playlists/meditation.jpg");
}

.seo-content {
    margin-top: 42px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg,#162131 0%,#121c2b 100%);
    border: 1px solid rgba(255,255,255,.05);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.seo-content summary {
    list-style: none;
}

.seo-content summary::-webkit-details-marker {
    display: none;
}

.seo-content__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
    transition: .2s;
}

.seo-content__toggle:hover {
    background: rgba(255,255,255,.025);
}

.seo-content__heading {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.seo-content__labels {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: #20dfd2;
}

.seo-content__less {
    display: none;
}

.seo-content[open] .seo-content__more {
    display: none;
}

.seo-content[open] .seo-content__less {
    display: inline;
}

.seo-content__labels::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: .25s;
}

.seo-content[open] .seo-content__labels::after {
    transform: translateY(2px) rotate(225deg);
}

.seo-content__body {
    padding: 18px 28px 24px !important;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #c7d2df;
    font-size: 15px !important;
    line-height: 1.58 !important;
}

.seo-content__body>* {
    max-width: 930px;
}

.seo-content__body h2 {
    margin: 12px 0 12px !important;
    color: #fff;
    font-size: 32px !important;
    line-height: 1.22 !important;
    font-weight: 750 !important;
    letter-spacing: -0.02em;
}

.seo-content__body h3 {
    margin: 22px 0 10px !important;
    color: #fff;
    font-size: 20px !important;
    font-weight: 700;
    line-height: 1.3 !important;
}

.seo-content__body p {
    margin: 0 0 12px !important;
    line-height: 1.58 !important;
}

.seo-content__body p:last-child {
    margin-bottom: 0 !important;
}

.seo-content__body ul,
.seo-content__body ol {
    margin: 12px 0 !important;
    padding-left: 22px;
}

.seo-content__body li {
    margin-bottom: 5px !important;
    line-height: 1.55;
}

.seo-content__body a {
    color: #20dfd2;
    text-decoration: none;
}

.seo-content__body a:hover {
    text-decoration: underline;
}

.seo-content__body strong {
    color: #fff;
    font-weight: 700;
}

.seo-content__body blockquote {
    margin: 22px 0;
    padding-left: 18px;
    border-left: 3px solid #20dfd2;
    color: #d7e3ef;
    font-style: italic;
}

:root {
    --zv-player-accent: #25d8d0;
    --zv-player-accent-hover: #45e9e1;
    --zv-player-dark: #071720;
    --zv-player-text: #ffffff;
    --zv-player-muted: #8fa4b8;
    --zv-player-space: 118px;
}

#zv-loading.zv-loading {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10000;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(50, 221, 216, 0.24);
    border-radius: 50%;
    background: rgba(7, 17, 29, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42),
        0 0 24px rgba(50, 221, 216, 0.13);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}

#zv-loading.zv-loading.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

#zv-loading.zv-loading--with-text {
    width: auto;
    min-width: 48px;
    padding: 0 17px;
    border-radius: 15px;
}

#zv-loading .zv-loading__spinner {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    border: 3px solid rgba(50, 221, 216, 0.17);
    border-top-color: #32ddd8;
    border-right-color: #27cdd9;
    border-radius: 50%;
    animation: zv-loading-spin 0.72s linear infinite;
}

#zv-loading .zv-loading__text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-list li {
    border-radius: 12px;
    transition: background-color .2s ease,
		color .2s ease;
}

.nav-list li.is-active {
    background: rgba(255, 255, 255, 0.08);
}

.nav-list li.is-active > span,
.nav-list li.is-active > a {
    color: #32ddd8;
}

.form__btn {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.08);
    transition: .25s;
}

.form__btn:hover {
    color: #2DD4DB;
    border-color: #2DD4DB;
    background: rgba(45,212,219,.08);
}

.form__btn:hover i,
.form__btn:hover span {
    color: #2DD4DB;
}

.section__link:hover {
    color: #5FE5FA;
    transform: translateX(2px);
    text-shadow: 0 0 8px rgba(45,212,219,.35);
}

.section__link:hover .fal {
    transform: translateX(4px);
}

.static-page {
    max-width: 980px;
    padding: 34px 38px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.static-page__header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.static-page__title {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.static-page__content {
    color: #aebbd0;
    font-size: 16px;
    line-height: 1.8;
}

.static-page__content h2,
.static-page__content h3 {
    margin: 30px 0 14px;
    color: #ffffff;
    line-height: 1.35;
}

.static-page__content h2 {
    font-size: 24px;
}

.static-page__content h3 {
    font-size: 19px;
}

.static-page__content p {
    margin: 0 0 18px;
}

.static-page__content ul,
.static-page__content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.static-page__content ul {
    list-style: disc;
}

.static-page__content ol {
    list-style: decimal;
}

.static-page__content li {
    margin-bottom: 8px;
}

.static-page__content a {
    color: #32ddd8;
    text-decoration: none;
    transition: color .2s ease;
}

.static-page__content a:hover {
    color: #5fe5fa;
}

.content-page {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 38px 42px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    background: linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.035),
			rgba(255, 255, 255, 0.018)
		);
}

.content-page__header {
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-page__title {
    position: relative;
    margin: 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.content-page__title::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 14px;
    border-radius: 10px;
    background: #32ddd8;
}

.typography {
    color: #aebbd0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.typography h2,
.typography h3,
.typography h4 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
}

.typography h2 {
    margin: 46px 0 18px;
    font-size: 25px;
}

.typography h3 {
    margin: 34px 0 14px;
    font-size: 20px;
}

.typography h4 {
    margin: 28px 0 12px;
    font-size: 17px;
}

.typography > h2:first-child,
.typography > h3:first-child {
    margin-top: 0;
}

.typography p {
    margin: 0 0 20px;
}

.typography p:last-child {
    margin-bottom: 0;
}

.typography strong,
.typography b {
    color: #ffffff;
    font-weight: 700;
}

.typography a {
    color: #32ddd8;
    text-decoration: underline;
    text-decoration-color: rgba(50, 221, 216, 0.35);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.2s ease,
		text-decoration-color 0.2s ease;
}

.typography a:hover,
.typography a:focus-visible {
    color: #5fe5fa;
    text-decoration-color: currentColor;
}

.typography ul,
.typography ol {
    margin: 22px 0 26px;
    padding-left: 0;
}

.typography li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
}

.typography li:last-child {
    margin-bottom: 0;
}

.typography ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #32ddd8;
    box-shadow: 0 0 0 4px rgba(50, 221, 216, 0.09);
    transform: translateY(-50%);
}

.typography ol {
    counter-reset: content-list;
}

.typography ol li {
    counter-increment: content-list;
}

.typography ol li::before {
    content: counter(content-list);
    position: absolute;
    left: 0;
    top: 0.12em;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(50, 221, 216, 0.28);
    border-radius: 50%;
    color: #32ddd8;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.typography code {
    padding: 3px 8px;
    border: 1px solid rgba(50, 221, 216, 0.14);
    border-radius: 6px;
    background: rgba(50, 221, 216, 0.07);
    color: #63e7e5;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.9em;
}

.typography blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    border-left: 3px solid #32ddd8;
    border-radius: 0 12px 12px 0;
    background: rgba(50, 221, 216, 0.055);
    color: #c1cbda;
}

.typography blockquote p:last-child {
    margin-bottom: 0;
}

.typography hr {
    height: 1px;
    margin: 36px 0;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
}

.typography img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
    border-radius: 14px;
}

.typography table {
    width: 100%;
    margin: 26px 0;
    overflow: hidden;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.typography th,
.typography td {
    padding: 13px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}

.typography th {
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    font-weight: 700;
}

.content-page__lead {
    max-width: 720px;
    margin: 12px 0 0;
    color: #93a5be;
    font-size: 16px;
    line-height: 1.7;
}

.about-page {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 0 60px;
    color: #d8e0eb;
}

.about-page__header,
.about-page__section {
    margin-bottom: 28px;
    padding: 30px 34px;
    background: linear-gradient(
        180deg,
        rgba(22, 33, 49, 0.94) 0%,
        rgba(16, 27, 42, 0.94) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
}

.about-page h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
}

.about-page h2 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 14px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
}

.about-page h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
    border-radius: 3px;
    background: #20dfd2;
}

.about-page h3 {
    margin: 26px 0 10px;
    color: #f4f7fb;
    font-size: 19px;
    font-weight: 750;
    line-height: 1.35;
}

.about-page p {
    margin: 0 0 16px;
    color: #b9c5d4;
    font-size: 16px;
    line-height: 1.75;
}

.about-page p:last-child {
    margin-bottom: 0;
}

.about-page strong {
    color: #ffffff;
    font-weight: 700;
}

.about-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-list li {
    padding: 18px 20px;
    color: #b9c5d4;
    font-size: 16px;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 12px;
}

.about-list li strong {
    display: block;
    margin-bottom: 5px;
    color: #20dfd2;
}

.page-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.artist-page {
    width: 100%;
}

.artist-profile {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 38px;
    padding: 28px;
    background: linear-gradient(
			135deg,
			rgba(31, 57, 82, 0.92),
			rgba(14, 31, 48, 0.94)
		);
    border: 1px solid rgba(112, 163, 202, 0.14);
    border-radius: 20px;
}

.artist-profile__image {
    width: 150px;
    height: 150px;
    min-width: 150px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.artist-profile__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-profile__content {
    min-width: 0;
}

.artist-profile__label {
    margin-bottom: 8px;
    color: #35dce1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.artist-profile__title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
}

.artist-profile__description {
    max-width: 620px;
    margin: 0;
    color: #9db3c7;
    font-size: 14px;
    line-height: 1.7;
}

.artist-page__header {
    margin-top: 0;
    margin-bottom: 16px;
}

.section__eyebrow {
    margin-bottom: 6px;
    color: #2ed8de;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.topbar,
.section,
.site-footer {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.topbar__search:focus-within {
    border-color: rgba(45, 220, 225, 0.72);
    box-shadow: 0 0 0 3px rgba(45, 220, 225, 0.10),
		0 16px 36px rgba(0, 0, 0, 0.20);
}

.topbar__search:focus-within > span {
    color: #2edce1;
    transform: scale(1.05);
}

.topbar__search button:hover {
    background: rgba(46, 220, 225, 0.18);
    border-color: rgba(46, 220, 225, 0.34);
    transform: translateY(-1px);
}

.topbar__search button::before {
    content: "";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
    font-weight: 900;
    color: #2edce1;
    font-size: 14px;
}

.playlist-preview-card:hover img {
    transform: scale(1.05);
}

.playlist-preview-card:hover .playlist-preview-card__play {
    transform: scale(1.08);
    background: #19d7e8;
    color: #07111d;
}

.section--playlists {
    --playlist-preview-columns: 4;
    --playlist-preview-gap: 20px;
    --playlist-preview-height: 250px;
    --playlist-preview-radius: 18px;
    --playlist-preview-icon-size: 72px;
}

.section--playlists,
.section--playlists .playlists-preview {
    display: block;
    width: 100%;
    max-width: none;
}

.section--playlists .playlists-preview .playlists-page__grid {
    display: grid;
    grid-template-columns: repeat(var(--playlist-preview-columns), minmax(0, 1fr));
    gap: var(--playlist-preview-gap);
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0;
}

.section--playlists .playlists-preview .playlist-category:nth-child(n + 5) {
    display: none;
}

.section--playlists .playlists-preview .playlist-category {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: var(--playlist-preview-height);
    min-height: var(--playlist-preview-height);
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: var(--playlist-preview-radius);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: none;
    isolation: isolate;
    transition: transform .3s ease, box-shadow .3s ease;
}

.section--playlists .playlists-preview .playlist-category__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: linear-gradient(
        to top,
        rgba(3, 9, 18, .92) 0%,
        rgba(3, 9, 18, .28) 55%,
        rgba(3, 9, 18, .08) 100%
    );
}

.section--playlists .playlists-preview .playlist-category__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--playlist-preview-icon-size);
    height: var(--playlist-preview-icon-size);
    margin: 0;
    padding: 0;
    transform: translate(-50%, -58%);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(7, 13, 24, .82);
    color: #fff;
    font-size: 27px;
    line-height: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.section--playlists .playlists-preview .playlist-category__title {
    position: absolute;
    right: 16px;
    bottom: 20px;
    left: 16px;
    z-index: 2;
    display: block;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .85);
}

.section--playlists .playlists-preview .playlist-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .28),
                0 0 0 1px rgba(39, 221, 224, .35);
}

.section--playlists .playlists-preview .playlist-category:hover .playlist-category__icon {
    transform: translate(-50%, -58%) scale(1.08);
    background: #27d9df;
    color: #07111d;
}

.section--genres .genre-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(130px, 1fr));
    gap: 14px;
    width: 100%;
}

.section--genres .genre-pill {
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 17px;
    gap: 12px;
    justify-content: center;
}

.section--genres .genre-pill span {
    font-size: 22px;
}

.section--artists .artist-row > .artist-preview {
    display: flex;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 0 0 156px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.22s ease;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.section--artists .artist-preview__photo {
    display: block;
    width: 188px !important;
    height: 188px !important;
    min-width: 250px !important;
    min-height: 250px !important;
    max-width: 188px !important;
    max-height: 188px !important;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(40, 206, 200, 0.48);
    border-radius: 50%;
    background: #16283a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.section--artists .artist-preview__photo img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.section--artists .artist-preview__name {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 188px;
    min-height: 46px;
    margin: 14px auto 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.3;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
    transition: color 0.2s ease;
}

.section--artists .artist-preview:hover .artist-preview__photo {
    transform: translateY(-4px) scale(1.035);
    border-color: rgba(40, 206, 200, 0.88);
    box-shadow: 0 0 0 4px rgba(40, 206, 200, 0.06),
		0 12px 30px rgba(0, 0, 0, 0.2),
		0 0 18px rgba(40, 206, 200, 0.13);
}

.section--artists .artist-preview:hover .artist-preview__name {
    color: #3bdcd5;
}

.section--xfsearch {
    width: 100%;
}

.artist-xf-hero {
    position: relative;
    display: flex;
    align-items: center;
    gap: 34px;
    width: 100%;
    margin-bottom: 34px;
    padding: 26px 28px;
    overflow: hidden;
    border: 1px solid rgba(45, 226, 214, 0.18);
    border-radius: 18px;
    background: radial-gradient(
			circle at 10% 25%,
			rgba(45, 226, 214, 0.13),
			transparent 30%
		),
		linear-gradient(
			135deg,
			rgba(20, 51, 70, 0.96),
			rgba(13, 31, 49, 0.94)
		);
    box-shadow: none;
    min-height: 220px;
}

.artist-xf-hero[hidden] {
    display: none !important;
}

.artist-xf-hero__photo {
    flex: 0 0 auto;
    width: 148px;
    height: 148px;
    overflow: hidden;
    border: 2px solid rgba(45, 226, 214, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32),
		0 0 30px rgba(60, 233, 231, 0.12);
}

.artist-xf-hero__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artist-xf-hero__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    align-items: flex-start;
}

.artist-xf-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.artist-xf-hero__description {
    margin-top: 12px;
    color: #91a8c0;
    font-size: 15px;
    line-height: 1.6;
}

.artist-xf-tracks-header {
    margin-bottom: 18px;
}

.track-page {
    width: 100%;
}

.track-page__hero {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    width: 100%;
    padding: 34px;
    border: 1px solid rgba(60, 233, 231, 0.14);
    border-radius: 22px;
    background: radial-gradient(
			circle at 10% 15%,
			rgba(60, 233, 231, 0.12),
			transparent 35%
		),
		linear-gradient(
			135deg,
			rgba(18, 35, 51, 0.98),
			rgba(12, 25, 41, 0.96)
		);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.track-page__cover {
    width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    background: #122333;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35),
		0 0 0 1px rgba(60, 233, 231, 0.18);
}

.track-page__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.track-page__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.track-page__label {
    margin-bottom: 10px;
    color: #3ce9e7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.track-page__title {
    max-width: 900px;
    margin: 0;
    color: #f5f7fb;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.track-page__artist {
    margin-top: 12px;
    color: #8fa9c2;
    font-size: 17px;
    font-weight: 600;
}

.track-page__artist a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.track-page__artist a:hover {
    color: #3ce9e7;
}

.track-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 26px;
}

.track-page__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #91a8c0;
    font-size: 14px;
}

.track-page__meta-item .fal {
    color: #3ce9e7;
}

.track-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.track-page__play,
.track-page__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 170px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 13px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s ease,
		border-color 0.22s ease,
		background-color 0.22s ease,
		box-shadow 0.22s ease;
}

.track-page__play {
    border: 1px solid rgba(60, 233, 231, 0.62);
    color: #f4ffff;
    background: rgba(20, 38, 57, 0.85);
    box-shadow: 0 0 0 1px rgba(60, 233, 231, 0.05),
		0 10px 24px rgba(0, 0, 0, 0.16);
}

.track-page__play .fas {
    color: #3ce9e7;
    font-size: 15px;
}

.track-page__play:hover {
    transform: translateY(-2px);
    border-color: #3ce9e7;
    background: rgba(28, 51, 72, 0.96);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22),
		0 0 20px rgba(60, 233, 231, 0.14);
}

.track-page__download {
    border: 1px solid rgba(60, 233, 231, 0.26);
    color: #eaf7f8;
    background: rgba(20, 38, 57, 0.85);
}

.track-page__download .fal {
    color: #9bb2c7;
}

.track-page__download:hover {
    transform: translateY(-2px);
    border-color: rgba(60, 233, 231, 0.55);
    background: rgba(28, 51, 72, 0.95);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.track-page__section {
    margin-top: 38px;
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: rgba(20, 36, 55, 0.72);
}

.track-page__section-title {
    margin: 0 0 22px;
    color: #f5f7fb;
    font-size: 23px;
    font-weight: 800;
}

.track-page__section-title::after {
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 10px;
    border-radius: 3px;
    background: #3ce9e7;
    content: "";
}

.track-page__details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.track-page__detail {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 13px;
    background: rgba(9, 23, 37, 0.52);
}

.track-page__detail span {
    color: #7791aa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.track-page__detail strong {
    overflow: hidden;
    color: #f1f5fa;
    font-size: 15px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-page__text {
    color: #a7bbcd;
    font-size: 15px;
    line-height: 1.8;
}

.track-page__duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 16px;
    color: #91a8c0;
    font-size: 14px;
    font-weight: 600;
}

.track-page__duration .fal {
    color: #3ce9e7;
}

.track-page .track-page__actions .track-page__play.js-play {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-width: 170px !important;
    width: auto !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 24px !important;
    border: 1px solid rgba(60, 233, 231, 0.55) !important;
    border-radius: 13px !important;
    color: #eaf7f8 !important;
    background: rgba(20, 38, 57, 0.85) !important;
    background-image: none !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-transform: none !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: transform 0.22s ease,
		border-color 0.22s ease,
		background-color 0.22s ease,
		box-shadow 0.22s ease !important;
}

.track-page .track-page__actions .track-page__play.js-play::before,
.track-page .track-page__actions .track-page__play.js-play::after {
    display: none !important;
    content: none !important;
}

.track-page .track-page__actions .track-page__play.js-play .fas {
    display: inline-block !important;
    margin: 0 !important;
    color: #3ce9e7 !important;
    background: none !important;
    font-size: 14px !important;
    line-height: 1 !important;
    box-shadow: none !important;
    transform: none !important;
}

.track-page .track-page__actions .track-page__play.js-play:hover {
    transform: translateY(-2px) !important;
    border-color: #3ce9e7 !important;
    color: #ffffff !important;
    background: rgba(28, 51, 72, 0.96) !important;
    background-image: none !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22),
		0 0 20px rgba(60, 233, 231, 0.14) !important;
}

.track-page .track-page__actions .track-page__play.js-play:focus,
.track-page .track-page__actions .track-page__play.js-play:active {
    border-color: #3ce9e7 !important;
    color: #ffffff !important;
    background: rgba(28, 51, 72, 0.96) !important;
    background-image: none !important;
    outline: none !important;
}

.track-related-section--artists {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 38px !important;
}

.track-related-section--artists #similar-artists-list,
.track-related-section--artists .track-related-artists,
.track-related-section--artists .artist-row {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.track-related-section--artists .artist-related-item {
    position: relative !important;
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.track-related-section--artists .artist-related-item__link {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) 42px !important;
    align-items: center !important;
    column-gap: 18px !important;
    row-gap: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 98px !important;
    margin: 0 !important;
    padding: 8px 16px 8px 8px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 16px !important;
    color: inherit !important;
    text-decoration: none !important;
    background: linear-gradient(
			90deg,
			rgba(20, 43, 63, 0.96),
			rgba(13, 29, 47, 0.94)
		) !important;
    box-shadow: none !important;
    overflow: hidden !important;
    transform: none !important;
    transition: transform 0.22s ease,
		border-color 0.22s ease,
		background 0.22s ease,
		box-shadow 0.22s ease !important;
}

.track-related-section--artists .artist-related-item__link:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(60, 233, 231, 0.3) !important;
    background: linear-gradient(
			90deg,
			rgba(25, 52, 74, 0.98),
			rgba(17, 36, 56, 0.98)
		) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18) !important;
}

.track-related-section--artists .artist-related-item__photo {
    position: relative !important;
    display: block !important;
    flex: none !important;
    width: 82px !important;
    height: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border: 0 !important;
    border-radius: 13px !important;
    background: #102135 !important;
    overflow: hidden !important;
    transform: none !important;
}

.track-related-section--artists .artist-related-item__photo img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
    transition: transform 0.3s ease !important;
}

.track-related-section--artists
.artist-related-item__link:hover
.artist-related-item__photo img {
    transform: scale(1.04) !important;
}

.track-related-section--artists .artist-related-item__content {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 6px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
    transform: none !important;
}

.track-related-section--artists .artist-related-item__name {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.track-related-section--artists .artist-related-item__name-value {
    position: static !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #f5f7fb !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    opacity: 1 !important;
    visibility: visible !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    background: transparent !important;
    transform: none !important;
}

.track-related-section--artists .artist-related-item__meta {
    position: static !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #8099b1 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    opacity: 1 !important;
    visibility: visible !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transform: none !important;
}

.track-related-section--artists .artist-related-item__arrow {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(60, 233, 231, 0.16) !important;
    border-radius: 50% !important;
    color: #3ce9e7 !important;
    background: rgba(8, 25, 41, 0.58) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: transform 0.22s ease,
		border-color 0.22s ease,
		color 0.22s ease,
		background 0.22s ease !important;
}

.track-related-section--artists
.artist-related-item__link:hover
.artist-related-item__arrow {
    transform: translateX(3px) !important;
    border-color: #3ce9e7 !important;
    color: #07111d !important;
    background: #3ce9e7 !important;
}

.track-related-section--artists .artist-related-item__overlay,
.track-related-section--artists .artist-related-item__play {
    display: none !important;
}

.short-item__artist-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.short-item__artist-link:hover {
    color: #3ce9e7;
}

[data-track-url] {
    cursor: pointer;
    transition: background-color 0.2s ease,
        transform 0.2s ease;
}

[data-track-url]:hover {
    background-color: rgba(255, 255, 255, 0.035);
}

[data-track-url]:focus-visible {
    outline: 2px solid #31d9dc;
    outline-offset: -2px;
}

.search-page {
    width: 100%;
    margin-bottom: 30px;
}

.search-page__header {
    margin-bottom: 22px;
}

.search-page__title {
    position: relative;
    margin: 0;
    padding-bottom: 14px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.search-page__title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
		90deg,
		#3ce9e7,
		#27cdd9
	);
    content: "";
}

.search-page__subtitle {
    margin: 13px 0 0;
    color: rgba(151, 184, 215, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.search-page__message {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0 0 28px;
    padding: 15px 18px;
    border: 1px solid rgba(45, 226, 214, 0.18);
    border-radius: 12px;
    background: rgba(18, 43, 63, 0.76);
    color: rgba(191, 212, 232, 0.88);
    font-size: 13px;
}

.search-page__message .fal {
    color: #2de2d6;
}

.search-results__list {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

}


.section--search-page {
    width: 100%;
    max-width: 1320px;
}

.search-page__summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 7px 11px;
    border: 0;
    border-radius: 8px;
    background: rgba(45, 226, 214, 0.07);
    color: rgba(163, 195, 220, 0.82);
    font-size: 12px;
    line-height: 1.45;
}

.search-page__summary .fal {
    color: #2de2d6;
    font-size: 13px;
}

.search-results {
    width: 100%;
    margin-top: 26px;
}

.search-results__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.search-results__title {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.search-results__title::before {
    display: inline-block;
    width: 4px;
    height: 17px;
    margin-right: 10px;
    border-radius: 999px;
    background: #2de2d6;
    vertical-align: -2px;
    content: "";
}

.search-results__list .short-item {
    width: 100%;
}

.search-results__list .short-item__inner {
    position: relative;
    border: 1px solid rgba(69, 116, 151, 0.24) !important;
    border-radius: 13px !important;
    background: linear-gradient(
			90deg,
			rgba(21, 45, 65, 0.96),
			rgba(17, 36, 55, 0.82)
		) !important;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.search-results__list .short-item__inner::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: #2de2d6;
    content: "";
    opacity: 0;
    transition: opacity 0.2s ease;
}

.search-results__list .short-item__inner:hover {
    border-color: rgba(45, 226, 214, 0.24) !important;
    background: linear-gradient(
			90deg,
			rgba(24, 52, 73, 0.98),
			rgba(20, 42, 61, 0.92)
		) !important;
}

.search-results__list .short-item__inner:hover::before {
    opacity: 1;
}

.search-results__list .short-item__title {
    color: #ffffff;
    font-weight: 800;
}

.search-results__list .short-item__artist-link:hover,
.search-results__list .short-item__title:hover {
    color: #2de2d6;
}

.search-results__list .short-item__play {
    background: linear-gradient(
		135deg,
		#3ce9e7,
		#27cdd9
	) !important;
    color: #07111d !important;
}

.search-results__list .short-item__play span {
    color: #07111d !important;
}

.search-empty {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 28px 0 0;
    padding: 20px 22px;
    border: 1px solid rgba(64, 115, 151, 0.28);
    border-radius: 14px;
    background: rgba(18, 42, 62, 0.72);
    box-shadow: none;
    margin-top: 24px;
}

.search-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(45, 226, 214, 0.08);
    color: #2de2d6;
    font-size: 18px;
    border: 1px solid rgba(45, 226, 214, 0.15);
}

.search-empty__content {
    min-width: 0;
}

.search-empty__title {
    margin: 0 0 5px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.search-empty__text {
    max-width: 650px;
    margin: 0;
    color: rgba(157, 188, 216, 0.75);
    font-size: 13px;
    line-height: 1.55;
}

.search-empty[hidden] {
    display: none !important;
}

.search-suggestions[hidden] {
    display: none !important;
}

.search-suggestions {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    max-height: 430px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid rgba(62, 111, 148, 0.35);
    border-radius: 15px;
    background: linear-gradient(
			135deg,
			rgba(12, 29, 45, 0.99),
			rgba(17, 39, 57, 0.98)
		);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
}

.search-suggestions__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 58px;
    padding: 7px 10px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: inherit;
    transition: background-color 0.18s ease,
		border-color 0.18s ease;
}

.search-suggestions__item:hover,
.search-suggestions__item.is-active {
    border-color: rgba(45, 226, 214, 0.13);
    background: rgba(45, 226, 214, 0.075);
}

.search-suggestions__cover {
    display: block;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
}

.search-suggestions__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-suggestions__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.search-suggestions__title {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestions__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    color: rgba(144, 181, 214, 0.74);
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestions__meta .fal {
    color: #2de2d6;
    font-size: 10px;
}

.search-suggestions__arrow {
    flex: 0 0 auto;
    margin-left: auto;
    color: rgba(148, 183, 213, 0.48);
    font-size: 12px;
    transition: color 0.18s ease,
		transform 0.18s ease;
}

.search-suggestions__item:hover
.search-suggestions__arrow,
.search-suggestions__item.is-active
.search-suggestions__arrow {
    color: #2de2d6;
    transform: translateX(2px);
}

.artist-hero__cover {
    flex: 0 0 auto;
    width: 190px;
    height: 190px;
    overflow: hidden;
    border: 2px solid rgba(45, 226, 214, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22),
		0 0 0 8px rgba(45, 226, 214, 0.035);
}

.artist-hero__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-similar {
    margin-top: 42px;
}

.similar-artists {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.similar-artist {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    min-height: 68px;
    padding: 8px 11px;
    border: 1px solid rgba(57, 105, 142, 0.27);
    border-radius: 12px;
    background: rgba(19, 43, 63, 0.72);
    transition: border-color 0.18s ease,
		background-color 0.18s ease,
		transform 0.18s ease;
}

.similar-artist:hover {
    border-color: rgba(45, 226, 214, 0.22);
    background: rgba(23, 50, 71, 0.9);
    transform: translateY(-1px);
}

.similar-artist__image {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.similar-artist__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-artist__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.similar-artist__name {
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.similar-artist__text {
    color: rgba(148, 181, 210, 0.67);
    font-size: 11px;
}

.similar-artist > .fal {
    flex: 0 0 auto;
    margin-left: auto;
    color: #2de2d6;
    font-size: 12px;
}

.artist-xf-hero__label {
    margin: 0 0 7px;
    color: #2de2d6;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.artist-xf-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 21px;
}

.artist-xf-hero__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: auto !important;
    min-width: 150px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 18px !important;
    border: 1px solid rgba(45, 226, 214, 0.32) !important;
    border-radius: 11px !important;
    background: linear-gradient(
			135deg,
			#3ce9e7,
			#27cdd9
		) !important;
    color: #07111d !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

.artist-xf-hero__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(39, 205, 217, 0.18) !important;
}

.artist-section .section__header {
    margin-bottom: 14px;
}

.artist-section .section__title {
    margin: 0;
}

.artist-related-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.artist-related-item {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.artist-related-item__link {
    display: grid !important;
    align-items: center;
    gap: 13px;
    width: 100% !important;
    min-height: 70px !important;
    padding: 7px 11px !important;
    border: 1px solid rgba(57, 105, 142, 0.28) !important;
    border-radius: 12px !important;
    background: rgba(19, 43, 63, 0.76) !important;
    overflow: hidden;
    transition: background-color 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease;
    grid-template-columns: 56px minmax(0, 1fr) 32px;
    column-gap: 14px;
}

.artist-related-item__link:hover {
    border-color: rgba(45, 226, 214, 0.28) !important;
    background: rgba(23, 50, 71, 0.94) !important;
    transform: translateY(-1px);
}

.artist-related-item__photo {
    display: block !important;
    flex: 0 0 auto !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.04);
}

.artist-related-item__photo img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

.artist-related-item__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.artist-related-item__name {
    margin: 0 !important;
    line-height: 1.25;
}

.artist-related-item__name-value {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.artist-related-item__meta {
    color: rgba(148, 181, 210, 0.68);
    font-size: 11px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.artist-related-item__arrow {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px !important;
    height: 30px !important;
    margin-left: auto;
    border: 1px solid rgba(45, 226, 214, 0.17);
    border-radius: 50%;
    color: #2de2d6;
    font-size: 11px;
    margin: 0 !important;
}

.artist-related-item__link:hover
.artist-related-item__arrow {
    border-color: rgba(45, 226, 214, 0.35);
    background: rgba(45, 226, 214, 0.08);
}

.artist-similar .artist-related-item,
.artist-similar .artist-related-item__link,
.artist-similar .artist-related-item__photo,
.artist-similar .artist-related-item__photo img {
    max-width: none !important;
    aspect-ratio: auto !important;
}

.short-item__inner[data-track-url] {
    cursor: pointer;
}

.short-item__play,
.short-item__download,
.short-item__artist-link,
.short-item__title,
.short-item__img {
    cursor: pointer;
}

.artist-similar,
.track-related-artists {
    width: 100%;
}

.artist-similar .artist-related-list,
.track-related-artists .artist-related-list {
    width: 100%;
}

.seo-content__body > * {
    max-width: 860px;
}

.seo-content__body p + p {
    margin-top: 4px !important;
}

html,
body {
    min-height: 100%;
    background: #101e2e;
}

.site-layout,
.main {
    min-height: 100vh;
}

#scrolltop {
    position: fixed !important;
    right: 24px !important;
    bottom: 110px !important;
    z-index: 1200 !important;
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(40, 206, 200, 0.28);
    border-radius: 50%;
    background: #17283a;
    color: #28cec8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    cursor: pointer;
}

#scrolltop:hover {
    background: #28cec8;
    color: #071720;
}

.catalog-header {
    width: 100%;
    margin: 0 0 26px;
}

.catalog-header__eyebrow {
    margin: 0 0 7px;
    color: #28cec8;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-header__title {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 0 13px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.catalog-header__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: #28cec8;
}

.catalog-header--artists {
    margin-bottom: 28px;
}

@keyframes zv-loading-spin {
    to {
        transform: rotate(360deg);
    }
}
/* ==================================================
   ARTISTS
   Каталог, головна та сторінка виконавця
================================================== */


/* ==================================================
   1. КАТАЛОГ ВИКОНАВЦІВ
================================================== */

.artists-page {
	width: 100%;
	min-width: 0;
}

.artists-page__header {
	width: 100%;
	margin: 0 0 32px;
}

.artists-page__description {
	max-width: 760px;
	margin: 14px 0 0;

	color: #8fa8bd;

	font-size: 14px;
	line-height: 1.7;
}


/* Сітка категорії «Виконавці» */

.artists-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	align-items: start;
	justify-items: center;

	width: 100%;
	min-width: 0;

	margin: 34px 0 0;
	gap: 42px 28px;
}



/* Посилання всередині картки, якщо воно є */

.artists-grid .artist-preview__link {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 100%;
	min-width: 0;

	color: inherit;
	text-align: center;
	text-decoration: none;
}


/* Фото */

.artists-grid .artist-preview__photo img {
	display: block;

	width: 100%;
	height: 100%;
	max-width: none;

	object-fit: cover;
	object-position: center;

	border-radius: inherit;

	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}


/* Затемнення при наведенні */

.artists-grid .artist-preview__photo::before {
	content: "";

	position: absolute;
	inset: 0;
	z-index: 1;

	border-radius: inherit;

	background:
		linear-gradient(
			180deg,
			rgba(7, 17, 29, 0.02) 25%,
			rgba(7, 17, 29, 0.66) 100%
		);

	opacity: 0;

	pointer-events: none;

	transition: opacity 0.25s ease;
}




.artists-grid .artist-preview__play span,
.artists-grid .artist-preview__play i {
	display: block;

	margin-left: 2px;

	color: inherit;
	font-size: inherit;
	line-height: 1;
}


/* Hover */

.artists-grid .artist-preview:hover {
	transform: translateY(-4px);
}

.artists-grid .artist-preview:hover .artist-preview__photo {
	border-color: rgba(45, 212, 219, 0.9);

	box-shadow:
		0 0 0 4px rgba(45, 212, 219, 0.06),
		0 16px 38px rgba(0, 0, 0, 0.24),
		0 0 24px rgba(45, 212, 219, 0.16);
}

.artists-grid .artist-preview:hover .artist-preview__photo img {
	transform: scale(1.06);
	filter: brightness(0.72);
}

.artists-grid .artist-preview:hover .artist-preview__photo::before {
	opacity: 1;
}

.artists-grid .artist-preview:hover .artist-preview__play {
	opacity: 1;

	transform:
		translate(-50%, -50%)
		scale(1);
}

.artists-grid .artist-preview:hover .artist-preview__name {
	color: #3ce9e7;
}


/* Клавіатурний фокус */

.artists-grid .artist-preview:focus-visible {
	outline: none;
}

.artists-grid .artist-preview:focus-visible .artist-preview__photo {
	border-color: #3ce9e7;

	box-shadow:
		0 0 0 4px rgba(60, 233, 231, 0.14);
}


/* ==================================================
   2. ПРЕВ’Ю ВИКОНАВЦІВ НА ГОЛОВНІЙ
================================================== */

.section--artists .artist-row {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: start;
	justify-items: center;

	width: 100%;
	min-width: 0;

	gap: 42px 28px;
}

.section--artists .artist-preview {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 100%;
	min-width: 0;

	color: #ffffff;
	text-align: center;
	text-decoration: none;

	transition: transform 0.24s ease;
}

.section--artists .artist-preview__photo {
	position: relative;

	display: block;

	width: min(188px, 100%);
	aspect-ratio: 1 / 1;

	margin: 0 auto;

	overflow: hidden;

	border: 1px solid rgba(45, 212, 219, 0.42);
	border-radius: 50%;

	background: #15283a;

	box-shadow:
		0 9px 26px rgba(0, 0, 0, 0.16);

	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.section--artists .artist-preview__photo img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	border-radius: inherit;

	transition: transform 0.3s ease;
}

.section--artists .artist-preview__name {
	display: flex;
	align-items: flex-start;
	justify-content: center;

	width: 188px;
	max-width: 100%;
	min-height: 44px;

	margin: 14px auto 0;

	color: #ffffff;

	font-size: 16px;
	font-weight: 750;
	line-height: 1.35;
	text-align: center;

	overflow-wrap: anywhere;

	transition: color 0.22s ease;
}

.section--artists .artist-preview:hover {
	transform: translateY(-4px);
}

.section--artists .artist-preview:hover .artist-preview__photo {
	border-color: rgba(45, 212, 219, 0.88);

	box-shadow:
		0 0 0 4px rgba(45, 212, 219, 0.06),
		0 14px 34px rgba(0, 0, 0, 0.22),
		0 0 20px rgba(45, 212, 219, 0.14);
}

.section--artists .artist-preview:hover .artist-preview__photo img {
	transform: scale(1.05);
}

.section--artists .artist-preview:hover .artist-preview__name {
	color: #3ce9e7;
}


/* ==================================================
   3. ОКРЕМА СТОРІНКА ВИКОНАВЦЯ
================================================== */

.artist-profile-page {
	width: 100%;
	min-width: 0;
}

.artist-hero {
	position: relative;

	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	align-items: center;

	width: 100%;
	min-height: 250px;

	margin: 0 0 38px;
	padding: 28px;
	gap: 34px;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 12% 20%,
			rgba(45, 226, 214, 0.13),
			transparent 32%
		),
		linear-gradient(
			135deg,
			rgba(20, 51, 70, 0.95),
			rgba(13, 31, 49, 0.92)
		);

	border: 1px solid rgba(49, 104, 139, 0.34);
	border-radius: 18px;

	box-shadow:
		0 20px 45px rgba(0, 0, 0, 0.12);
}

.artist-hero::before {
	content: "";

	position: absolute;
	top: -160px;
	right: -100px;

	width: 440px;
	height: 440px;

	border-radius: 50%;

	background: rgba(46, 220, 225, 0.055);
	filter: blur(10px);

	pointer-events: none;
}

.artist-hero__photo {
	position: relative;
	z-index: 1;

	width: 250px;
	height: 250px;

	overflow: hidden;

	border: 1px solid rgba(46, 220, 225, 0.22);
	border-radius: 50%;

	background: #10283c;

	box-shadow:
		0 20px 44px rgba(0, 0, 0, 0.26),
		0 0 0 7px rgba(46, 220, 225, 0.035);
}

.artist-hero__photo img {
	display: block;

	width: 100%;
	height: 100%;
	max-width: none;

	object-fit: cover;
	object-position: center;
}

.artist-hero__content {
	position: relative;
	z-index: 1;

	width: 100%;
	max-width: 760px;
	min-width: 0;
}

.artist-hero__label {
	margin: 0 0 10px;

	color: #2de2d6;

	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.artist-hero__title {
	margin: 0;

	color: #ffffff;

	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.08;
}

.artist-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	margin: 16px 0 18px;
	gap: 10px;
}

.artist-hero__meta-item {
	display: inline-flex;
	align-items: center;

	padding: 7px 11px;
	gap: 7px;

	color: #a4bbcc;

	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(124, 170, 203, 0.12);
	border-radius: 999px;

	font-size: 12px;
}

.artist-hero__meta-item > span {
	color: #2edce1;
}

.artist-hero__description {
	max-width: 680px;
	margin: 0 0 24px;

	color: #96afc3;

	font-size: 14px;
	line-height: 1.75;
}

.artist-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	margin: 24px 0 0;
	gap: 12px;
}

.artist-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 44px;
	padding: 0 19px;
	gap: 9px;

	color: #dceaf3;
	text-decoration: none;

	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(125, 170, 203, 0.16);
	border-radius: 11px;

	font-size: 13px;
	font-weight: 800;

	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.artist-hero__button:hover {
	color: #ffffff;

	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(46, 220, 225, 0.3);

	transform: translateY(-2px);
}

.artist-hero__button--primary {
	color: #07111d;

	background:
		linear-gradient(
			135deg,
			#3ce9e7,
			#27cdd9
		);

	border-color: #2edce1;
}

.artist-hero__button--primary:hover {
	color: #06141e;

	background: #55edf0;
	border-color: #55edf0;

	box-shadow:
		0 10px 25px rgba(39, 205, 217, 0.18);

	transform: translateY(-1px);
}

.artist-section {
	width: 100%;

	margin: 42px 0 34px;
}

.artist-tracks {
	width: 100%;
}

.artist-tracks__empty {
	padding: 20px;

	color: #7893a8;

	background: rgba(18, 40, 59, 0.58);
	border: 1px dashed rgba(119, 164, 198, 0.18);
	border-radius: 15px;

	font-size: 13px;
	text-align: center;
}

.artist-about__content {
	padding: 26px 28px;

	color: #9cb2c4;

	background:
		linear-gradient(
			145deg,
			rgba(20, 43, 63, 0.83),
			rgba(12, 29, 44, 0.88)
		);

	border: 1px solid rgba(115, 164, 199, 0.13);
	border-radius: 18px;

	font-size: 14px;
	line-height: 1.8;
}

.artist-about__content p {
	margin-top: 0;
}

.artist-about__content > *:last-child {
	margin-bottom: 0;
}


/* ==================================================
   СПІЛЬНІ ПОСИЛАННЯ
================================================== */

.section__title > a,
.section__title-link {
	color: inherit;
	text-decoration: none;

	transition: color 0.25s ease;
}

.section__title > a:hover,
.section__title-link:hover {
	color: #3ce9e7;
}

.genre-pill__title {
	display: inline-block;
}
/* ==================================================
   ARTISTS CATEGORY — ACTUAL ARTIST-ITEM TEMPLATE
================================================== */

.artists-page {
	width: 100%;
	min-width: 0;
}

.artists-page__header {
	width: 100%;
	margin: 0 0 32px;
}

/* Сітка */
.artists-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	align-items: start;
	justify-items: center;

	width: 100%;
	min-width: 0;

	margin: 34px 0 0;
	gap: 42px 30px;
}

/* Картка */
.artists-grid .artist-item {
	display: block;

	width: 100%;
	min-width: 0;

	margin: 0;
	padding: 0;

	text-align: center;

	transition: transform 0.24s ease;
}

.artists-grid .artist-item__link {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 100%;
	min-width: 0;

	color: #ffffff;
	text-decoration: none;
}

/* Обгортка фото */
.artists-grid .artist-item__visual {
	position: relative;

	display: block;

	width: min(330px, 100%);
	aspect-ratio: 1 / 1;

	margin: 0 auto;

	border-radius: 50%;

	isolation: isolate;
}

/* Кругле фото */
.artists-grid .artist-item__photo {
	position: relative;

	display: block;

	width: 100%;
	height: 100%;

	overflow: hidden;

	border: 1px solid rgba(45, 212, 219, 0.42);
	border-radius: 50%;

	background: #15283a;

	box-shadow:
		0 10px 28px rgba(0, 0, 0, 0.18);

	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.artists-grid .artist-item__photo img {
	display: block;

	width: 100%;
	height: 100%;
	max-width: none;

	object-fit: cover;
	object-position: center;

	border-radius: inherit;

	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}

/* Затемнення */
.artists-grid .artist-item__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background:
		linear-gradient(
			180deg,
			rgba(7, 17, 29, 0.04) 15%,
			rgba(7, 17, 29, 0.66) 100%
		);

	opacity: 0;

	pointer-events: none;

	transition: opacity 0.25s ease;
}


/* Ім’я */
.artists-grid .artist-item__name {
	display: flex;
	align-items: flex-start;
	justify-content: center;

	width: 205px;
	max-width: 100%;
	min-height: 44px;

	margin: 14px auto 0;
	padding: 0;

	color: #ffffff;

	font-size: 16px;
	font-weight: 750;
	line-height: 1.35;
	text-align: center;

	overflow-wrap: anywhere;

	transition: color 0.22s ease;
}

/* Прибираємо старий білий трикутник під фото */
.artists-grid .artist-item__link > .fa-play,
.artists-grid .artist-item__link > .fas.fa-play,
.artists-grid .artist-item__link > .fal.fa-play,
.artists-grid .artist-item__visual + .fa-play,
.artists-grid .artist-item__name::before,
.artists-grid .artist-item__name::after {
	display: none !important;
	content: none !important;
}

/* Hover */
.artists-grid .artist-item:hover {
	transform: translateY(-5px);
}

.artists-grid .artist-item:hover .artist-item__photo {
	border-color: rgba(45, 212, 219, 0.92);

	box-shadow:
		0 0 0 4px rgba(45, 212, 219, 0.06),
		0 16px 38px rgba(0, 0, 0, 0.25),
		0 0 24px rgba(45, 212, 219, 0.16);
}

.artists-grid .artist-item:hover .artist-item__photo img {
	transform: scale(1.06);
	filter: brightness(0.72);
}

.artists-grid .artist-item:hover .artist-item__overlay {
	opacity: 1;
}

.artists-grid .artist-item:hover .artist-item__name {
	color: #3ce9e7;
}

/* Клавіатурна навігація */
.artists-grid .artist-item__link:focus-visible {
	outline: none;
}

.artists-grid .artist-item__link:focus-visible .artist-item__photo {
	border-color: #3ce9e7;

	box-shadow:
		0 0 0 4px rgba(60, 233, 231, 0.14);
}
/* ==================================================
   ARTIST CARD — REAL PLAY ICON
================================================== */

.artists-grid .artist-item__overlay .fa-play,
.artists-grid .artist-item__overlay .fas.fa-play {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 62px;
	height: 62px;

	padding-left: 3px;

	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;

	background: linear-gradient(
		135deg,
		#3ce9e7,
		#27cdd9
	);

	color: #071720;

	font-size: 19px;
	line-height: 1;

	box-shadow:
		0 12px 30px rgba(39, 205, 217, 0.3);

	transform: scale(0.76);

	transition:
		transform 0.24s ease,
		box-shadow 0.24s ease;
}

/* Font Awesome малює сам трикутник через ::before */
.artists-grid .artist-item__overlay .fa-play::before,
.artists-grid .artist-item__overlay .fas.fa-play::before {
	display: block;

	margin: 0;

	color: inherit;
	font-size: inherit;
	line-height: 1;
}

/* Поява кнопки при наведенні */
.artists-grid .artist-item:hover .artist-item__overlay .fa-play,
.artists-grid .artist-item:hover .artist-item__overlay .fas.fa-play {
	transform: scale(1);
}
/* ==================================================
   PLAYLISTS / GENRES — UNIFIED PAGE WIDTH
================================================== */

.playlists-page,
.genres-page {
	display: block;
	width: 100%;
	max-width: none;
	min-width: 0;
}

.playlists-grid,
.genres-grid {
	width: 100%;
	max-width: none;
	min-width: 0;
}

.playlists-page > .seo-content,
.genres-page > .seo-content {
	width: 100%;
	max-width: none;
	margin: 42px 0 0;
}
.playlists-page .seo-content,
.genres-page .seo-content {
	margin-top: 42px;
	border-radius: 16px;
}
/* ==================================================
   DESKTOP — МАКСИМУМ 7 ВИКОНАВЦІВ
================================================== */

@media screen and (min-width: 1200px) {

	.section--artists .artist-row > .artist-preview:nth-child(n + 8) {
		display: none !important;
	}

}
/* =========================================================
   SHARE POPUP
========================================================= */

.share-popup {
	position: fixed;
	inset: 0;

	z-index: 10050;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 20px;
}


.share-popup[hidden] {
	display: none;
}


.share-popup__overlay {
	position: absolute;
	inset: 0;

	background: rgba(2, 8, 16, 0.74);

	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}


.share-popup__dialog {
	position: relative;
	z-index: 1;

	width: min(420px, 100%);

	padding: 28px;

	border: 1px solid rgba(45, 226, 214, 0.18);
	border-radius: 20px;

	background:
		linear-gradient(
			145deg,
			#122338 0%,
			#0d1b2c 100%
		);

	box-shadow:
		0 28px 80px rgba(0, 0, 0, 0.42);
}


/* CLOSE */

.share-popup__close {
	position: absolute;

	top: 14px;
	right: 14px;

	width: 34px;
	height: 34px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0;

	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;

	background: rgba(255, 255, 255, 0.035);

	color: #8ea3b9;

	font-size: 14px;

	cursor: pointer;

	transition: .18s ease;
}


.share-popup__close:hover {
	border-color: rgba(45, 226, 214, 0.22);

	background: rgba(45, 226, 214, 0.08);

	color: #2de2d6;
}


/* TOP ICON */

.share-popup__icon {
	width: 44px;
	height: 44px;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 18px;

	border: 1px solid rgba(45, 226, 214, 0.22);
	border-radius: 12px;

	background: rgba(45, 226, 214, 0.055);

	color: #2de2d6;

	font-size: 17px;
}


/* TEXT */

.share-popup__title {
	margin: 0 0 7px;

	color: #f4f8fb;

	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
}


.share-popup__track {
	margin: 0 0 22px;

	color: #8198af;

	font-size: 14px;
	line-height: 1.5;
}


/* SERVICES */

.share-popup__services {
	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 10px;

	margin-bottom: 12px;
}


.share-popup__service {
	min-height: 72px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 8px;

	padding: 10px;

	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 13px;

	background: rgba(255, 255, 255, 0.025);

	color: #c6d2df;

	font-size: 13px;

	text-decoration: none;

	transition:
		background-color .18s ease,
		border-color .18s ease,
		color .18s ease,
		transform .18s ease;
}


.share-popup__service > span:first-child {
	font-size: 19px;
}


.share-popup__service:hover {
	border-color: rgba(45, 226, 214, 0.26);

	background: rgba(45, 226, 214, 0.07);

	color: #2de2d6;

	transform: translateY(-1px);
}


/* COPY */

.share-popup__copy {
	width: 100%;
	min-height: 44px;

	display: flex;
	align-items: center;
	justify-content: center;

	gap: 9px;

	padding: 0 16px;

	border: 1px solid rgba(45, 226, 214, 0.20);
	border-radius: 12px;

	background: rgba(45, 226, 214, 0.065);

	color: #2de2d6;

	font-family: inherit;

	font-size: 13px;
	font-weight: 600;

	cursor: pointer;

	transition:
		background-color .18s ease,
		border-color .18s ease,
		color .18s ease;
}


.share-popup__copy:hover {
	border-color: rgba(45, 226, 214, 0.36);

	background: rgba(45, 226, 214, 0.105);
}


.share-popup__copy.is-copied {
	border-color: rgba(45, 226, 214, 0.34);

	background: rgba(45, 226, 214, 0.11);

	color: #47eee3;
}


/* BODY LOCK */

body.share-popup-open {
	overflow: hidden;
}


/* MOBILE */

@media screen and (max-width: 600px) {

	.share-popup {
		align-items: flex-end;

		padding: 10px;
	}


	.share-popup__dialog {
		width: 100%;

		padding: 24px 18px 18px;

		border-radius: 20px 20px 14px 14px;
	}


	.share-popup__services {
		gap: 8px;
	}


	.share-popup__service {
		min-height: 68px;
	}


}


/* ІКОНКА */

.track-page__actions .track-page__share > span:first-child {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: 26px;
	height: 26px;
	flex: 0 0 26px;

	margin: 0 !important;
	padding: 0 !important;

	border-radius: 8px;

	background: rgba(45, 226, 214, 0.08);

	color: #2de2d6 !important;

	font-size: 12px !important;
	line-height: 1 !important;
}


/* ТЕКСТ */

.track-page__actions .track-page__share > span:last-child {
	margin: 0 !important;
	padding: 0 !important;

	color: inherit !important;

	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
}


/* HOVER */

.track-page__actions .track-page__share:hover {
	border-color: rgba(45, 226, 214, 0.46) !important;

	background: rgba(45, 226, 214, 0.075) !important;

	color: #ffffff !important;

	transform: translateY(-1px) !important;
}


.track-page__actions .track-page__share:hover > span:first-child {
	background: rgba(45, 226, 214, 0.14);

	color: #43e9df !important;
}


.track-page__actions .track-page__share:active {
	transform: scale(0.98) !important;
}
/* =========================================================
   ZVUKATO — TRACK LIST / DESKTOP FINAL
========================================================= */

.track-list {
	width: 100%;
	min-width: 0;

	display: flex;
	flex-direction: column;

	overflow: hidden;

	border: 1px solid rgba(102, 151, 190, 0.16);
	border-radius: 14px;

	background:
		linear-gradient(
			180deg,
			rgba(24, 45, 66, 0.94) 0%,
			rgba(20, 39, 58, 0.94) 100%
		);

	box-shadow:
		0 10px 26px rgba(3, 11, 20, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.025);
}


/* =========================================================
   TRACK ITEM
========================================================= */

.track-list .short-item {
	display: block;

	width: 100%;
	min-width: 0;

	margin: 0;
	padding: 0;

	border: 0;

	background: transparent;
}


.track-list .short-item + .short-item {
	border-top:
		1px solid rgba(119, 166, 205, 0.09);
}


/* =========================================================
   TRACK GRID
========================================================= */

.track-list .short-item__inner {
	display: grid;

	grid-template-columns:
		34px
		46px
		minmax(0, 1.55fr)
		minmax(0, 1fr)
		48px
		74px;

	align-items: center;

	column-gap: 14px;

	width: 100%;
	min-width: 0;
	min-height: 58px;

	padding: 7px 14px;

	box-sizing: border-box;

	cursor: pointer;

	transition:
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.track-list .short-item__inner:hover {
	background:
		rgba(45, 73, 98, 0.34);

	box-shadow:
		inset 3px 0 0
		rgba(40, 206, 200, 0.72);
}


/* =========================================================
   PLAY
========================================================= */

.track-list .short-item__play {
	grid-column: 1;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	justify-self: center;

	width: 26px;
	height: 26px;
	min-width: 26px;
	min-height: 26px;

	margin: 0;
	padding: 0;

	border: 1px solid rgba(37, 216, 208, 0.48);
	border-radius: 50%;

	background:
		rgba(37, 216, 208, 0.055);

	color: #25d8d0;

	font-size: 10px;
	line-height: 1;

	box-shadow: none;

	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}


.track-list .short-item__play span {
	margin: 0 0 0 1px;
	padding: 0;

	color: inherit;

	font-size: 10px;
	line-height: 1;
}


.track-list .short-item__play:hover {
	background: #25d8d0;

	border-color: #25d8d0;

	color: #071720;

	transform: scale(1.04);
}


.track-list .short-item__play:active {
	transform: scale(0.94);
}


.track-list .short-item__play:focus-visible {
	outline: none;

	box-shadow:
		0 0 0 3px
		rgba(37, 216, 208, 0.16);
}
/* =========================================================
   TRACK LIST — PLAY BUTTON
   Єдиний вигляд для всіх списків треків
========================================================= */

.track-list button.short-item__play {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: 28px !important;
	height: 28px !important;
	min-width: 28px !important;
	min-height: 28px !important;

	margin: 0 !important;
	padding: 0 !important;

	border: 1px solid rgba(37, 216, 208, 0.48) !important;
	border-radius: 50% !important;

	background: rgba(37, 216, 208, 0.055) !important;
	background-image: none !important;

	color: #25d8d0 !important;

	font-size: 10px !important;
	line-height: 1 !important;

	box-shadow: none !important;

	cursor: pointer !important;

	appearance: none !important;
	-webkit-appearance: none !important;

	transition:
		background-color .18s ease,
		border-color .18s ease,
		color .18s ease,
		transform .18s ease !important;
}

.track-list button.short-item__play span {
	display: block !important;

	margin: 0 0 0 1px !important;
	padding: 0 !important;

	color: inherit !important;

	font-size: 10px !important;
	line-height: 1 !important;
}

.track-list button.short-item__play:hover {
	border-color: #25d8d0 !important;

	background: #25d8d0 !important;

	color: #071720 !important;

	transform: scale(1.04) !important;
}

.track-list button.short-item__play:active {
	transform: scale(.94) !important;
}

.track-list button.short-item__play:focus-visible {
	outline: none !important;

	box-shadow:
		0 0 0 3px
		rgba(37, 216, 208, 0.16) !important;
}


.track-list .shortstory-track .short-item__share,
.track-list .shortstory-track .short-item__download {
	width: 32px;
	height: 32px;
}


/* ACTIVE TRACK */

.track-list .short-item__play:has(.fa-pause),
.track-list .short-item.is-playing .short-item__play,
.track-list .short-item.js-item-current .short-item__play,
.track-list .short-item__play.is-playing {
	background: #25d8d0;

	border-color: #25d8d0;

	color: #071720;

	box-shadow:
		0 0 0 4px rgba(37, 216, 208, 0.09),
		0 0 18px rgba(37, 216, 208, 0.22);
}


.track-list .short-item.is-playing .short-item__inner,
.track-list .short-item.js-item-current .short-item__inner {
	background:
		linear-gradient(
			90deg,
			rgba(40, 206, 200, 0.11),
			rgba(40, 206, 200, 0.025) 42%,
			transparent 100%
		);

	box-shadow:
		inset 3px 0 0 #28cec8;
}


/* =========================================================
   COVER
========================================================= */

.track-list .short-item__img {
	grid-column: 2;

	display: block;

	width: 42px;
	height: 42px;
	min-width: 42px;

	margin: 0;

	overflow: hidden;

	border-radius: 8px;

	background:
		rgba(255, 255, 255, 0.04);

	text-decoration: none;
}


.track-list .short-item__img img {
	display: block;

	width: 100%;
	height: 100%;

	max-width: none;

	object-fit: cover;
	object-position: center;

	border: 0;
}


/* =========================================================
   TITLE
========================================================= */

.track-list .short-item__title {
	grid-column: 3;

	display: block;

	width: 100%;
	min-width: 0;

	margin: 0;
	padding: 0 0 0 2px;

	overflow: hidden;

	text-overflow: ellipsis;
	white-space: nowrap;

	color:
		rgba(255, 255, 255, 0.96);

	font-size: 14px;
	font-weight: 750;
	line-height: 1.3;

	text-decoration: none;

	transition:
		color 0.18s ease;
}


.track-list .short-item__title:hover {
	color: #25d8d0;
}


/* =========================================================
   ARTIST
========================================================= */

.track-list .short-item__artist {
	grid-column: 4;

	display: block;

	width: 100%;
	min-width: 0;

	margin: 0;

	overflow: hidden;

	text-overflow: ellipsis;
	white-space: nowrap;

	color:
		rgba(151, 188, 218, 0.84);

	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
}


.track-list .short-item__artist-link,
.track-list .short-item__artist-name {
	display: block;

	width: 100%;
	min-width: 0;

	overflow: hidden;

	text-overflow: ellipsis;
	white-space: nowrap;

	color: inherit;

	font-size: inherit;
	line-height: inherit;

	text-decoration: none;
}


.track-list .short-item__artist-link:hover {
	color: #25d8d0;
}


/* =========================================================
   TIME
========================================================= */

.track-list .short-item__time {
	grid-column: 5;

	display: block;

	width: 48px;
	min-width: 48px;

	margin: 0;
	padding: 0;

	justify-self: end;

	color: rgba(153, 184, 211, 0.84);

	font-size: 12px;
	font-variant-numeric: tabular-nums;
	line-height: 1;

	text-align: right;
	white-space: nowrap;
}

/* =========================================================
   ACTIONS
   SHARE + DOWNLOAD
========================================================= */

.track-list .short-item__actions {
	grid-column: 6;

	display: flex;
	align-items: center;
	justify-content: flex-end;

	width: 74px;
	min-width: 74px;

	gap: 8px;

	margin: 0;
	padding: 0;

	justify-self: end;
}



/* SHARE + DOWNLOAD — ПОВНІСТЮ ОДНАКОВІ */

.track-list .short-item__actions a.short-item__share,
.track-list .short-item__actions a.short-item__download {
	position: static !important;

	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	flex: 0 0 32px !important;

	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	min-height: 32px !important;
	max-width: 32px !important;
	max-height: 32px !important;

	margin: 0 !important;
	padding: 0 !important;

	border: 1px solid rgba(37, 216, 208, 0.18) !important;
	border-radius: 9px !important;

	background: rgba(37, 216, 208, 0.055) !important;
	background-image: none !important;

	color: #91abc3 !important;

	font-family: inherit !important;
	font-size: 12px !important;
	line-height: 1 !important;

	text-decoration: none !important;

	box-shadow: none !important;

	appearance: none !important;
	-webkit-appearance: none !important;

	cursor: pointer !important;

	transition:
		color .18s ease,
		background-color .18s ease,
		border-color .18s ease,
		transform .18s ease !important;
}


.track-list .short-item__actions a.short-item__share span,
.track-list .short-item__actions a.short-item__download span {
	display: block !important;

	margin: 0 !important;
	padding: 0 !important;

	color: inherit !important;

	font-size: 12px !important;
	line-height: 1 !important;

	transform: none !important;
}


.track-list .short-item__actions a.short-item__share:hover,
.track-list .short-item__actions a.short-item__download:hover {
	color: #25d8d0 !important;

	background: rgba(37, 216, 208, 0.11) !important;

	border-color: rgba(37, 216, 208, 0.34) !important;

	transform: translateY(-1px) !important;
}

.track-list .short-item__share:active,
.track-list .short-item__download:active {
	transform: scale(0.95);
}


/* =========================================================
   TRACK LIST — 901–1200 PX
========================================================= */

@media screen and (min-width: 901px) and (max-width: 1200px) {

	.track-list .short-item__inner {
		display: grid !important;

		grid-template-columns:
			30px
			40px
			minmax(0, 1.4fr)
			minmax(0, 0.9fr)
			42px
			66px !important;

		align-items: center !important;

		column-gap: 11px !important;

		width: 100% !important;
		min-width: 0 !important;
		min-height: 56px !important;

		padding: 6px 10px !important;

		box-sizing: border-box !important;
	}

	.track-list .short-item__play {
		width: 26px !important;
		height: 26px !important;
		min-width: 26px !important;
		min-height: 26px !important;
	}


	.track-list .short-item__img {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
	}


	.track-list .short-item__title {
		font-size: 12px !important;
	}


	.track-list .short-item__artist,
	.track-list .short-item__artist-link,
	.track-list .short-item__artist-name {
		font-size: 11px !important;
	}


	/* TIME */

	.track-list .short-item__time {
		grid-column: 5 !important;

		width: 42px !important;
		min-width: 42px !important;

		margin: 0 !important;
		padding: 0 !important;

		justify-self: end !important;

		font-size: 10px !important;

		text-align: right !important;
	}


	/* ACTIONS */

	.track-list .short-item__actions {
		grid-column: 6 !important;

		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;

		width: 66px !important;
		min-width: 66px !important;

		gap: 6px !important;

		margin: 0 !important;
		padding: 0 !important;

		justify-self: end !important;
	}


	.track-list .short-item__actions a.short-item__share,
.track-list .short-item__actions a.short-item__download {
		flex: 0 0 30px !important;

		width: 30px !important;
		height: 30px !important;
		min-width: 30px !important;
		min-height: 30px !important;
		max-width: 30px !important;
		max-height: 30px !important;

		font-size: 11px !important;
	}


	.track-list .short-item__actions a.short-item__share span,
.track-list .short-item__actions a.short-item__download span {
		font-size: 11px !important;
	}

}
/* =========================================================
   SHARE POPUP BUTTONS — FINAL OVERRIDE COMMON.CSS
========================================================= */


/* =========================
   CLOSE
========================= */

html body .share-popup button.share-popup__close {
	position: absolute !important;
	top: 14px !important;
	right: 14px !important;

	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
	max-width: 34px !important;
	max-height: 34px !important;

	margin: 0 !important;
	padding: 0 !important;

	border: 1px solid rgba(45, 226, 214, 0.22) !important;
	border-radius: 10px !important;

	background: rgba(45, 226, 214, 0.05) !important;
	background-color: rgba(45, 226, 214, 0.05) !important;
	background-image: none !important;

	color: #91abc3 !important;

	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1 !important;

	text-transform: none !important;
	letter-spacing: normal !important;
	white-space: normal !important;

	box-shadow: none !important;
	text-shadow: none !important;

	cursor: pointer !important;

	appearance: none !important;
	-webkit-appearance: none !important;

	transition:
		color .18s ease,
		background-color .18s ease,
		border-color .18s ease,
		transform .18s ease !important;
}


html body .share-popup button.share-popup__close:hover {
	background: rgba(45, 226, 214, 0.11) !important;
	background-color: rgba(45, 226, 214, 0.11) !important;

	border-color: rgba(45, 226, 214, 0.42) !important;

	color: #2de2d6 !important;

	transform: translateY(-1px) !important;
}


html body .share-popup button.share-popup__close:active {
	transform: scale(0.94) !important;
}


html body .share-popup button.share-popup__close span {
	margin: 0 !important;
	padding: 0 !important;

	color: inherit !important;

	font-size: 13px !important;
	line-height: 1 !important;
}


/* =========================
   COPY LINK
========================= */

html body .share-popup button.share-popup__copy {
	position: static !important;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: 100% !important;
	height: 46px !important;
	min-height: 46px !important;
	max-height: 46px !important;

	gap: 9px !important;

	margin: 0 !important;
	padding: 0 16px !important;

	border: 1px solid rgba(45, 226, 214, 0.24) !important;
	border-radius: 12px !important;

	background: rgba(45, 226, 214, 0.065) !important;
	background-color: rgba(45, 226, 214, 0.065) !important;
	background-image: none !important;

	color: #2de2d6 !important;

	font-family: "Manrope", sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1 !important;

	text-transform: none !important;
	letter-spacing: 0 !important;
	white-space: nowrap !important;

	box-shadow: none !important;
	text-shadow: none !important;

	cursor: pointer !important;

	appearance: none !important;
	-webkit-appearance: none !important;

	transition:
		background-color .18s ease,
		border-color .18s ease,
		color .18s ease,
		transform .18s ease !important;
}


html body .share-popup button.share-popup__copy:hover {
	background: rgba(45, 226, 214, 0.11) !important;
	background-color: rgba(45, 226, 214, 0.11) !important;

	border-color: rgba(45, 226, 214, 0.42) !important;

	color: #43e9df !important;

	transform: translateY(-1px) !important;
}


html body .share-popup button.share-popup__copy:active {
	transform: scale(0.985) !important;
}


html body .share-popup button.share-popup__copy.is-copied {
	background: rgba(45, 226, 214, 0.10) !important;
	background-color: rgba(45, 226, 214, 0.10) !important;

	border-color: rgba(45, 226, 214, 0.38) !important;

	color: #43e9df !important;
}


html body .share-popup button.share-popup__copy span {
	margin: 0 !important;
	padding: 0 !important;

	color: inherit !important;

	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: inherit !important;
	line-height: 1 !important;

	text-transform: none !important;
	letter-spacing: 0 !important;
}
.track-page__hero {
	position: relative;
}


.track-page__share-icon {
	position: absolute;

	top: 22px;
	right: 22px;

	z-index: 3;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;

	margin: 0;
	padding: 0;

	border: 1px solid rgba(45, 226, 214, 0.18);
	border-radius: 10px;

	background: rgba(45, 226, 214, 0.045);

	color: #8ea9c2;

	text-decoration: none;

	box-shadow: none;

	transition:
		color .18s ease,
		background-color .18s ease,
		border-color .18s ease,
		transform .18s ease;
}


.track-page__share-icon span {
	margin: 0;
	padding: 0;

	color: inherit;

	font-size: 14px;
	line-height: 1;
}


.track-page__share-icon:hover {
	color: #2de2d6;

	background: rgba(45, 226, 214, 0.09);

	border-color: rgba(45, 226, 214, 0.36);

	transform: translateY(-1px);
}


.track-page__share-icon:active {
	transform: scale(.95);
}
/* ==================================================
   ZVUKATO SEARCH BUTTON — FINAL
================================================== */

html body #quicksearch {
	position: relative !important;
}

html body #quicksearch button[type="submit"] {
	position: absolute !important;
	top: 50% !important;
	right: 12px !important;
	z-index: 10 !important;

	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	min-height: 32px !important;

	margin: 0 !important;
	padding: 0 !important;

	border: 0 !important;
	border-radius: 0 !important;

	background: transparent !important;
	background-image: none !important;

	color: #25d8d0 !important;

	box-shadow: none !important;

	cursor: pointer !important;

	transform: translateY(-50%) !important;

	appearance: none !important;
	-webkit-appearance: none !important;
}

html body #quicksearch button[type="submit"]::before,
html body #quicksearch button[type="submit"]::after {
	content: none !important;
	display: none !important;
}

html body #quicksearch button[type="submit"] .fal.fa-search {
	display: inline-block !important;

	width: auto !important;
	height: auto !important;

	margin: 0 !important;
	padding: 0 !important;

	color: #25d8d0 !important;

	font-size: 17px !important;
	line-height: 1 !important;

	background: transparent !important;
	box-shadow: none !important;
}

html body #quicksearch button[type="submit"]:hover {
	background: transparent !important;
	color: #4be8df !important;

	transform: translateY(-50%) scale(1.08) !important;
}

html body #quicksearch button[type="submit"]:active {
	background: transparent !important;

	transform: translateY(-50%) scale(.94) !important;
}

html body #quicksearch button[type="submit"]:focus,
html body #quicksearch button[type="submit"]:focus-visible {
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
/* Відступ блоку "Інші треки" від головної картки треку */
.track-related-section--tracks {
    margin-top: 25px;
}

/* =========================================================
   ZVUKATO PAGINATION
   ========================================================= */

.pagination {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin: 32px 0 18px;
    gap: 16px;
}


/* =========================
   ЗАВАНТАЖИТИ ЩЕ
   ========================= */

.pagination__btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}

.pagination__btn-loader > a.wajax {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 160px;
    height: 42px;

    padding: 0 20px;

    border: 1px solid rgba(60, 233, 231, 0.24);
    border-radius: 11px;

    background: rgba(60, 233, 231, 0.06);

    color: #bcebea !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.pagination__btn-loader > a.wajax:hover {
    color: #ffffff !important;

    background: rgba(60, 233, 231, 0.12);
    border-color: rgba(60, 233, 231, 0.48);

    transform: translateY(-1px);
}


/* =========================
   НОМЕРИ СТОРІНОК
   ========================= */

.pagination__pages {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    width: 100%;
    gap: 7px;

    font-size: 0;
}


/* Звичайні сторінки */

.pagination__pages > a.wajax {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    margin: 0 !important;
    padding: 0 9px !important;

    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 9px;

    background: rgba(255, 255, 255, 0.035) !important;

    color: #8fa8bb !important;
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1 !important;

    text-decoration: none !important;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}


/* Hover */

.pagination__pages > a.wajax:hover {
    color: #ffffff !important;

    background: rgba(60, 233, 231, 0.09) !important;
    border-color: rgba(60, 233, 231, 0.35) !important;

    transform: translateY(-1px);
}


/* =========================
   АКТИВНА СТОРІНКА
   DLE генерує просто <span>
   ========================= */

.pagination__pages > span:not(.nav_ext) {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    margin: 0 !important;
    padding: 0 9px !important;

    border: 1px solid #3ce9e7;
    border-radius: 9px;

    background: linear-gradient(
        135deg,
        #3ce9e7,
        #27cdd9
    );

    color: #07111d !important;
    font-size: 13px !important;
    font-weight: 700;
    line-height: 1 !important;

    box-shadow: 0 4px 14px rgba(39, 205, 217, 0.18);
}


/* =========================
   ...
   ========================= */

.pagination__pages > .nav_ext {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-width: 24px;
    height: 36px;

    margin: 0 !important;
    padding: 0 2px !important;

    color: #637d91 !important;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1 !important;

    background: transparent !important;
    border: 0 !important;
}


/* =========================
   MOBILE
   ========================= */

@media screen and (max-width: 600px) {

    .pagination {
        margin: 26px 0 14px;
        gap: 14px;
    }

    .pagination__pages {
        gap: 5px;
    }

    .pagination__pages > a.wajax,
    .pagination__pages > span:not(.nav_ext) {
        min-width: 33px;
        height: 33px;

        padding: 0 7px !important;

        border-radius: 8px;

        font-size: 12px !important;
    }

    .pagination__pages > .nav_ext {
        min-width: 18px;
        height: 33px;
    }

    .pagination__btn-loader > a.wajax {
        min-width: 150px;
        height: 40px;

        padding: 0 17px;

        font-size: 13px;
    }
}
/* На останній сторінці DLE прибирає <a>,
   залишаючи лише текст "Завантажити ще".
   У такому випадку ховаємо весь блок. */
.pagination__btn-loader:not(:has(a)) {
    display: none !important;
}

/* ==================================================
   TRACK PAGE — CLICKABLE ARTIST
================================================== */

.track-page__artist-link {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.track-page__artist-link:hover,
.track-page__artist-link:focus-visible {
	color: #2de2d6;
	text-decoration: none;
}

