:root {
	--bg: #f4f7fb;
	--surface: #ffffff;
	--surface-2: #eef2f6;
	--surface-3: #171717;
	--text: #151515;
	--muted: #626f7f;
	--line: #d7e0ea;
	--accent: #0b7f78;
	--accent-2: #d7a928;
	--accent-3: #b94d3a;
	--danger: #b42318;
	--shadow: 0 18px 46px rgba(22, 35, 48, 0.08);
	--shadow-soft: 0 10px 28px rgba(22, 35, 48, 0.06);
	--radius: 8px;
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: var(--text);
	background:
		linear-gradient(180deg, rgba(11, 127, 120, 0.08), rgba(215, 169, 40, 0.05) 310px, rgba(244, 247, 251, 0) 520px),
		var(--bg);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

a:hover {
	color: var(--accent);
}

img,
svg {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

::placeholder {
	color: #8994a3;
	opacity: 1;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
.btn,
.bbcodes,
.fbutton,
.ui-button,
a.button,
a.btn {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	max-width: 100%;
	min-height: 42px;
	border: 1px solid var(--text);
	border-radius: 8px;
	background: var(--text);
	color: #fff;
	font-weight: 800;
	line-height: 1.1;
	padding: 0 18px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(23, 23, 23, 0.08);
	transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.button:hover,
.btn:hover,
.bbcodes:hover,
.fbutton:hover,
.ui-button:hover,
a.button:hover,
a.btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(15, 118, 110, 0.16);
}

button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
.button:active,
.btn:active,
.bbcodes:active,
.fbutton:active,
.ui-button:active {
	transform: translateY(0);
	box-shadow: 0 8px 18px rgba(15, 118, 110, 0.13);
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled,
.disabled {
	opacity: 0.58;
	cursor: not-allowed;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible,
.btn:focus-visible,
.bbcodes:focus-visible,
.fbutton:focus-visible,
.ui-button:focus-visible {
	outline: 0;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.18);
}

.sr-only,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 14px;
	left: 14px;
	z-index: 20;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--text);
	color: #fff;
	border-radius: var(--radius);
}

.site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(244, 247, 251, 0.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(215, 224, 234, 0.92);
}

.site-header__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 12px 20px 10px;
	display: grid;
	grid-template-columns: auto minmax(260px, 560px);
	gap: 18px;
	align-items: center;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 23px;
	letter-spacing: 0;
}

.brand img {
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(21, 21, 21, 0.18);
}

.quick-search,
.hero-search {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.quick-search input,
.hero-search input {
	width: 100%;
	min-width: 0;
	height: 46px;
	padding: 0 18px;
	background: transparent;
	border: 0;
	color: var(--text);
	outline: 0;
}

.quick-search button,
.hero-search button,
.copy-button {
	font-weight: 800;
}

.quick-search button {
	width: 42px;
	height: 42px;
	margin-right: 1px;
	padding: 0;
	border: 0;
	display: grid;
	place-items: center;
	border-radius: 7px;
}

.quick-search svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.site-nav {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 20px 12px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.site-nav ul,
.side-cats,
.pagination,
.track-card__meta,
.lyrics-head__meta {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav ul {
	display: flex;
	gap: 8px;
	align-items: center;
	min-width: max-content;
}

.site-nav a,
.side-cats a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.72);
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.site-nav a.is-active,
.site-nav a:hover,
.side-cats a:hover,
.side-cats a.is-active {
	background: var(--text);
	border-color: var(--text);
	color: #fff;
}

.site-main,
.site-footer {
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
}

.site-main {
	flex: 1;
	padding: 30px 0 48px;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	gap: 34px;
	align-items: center;
	padding: 38px;
	margin-bottom: 26px;
	border: 0;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(11, 127, 120, 0.26), rgba(21, 21, 21, 0) 42%),
		linear-gradient(135deg, #151515 0%, #222830 100%);
	color: #fff;
	box-shadow: 0 28px 80px rgba(21, 21, 21, 0.18);
	overflow: hidden;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--accent);
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero .eyebrow {
	color: var(--accent-2);
}

.hero h1,
.section-head h1,
.lyrics-head h1 {
	margin: 0;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.06;
}

.hero h1 {
	max-width: 690px;
	font-size: clamp(34px, 6vw, 62px);
}

.hero p:not(.eyebrow),
.lyrics-head p,
.section-head p:not(.eyebrow) {
	max-width: 720px;
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 18px;
}

.hero p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.76);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 24px;
}

.hero__actions a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 800;
}

.hero__actions a:hover {
	border-color: rgba(215, 169, 40, 0.7);
	color: #fff;
}

.hero__tool {
	display: grid;
	gap: 12px;
}

.hero-search {
	align-self: center;
	grid-template-columns: 1fr auto;
	min-height: 62px;
	background: #fff;
}

.hero-search input {
	height: 62px;
	font-size: 17px;
}

.hero-search button {
	margin-right: 8px;
	padding-inline: 24px;
}

.hero__pulse {
	display: grid;
	gap: 4px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.hero__pulse span,
.hero__pulse small {
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero__pulse strong {
	font-size: 24px;
	line-height: 1.15;
}

.section-head {
	margin-bottom: 24px;
	padding: 28px 30px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--accent);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}

.section-head h1 {
	font-size: clamp(30px, 4vw, 46px);
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 24px;
	align-items: start;
}

.is-full .content-layout {
	grid-template-columns: minmax(0, 1fr);
}

.is-full .side-column {
	display: none;
}

.content-column,
.side-panel,
.lyrics-card,
.related-block,
.comments-block,
.form-panel,
.notice {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}

.content-column {
	padding: 16px;
}

.block-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin: 4px 4px 16px;
}

.block-title h2,
.side-panel h2,
.lyrics-card__head h2,
.comments-block h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.2;
}

.block-title span {
	color: var(--muted);
	font-size: 14px;
}

.content-list {
	display: grid;
	gap: 10px;
}

.artist-cloud {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.artist-letter-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}

.artist-letter-nav a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 36px;
	padding: 7px 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--text);
	font-size: 14px;
	font-weight: 850;
}

.artist-letter-nav a:hover {
	border-color: rgba(11, 127, 120, 0.34);
	color: var(--accent);
}

.artist-letter-nav a.is-active {
	border-color: var(--accent);
	background: var(--accent);
	color: #fff;
}

.artist-letter-nav small {
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
}

.artist-letter-section {
	scroll-margin-top: 118px;
	margin-bottom: 28px;
}

.artist-letter-section__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 2px 12px;
}

.artist-letter-section__head h2 {
	margin: 0;
	font-size: 28px;
	line-height: 1;
}

.artist-letter-section__head span,
.artist-letter-section__head a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 9px;
	border-radius: 8px;
	background: var(--surface-2);
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.artist-letter-section__head a {
	margin-left: auto;
	color: var(--accent);
}

.artist-chip {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 78px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--text);
	font-weight: 800;
	box-shadow: var(--shadow-soft);
}

.artist-chip:hover {
	border-color: rgba(15, 118, 110, 0.34);
	background: #fbfefd;
}

.artist-chip__avatar {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	overflow: hidden;
	background: #151515;
	color: #fff;
	font-size: 21px;
	font-weight: 850;
}

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

.artist-chip__avatar--fallback {
	background:
		linear-gradient(135deg, rgba(11, 127, 120, 0.95), rgba(185, 77, 58, 0.92));
}

.artist-chip__name {
	min-width: 0;
	overflow-wrap: anywhere;
	line-height: 1.22;
}

.artist-chip small {
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.artist-hero {
	display: grid;
	grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 24px;
	padding: 28px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(11, 127, 120, 0.28), rgba(21, 21, 21, 0) 45%),
		#151515;
	color: #fff;
	box-shadow: 0 28px 80px rgba(21, 21, 21, 0.18);
	overflow: hidden;
}

.artist-hero__media {
	display: grid;
	place-items: center;
	width: 100%;
	max-width: 220px;
	min-height: 0;
	justify-self: start;
	align-self: center;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(215, 169, 40, 0.28), rgba(185, 77, 58, 0.25)),
		#202020;
}

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

.artist-hero__media span {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-size: clamp(64px, 12vw, 124px);
	font-weight: 850;
	color: rgba(255, 255, 255, 0.92);
}

.artist-hero__body {
	align-self: center;
	min-width: 0;
}

.artist-hero .eyebrow {
	color: var(--accent-2);
}

.artist-hero h1 {
	margin: 0;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.04;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.artist-hero p:not(.eyebrow) {
	max-width: 760px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
}

.artist-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.artist-hero__stats span,
.artist-hero__stats a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.artist-hero__stats strong {
	margin-right: 6px;
	color: var(--accent-2);
	font-size: 18px;
}

.artist-hero__stats a:hover {
	border-color: rgba(215, 169, 40, 0.68);
	color: #fff;
}

.tags-page__head {
	margin-bottom: 18px;
}

.cloud-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cloud-tags span {
	display: contents;
}

.cloud-tags a,
.tags_more a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 9px 13px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--text);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.cloud-tags a:hover,
.tags_more a:hover {
	border-color: rgba(15, 118, 110, 0.34);
	background: #fbfffc;
	color: var(--accent);
}

.tags_more {
	margin-top: 16px;
}

.track-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	padding: 16px 17px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #fff;
	content-visibility: auto;
	contain-intrinsic-size: 76px;
	box-shadow: 0 1px 0 rgba(21, 21, 21, 0.03);
}

.track-card:hover {
	border-color: rgba(15, 118, 110, 0.34);
	background: #fbfefd;
}

.track-card::before {
	content: "";
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 0;
	width: 3px;
	border-radius: 0 3px 3px 0;
	background: var(--accent);
	opacity: 0;
	transition: opacity 0.16s ease;
}

.track-card:hover::before {
	opacity: 1;
}

.track-card__label,
.mini-track span,
.related-card span {
	display: block;
	margin-bottom: 3px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.track-card h2 {
	margin: 0;
	font-size: 18px;
	line-height: 1.26;
}

.track-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	align-self: center;
	color: var(--muted);
	font-size: 13px;
	text-align: right;
}

.track-card__meta a {
	color: var(--muted);
	text-decoration: underline;
	text-decoration-color: rgba(95, 107, 122, 0.28);
	text-underline-offset: 3px;
}

.edit-link {
	color: var(--accent);
	font-size: 13px;
	font-weight: 750;
}

.side-column {
	display: grid;
	gap: 16px;
	position: sticky;
	top: 128px;
}

.side-panel {
	padding: 18px;
}

.side-list {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}

.mini-track,
.related-card {
	display: block;
	padding: 12px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid transparent;
}

.mini-track:hover,
.related-card:hover {
	border-color: rgba(15, 118, 110, 0.32);
	color: var(--text);
}

.mini-track strong,
.related-card strong {
	display: block;
	font-size: 15px;
	line-height: 1.35;
}

.side-panel--soft {
	background: var(--surface-2);
}

.side-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.lyrics-page {
	width: min(900px, 100%);
	margin: 0 auto;
}

.lyrics-head {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.lyrics-head__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.lyrics-head__meta span,
.lyrics-head__meta a {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--muted);
	font-size: 13px;
	font-weight: 750;
}

.lyrics-artist {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 15px;
}

.lyrics-artist span {
	font-weight: 750;
}

.lyrics-artist a {
	color: var(--accent);
	font-weight: 850;
	text-decoration: underline;
	text-decoration-color: rgba(15, 118, 110, 0.28);
	text-underline-offset: 4px;
}

.lyrics-head h1 {
	font-size: clamp(30px, 5vw, 50px);
}

.lyrics-card,
.related-block,
.comments-block,
.form-panel {
	margin-top: 20px;
	padding: 26px;
}

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

.copy-button {
	background: var(--accent);
	white-space: nowrap;
}

.copy-button[data-copied="1"] {
	background: #147a3d;
}

.lyrics-text {
	font-size: 19px;
	line-height: 1.78;
	color: #222;
}

.lyrics-text p {
	margin: 0 0 0.9em;
}

.lyrics-text br {
	line-height: 1.9;
}

.lyrics-text a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.prose-text {
	font-size: 18px;
	line-height: 1.76;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 16px;
}

.share-row {
	margin-top: 18px;
	padding: 14px 0;
}

.comments-block {
	width: min(900px, 100%);
	margin: 20px auto 0;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.pagination a,
.pagination span:not(.pagination__pages) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	font-weight: 750;
}

.pagination__pages {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
}

.form-panel,
.notice {
	padding: 22px;
}

.search-page {
	display: grid;
	gap: 18px;
}

.search-page__intro {
	padding: 0 2px;
}

.search-page__intro h1 {
	margin: 0;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.08;
}

.search-page__intro p {
	margin: 8px 0 0;
	max-width: 680px;
	color: var(--muted);
	font-size: 16px;
}

.search-form-panel {
	margin-top: 0;
}

.notice {
	margin-bottom: 18px;
	border-color: #f4d7a1;
	background: #fff7e4;
	color: #4c3714;
}

.notice--search {
	display: grid;
	gap: 6px;
	margin: 0;
	line-height: 1.45;
}

.notice--search b,
.notice--search span {
	display: block;
	min-width: 0;
}

.form-panel table {
	width: 100%;
}

.form-panel td,
.form-panel th {
	padding: 8px;
	text-align: left;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input:not([type]),
select,
textarea,
.f_input,
.f_textarea,
.textin {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--text);
	padding: 10px 12px;
	outline: 0;
	box-shadow: 0 1px 0 rgba(14, 30, 37, 0.02);
	transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

select {
	appearance: none;
	padding-right: 40px;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--muted) 50%),
		linear-gradient(135deg, var(--muted) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) calc(50% + 1px),
		calc(100% - 13px) calc(50% + 1px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

textarea,
.f_textarea {
	min-height: 130px;
	resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
	width: 18px;
	height: 18px;
	margin: 0 8px 0 0;
	accent-color: var(--accent);
	vertical-align: -3px;
}

input[type="file"] {
	width: 100%;
	padding: 10px;
	border: 1px dashed #b9c7d5;
	border-radius: 8px;
	background: var(--surface-2);
	color: var(--muted);
}

input[type="file"]::file-selector-button {
	margin-right: 12px;
	border: 0;
	border-radius: 999px;
	background: var(--text);
	color: #fff;
	font: inherit;
	font-weight: 800;
	padding: 9px 14px;
	cursor: pointer;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.quick-search:focus-within,
.hero-search:focus-within {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12), 0 10px 34px rgba(14, 30, 37, 0.07);
}

.quick-search input[type="search"],
.hero-search input[type="search"] {
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.quick-search input[type="search"] {
	height: 46px;
	padding: 0 18px;
}

.hero-search input[type="search"] {
	height: 62px;
	padding: 0 20px;
}

.quick-search input[type="search"]:focus,
.hero-search input[type="search"]:focus,
.quick-search input[type="search"]:focus-visible,
.hero-search input[type="search"]:focus-visible {
	border: 0;
	box-shadow: none;
}

.quick-search button:hover,
.hero-search button:hover {
	transform: none;
}

.form-wrap,
#sendmail,
#fullsearch {
	min-width: 0;
}

.form-wrap {
	display: grid;
	gap: 14px;
}

.form-wrap h1 {
	margin: 0 0 4px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.08;
	letter-spacing: 0;
}

.form-item,
.form-textarea {
	display: grid;
	gap: 8px;
	margin: 0;
}

.form-item label,
.form-textarea label,
.form-panel label,
.comments-block label {
	color: var(--muted);
	font-size: 14px;
	font-weight: 800;
}

.form-item.imp > label::after {
	content: " *";
	color: var(--danger);
}

.form-secur {
	display: grid;
	gap: 10px;
	max-width: 460px;
}

#sendmail input[type="text"],
#sendmail select,
#sendmail textarea,
.form-panel input[type="text"],
.form-panel select,
.form-panel textarea {
	width: 100% !important;
	max-width: 100%;
}

#sendmail textarea[style] {
	min-height: 160px !important;
}

#dle-captcha {
	display: inline-flex;
	max-width: 100%;
}

#dle-captcha img {
	width: 160px;
	height: 80px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	object-fit: cover;
}

.form-submit,
.form-panel .search > div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.form-submit {
	margin-top: 2px;
}

#searchtable table {
	width: 100% !important;
	border-collapse: separate;
	border-spacing: 0;
}

#searchtable td,
#searchtable th {
	padding: 0;
}

#fullsearch {
	width: 100%;
}

#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] {
	text-align: left;
}

#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	align-items: start;
}

#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody > tr {
	display: contents;
}

#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody > tr > td.search {
	display: block;
	width: auto !important;
	min-width: 0;
}

#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody > tr:last-child > td.search {
	grid-column: 1 / -1;
}

#fullsearch fieldset {
	min-width: 0;
	height: 100%;
	margin: 0 !important;
	padding: 18px !important;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fbfdff;
}

#fullsearch legend {
	padding: 0 8px;
	color: var(--text);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
}

#fullsearch fieldset table,
#fullsearch fieldset tbody,
#fullsearch fieldset tr,
#fullsearch fieldset td {
	display: block;
	width: 100% !important;
}

#fullsearch fieldset .search > div,
#fullsearch fieldset > div {
	margin: 0 !important;
	padding: 0 !important;
	display: grid;
	gap: 10px;
}

#fullsearch fieldset label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 4px 14px 0 0;
	color: var(--muted);
	line-height: 1.3;
}

#fullsearch input[type="checkbox"],
#fullsearch input[type="radio"] {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--accent);
}

#fullsearch select[multiple] {
	min-height: 150px;
}

#fullsearch #replylimit {
	max-width: 140px;
}

#fullsearch td[colspan="2"] > div {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 4px 0 0 !important;
}

#fullsearch #searchtable br {
	display: none;
}

#fullsearch #searchinput {
	flex: 1 1 280px;
	width: min(100%, 440px) !important;
}

#fullsearch .bbcodes {
	min-height: 44px;
}

#fullsearch #dofullsearch,
.form-panel .bbcodes + .bbcodes,
input[type="reset"] {
	background: var(--surface-2);
	border-color: var(--line);
	color: var(--text);
	box-shadow: none;
}

#fullsearch #dofullsearch:hover,
.form-panel .bbcodes + .bbcodes:hover,
input[type="reset"]:hover {
	background: #e5edf4;
	border-color: #c8d3df;
	color: var(--text);
}

.artist-search-results {
	margin: 20px 0 0;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}

.artist-search-results__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.artist-search-results__head h2 {
	margin: 0;
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: 0;
}

.artist-search-results__head span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--muted);
	font-size: 13px;
	font-weight: 900;
}

.artist-search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 10px;
}

.artist-search-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	min-height: 68px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fbfdff;
	color: var(--text);
	text-decoration: none;
	transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.artist-search-card:hover {
	border-color: var(--accent);
	background: #f2fbfa;
	color: var(--accent);
}

.artist-search-card__avatar {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	overflow: hidden;
	border-radius: 50%;
	background: var(--surface-2);
	color: var(--accent);
}

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

.artist-search-card__avatar--fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.artist-search-card__body {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.artist-search-card__body strong {
	overflow-wrap: anywhere;
	font-size: 15px;
	line-height: 1.2;
}

.artist-search-card__body small {
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 22px;
	padding: 30px 0 42px;
	border-top: 1px solid var(--line);
	color: var(--muted);
}

.footer-brand {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--text);
	font-weight: 850;
	font-size: 20px;
}

.site-footer p {
	margin: 0;
	max-width: 620px;
	font-size: 14px;
}

.site-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-content: start;
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 980px) {
	.site-header__inner,
	.hero,
	.artist-hero,
	.content-layout {
		grid-template-columns: 1fr;
	}

	.side-column {
		position: static;
		grid-template-columns: 1fr;
	}

	.site-header {
		position: static;
	}

	.hero {
		padding: 26px;
	}

	.artist-hero__media {
		width: min(280px, 100%);
		min-height: 0;
	}
}

@media (max-width: 720px) {
	.site-main,
	.site-footer {
		width: min(100% - 24px, var(--max));
	}

	.site-header__inner,
	.site-nav {
		padding-left: 12px;
		padding-right: 12px;
	}

	.quick-search {
		grid-template-columns: 1fr 44px;
	}

	.hero,
	.artist-hero,
	.section-head,
	.lyrics-head,
	.lyrics-card,
	.related-block,
	.comments-block,
	.form-panel {
		padding: 18px;
	}

	.content-column {
		padding: 12px;
	}

	.block-title,
	.lyrics-card__head,
	.site-footer {
		display: block;
	}

	.block-title span {
		display: block;
		margin-top: 4px;
	}

	.track-card {
		grid-template-columns: 1fr;
	}

	.artist-cloud {
		grid-template-columns: 1fr;
	}

	.artist-chip {
		grid-template-columns: 48px minmax(0, 1fr) auto;
		min-height: 72px;
	}

	.artist-chip__avatar {
		width: 48px;
		height: 48px;
	}

	.artist-hero__media {
		width: min(220px, 100%);
	}

	.track-card__meta {
		text-align: left;
	}

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

	#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody {
		display: block;
	}

	#fullsearch #searchtable > table,
	#fullsearch #searchtable > table > tbody,
	#fullsearch #searchtable > table > tbody > tr,
	#fullsearch #searchtable > table > tbody > tr > td,
	#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table,
	#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody,
	#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody > tr,
	#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody > tr > td {
		display: block !important;
		width: 100% !important;
	}

	#fullsearch #searchtable > table > tbody > tr > td.search > div[align="center"] > table > tbody > tr > td.search + td.search,
	#fullsearch fieldset + fieldset {
		margin-top: 12px !important;
	}

	#fullsearch fieldset {
		padding: 14px !important;
	}

	.artist-search-results {
		padding: 18px;
	}

	.artist-search-results__head {
		align-items: flex-start;
	}

	.artist-search-grid {
		grid-template-columns: 1fr;
	}

	.copy-button {
		margin-top: 12px;
		width: 100%;
	}

	.lyrics-text {
		font-size: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
