@charset "utf-8";

:root {
	--bg: #eef1f8;
	--bg-2: #e4e9f5;
	--surface: #ffffff;
	--text: #14182b;
	--muted: #5c647a;
	--line: #e4e8f2;
	--accent: #4f46e5;
	--accent-2: #6366f1;
	--accent-dark: #1e1b4b;
	--play: #4f46e5;
	--download: #059669;
	--download-hover: #047857;
	--radius: 18px;
	--radius-sm: 12px;
	--shadow: 0 10px 30px rgba(30, 27, 75, 0.08);
	--max: 1120px;
	--header-h: 64px;
	--font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { min-height: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	min-height: 100%;
	color: var(--text);
	font: 16px/1.5 var(--font);
	background:
		radial-gradient(1200px 400px at 10% -10%, #dfe4ff 0%, transparent 55%),
		var(--bg);
}

img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, textarea, select { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.visually-hidden,
.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;
	left: 12px;
	top: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	padding: 8px 12px;
	background: #fff;
	color: var(--text);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.page {
	width: min(100% - 24px, var(--max));
	margin: 0 auto 40px;
	padding-top: 24px;
	position: relative;
	z-index: 1;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	isolation: isolate;
	background: #fff;
	border-bottom: 1px solid var(--line);
}
.site-header__bar {
	width: min(100% - 24px, var(--max));
	margin: 0 auto;
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 12px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	color: var(--accent-dark);
	text-decoration: none;
	font-weight: 800;
	letter-spacing: -0.03em;
	font-size: 1.2rem;
}
.logo:hover { text-decoration: none; color: var(--accent); }
.logo__mark {
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background:
		linear-gradient(135deg, #4f46e5, #22d3ee);
	box-shadow: 0 6px 14px rgba(79, 70, 229, 0.35);
	position: relative;
}
.logo__mark::before,
.logo__mark::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 3px;
	border-radius: 2px;
	background: #fff;
	transform: translateX(-50%);
}
.logo__mark::before { height: 14px; top: 7px; }
.logo__mark::after { height: 8px; top: 10px; left: calc(50% + 6px); }

.search-form {
	flex: 1;
	display: flex;
	min-width: 0;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 999px;
	overflow: hidden;
}
.search-form__input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 10px 16px;
	outline: none;
	color: var(--text);
}
.search-form__btn {
	border: 0;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	padding: 10px 16px;
	cursor: pointer;
	white-space: nowrap;
}
.search-form__btn:hover { background: var(--accent-2); }

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 12px;
	background: var(--bg);
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
	content: "";
	position: absolute;
	left: 11px;
	right: 11px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: .2s transform, .2s opacity;
}
.nav-toggle span { top: 20px; }
.nav-toggle::before { top: 13px; }
.nav-toggle::after { top: 27px; }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
	width: min(100% - 24px, var(--max));
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 0 12px;
}
.site-nav a {
	color: var(--muted);
	font-weight: 600;
	font-size: .92rem;
	padding: 6px 12px;
	border-radius: 999px;
	text-decoration: none;
}
.site-nav a:hover {
	background: var(--bg);
	color: var(--accent);
	text-decoration: none;
}

/* Hero */
.hero {
	margin: 20px 0 22px;
	padding: 36px 28px;
	border-radius: 28px;
	color: #fff;
	background:
		radial-gradient(500px 180px at 90% 10%, rgba(34, 211, 238, .35), transparent 50%),
		linear-gradient(135deg, #1e1b4b 0%, #3730a3 55%, #4f46e5 100%);
	box-shadow: var(--shadow);
}
.hero__eyebrow {
	margin: 0 0 8px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .75rem;
	font-weight: 700;
	opacity: .8;
}
.hero h1 {
	margin: 0 0 10px;
	font-size: clamp(1.5rem, 3vw, 2.15rem);
	line-height: 1.2;
	letter-spacing: -.03em;
}
.hero__lead {
	margin: 0 0 18px;
	max-width: 46rem;
	font-size: 1.05rem;
	opacity: .92;
}
.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero__pills span {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,.14);
	font-size: .85rem;
	font-weight: 600;
}

/* Catalog */
.catalog {
	background: #fff;
	border: 1px solid var(--line);
	margin-bottom: 24px;
}
.catalog__head {
	padding: 16px 18px 12px;
	border-bottom: 1px solid var(--line);
}
.catalog__head h2 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -.02em;
}
.catalog__head p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: .9rem;
}
.catalog__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.catalog__list a {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 18px;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid var(--line);
	border-right: 1px solid var(--line);
}
.catalog__list a:nth-child(2n) { border-right: 0; }
.catalog__list a:nth-last-child(-n+2) { border-bottom: 0; }
.catalog__list a:hover {
	background: #f6f7fb;
	text-decoration: none;
	color: inherit;
}
.catalog__name {
	font-weight: 700;
	font-size: 1rem;
}
.catalog__list a:hover .catalog__name { color: var(--accent); }
.catalog__desc {
	color: var(--muted);
	font-size: .88rem;
}

main, aside, .content, .sidebar { float: none; width: auto; max-width: none; }

.layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 270px;
	gap: 20px;
	align-items: start;
}
.layout--home { grid-template-columns: 1fr; }

.content {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 18px 18px 22px;
	box-shadow: var(--shadow);
	min-width: 0;
}
.layout--home .content {
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.page-title,
.fullstory__title,
.static-page h1 {
	margin: 0 0 14px;
	font-size: clamp(1.25rem, 2.2vw, 1.7rem);
	letter-spacing: -.03em;
	line-height: 1.25;
}
.section-title {
	margin: 0 0 12px;
	font-size: 1.2rem;
	letter-spacing: -.02em;
}

.home-latest,
.desc-block,
.home-sub,
.related,
.static-page,
.info-box,
.searchpage {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: var(--shadow);
	margin-bottom: 16px;
}

.home-subs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin: 8px 0 16px;
}
.home-sub { margin: 0; }
.home-sub h2 { margin: 0 0 10px; font-size: 1.05rem; }
.home-sub nav,
.subcats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.chip-list,
.home-sub nav,
.subcats,
.mp3tag,
.mp3tag_sub {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.chip-list li,
.tag-menu,
.tag-menu_sub,
.home-sub li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.chip,
.tag-menu a,
.tag-menu_sub a,
.home-sub a {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--bg);
	color: var(--text);
	font-size: .88rem;
	font-weight: 600;
	text-decoration: none;
}
.chip:hover,
.tag-menu a:hover,
.tag-menu_sub a:hover,
.home-sub a:hover {
	background: #e0e7ff;
	color: var(--accent);
	text-decoration: none;
}

.subcats { margin: 0 0 16px; }

.desc-block h2 { font-size: 1.1rem; margin: 16px 0 8px; }
.desc-block p, .desc-block li { color: var(--muted); }
.desc-block ul, .desc-block ol { padding-left: 1.2rem; }
.desc-block ul { list-style: disc; }
.desc-block ol { list-style: decimal; }
.desc-block li { margin: 4px 0; }
.desc-block--cat:empty { display: none; }

/* Tracks */
.tracks { display: flex; flex-direction: column; }
.track, .mp3 {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	padding: 8px 4px;
	border-bottom: 1px solid var(--line);
}
.track:last-child, .mp3:last-child { border-bottom: 0; }
.mp3 audio { position: absolute; width: 0; height: 0; opacity: 0; pointer-events: none; }
.track-play {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--play);
	color: #fff;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
}
.track-play::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 7px 0 7px 12px;
	border-color: transparent transparent transparent #fff;
}
.track-play.is-playing::before {
	left: 50%;
	width: 12px;
	height: 14px;
	border: 0;
	background:
		linear-gradient(#fff, #fff) left / 4px 100% no-repeat,
		linear-gradient(#fff, #fff) right / 4px 100% no-repeat;
}
.track-play:hover { filter: brightness(1.08); }
.track-meta {
	min-width: 0;
	color: inherit;
	text-decoration: none;
	display: flex;
	flex-direction: column;
}
.track-meta:hover { text-decoration: none; }
.track-name {
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.track-artist {
	color: var(--muted);
	font-size: .88rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.track-get {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--download);
	color: #fff !important;
	font-size: .82rem;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
}
.track-get:hover { background: var(--download-hover); }
.mp3 > a {
	min-width: 0;
	color: inherit;
	text-decoration: none;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mp3 > a:hover { color: var(--accent); }

.dle_b_between,
.ad-slot {
	margin: 12px 0;
	text-align: center;
	overflow: hidden;
	grid-column: 1 / -1;
}

/* Fullstory */
.fullstory__title { margin-bottom: 16px; }
.player-card {
	padding: 18px;
	border-radius: 22px;
	background: linear-gradient(180deg, #f8fafc, #eef2ff);
	border: 1px solid var(--line);
	margin-bottom: 16px;
}
.player-card__top {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 14px;
}
.player-card__disc {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	flex-shrink: 0;
	background:
		radial-gradient(circle at 50% 50%, #111827 0 10px, transparent 11px),
		conic-gradient(from 210deg, #4f46e5, #22d3ee, #4f46e5);
	box-shadow: 0 8px 20px rgba(79, 70, 229, .25);
}
.player-card__artist { margin: 0; font-weight: 800; }
.player-card__track { margin: 2px 0 0; color: var(--muted); }
.player-card__cat { margin: 4px 0 0; font-size: .88rem; color: var(--muted); }
.player-card__audio audio {
	width: 100%;
	height: 40px;
	margin-bottom: 12px;
}
.btn-download {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 8px 12px;
	border-radius: 14px;
	background: var(--download);
	color: #fff !important;
	font-weight: 800;
	text-decoration: none !important;
	letter-spacing: -.01em;
	line-height: 1.15;
	text-align: center;
}
.btn-download small {
	font-weight: 600;
	font-size: .72rem;
	opacity: .82;
	letter-spacing: .03em;
}
.btn-download:hover { background: var(--download-hover); }
.btn-download--iphone {
	background: #111827;
}
.btn-download--iphone:hover { background: #000; }
.dl-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
.dl-lead {
	margin: 0 0 12px;
	font-size: .95rem;
	color: var(--text);
}
.dl-note, .hint, .rights-note { color: var(--muted); font-size: .9rem; }
.btn-download--ghost {
	background: transparent;
	color: var(--accent) !important;
	border: 1px solid #c7d2fe;
	margin-top: 10px;
}

.meta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 8px 0 16px;
}
.meta-grid div {
	margin: 0;
	padding: 10px 12px;
	background: var(--bg);
	border-radius: 12px;
}
.meta-grid dt {
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--muted);
	font-weight: 700;
}
.meta-grid dd { margin: 2px 0 0; font-weight: 600; }

.iphone-howto {
	margin: 0 0 16px;
	padding: 14px 16px;
	background: var(--bg);
	border-radius: 14px;
}
.iphone-howto h2 {
	margin: 0 0 8px;
	font-size: 1.05rem;
}
.iphone-howto ol {
	margin: 0;
	padding-left: 1.2em;
}
.iphone-howto li { margin: 0 0 4px; }
.iphone-howto p { margin: 8px 0 0; color: var(--muted); }
.alt-version {
	padding: 14px;
	border: 1px dashed #c7d2fe;
	border-radius: 14px;
	margin-bottom: 16px;
}
.alt-version audio { width: 100%; }

.crumbs,
.speedbar_block {
	margin: 0 0 14px;
	font-size: .88rem;
	color: var(--muted);
}
.crumbs a { color: var(--muted); }
.loc, .over { display: contents; }

.pager {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin-top: 16px;
}
.pager a,
.pager span,
.pagination a,
.pagination span {
	min-width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border-radius: 12px;
	background: var(--bg);
	color: var(--text);
	text-decoration: none;
	font-weight: 700;
}
.pager span,
.pagination span {
	background: var(--accent);
	color: #fff;
}
.pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 16px; }

.sidebar {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	z-index: 0;
	top: auto;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	overflow: visible;
}
.side-box {
	background: #fff;
	border: 1px solid var(--line);
}
.side-box__title {
	padding: 11px 14px;
	font-weight: 800;
	font-size: .92rem;
	border-bottom: 1px solid var(--line);
}
.side-steps {
	margin: 0;
	padding: 10px 14px 12px 32px;
	color: var(--muted);
	font-size: .88rem;
	line-height: 1.45;
}
.side-steps li { margin: 6px 0; }
.side-box__nav a {
	display: block;
	padding: 9px 14px;
	color: var(--text);
	border-top: 1px solid var(--line);
	font-weight: 600;
	font-size: .92rem;
	text-decoration: none;
}
.side-box__nav li:first-child a { border-top: 0; }
.side-box__nav a:hover { background: #f6f7fb; color: var(--accent); }

.site-footer {
	border-top: 1px solid var(--line);
	background: #fff;
	padding: 22px 12px 90px;
	color: var(--muted);
	font-size: .9rem;
}
.site-footer__inner {
	width: min(100% - 24px, var(--max));
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.site-footer__nav { display: flex; gap: 14px; }
.site-footer__nav a { color: var(--muted); }
.copyright_temp { position: absolute; left: -9999px; }

.hs-cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #fff;
	border-top: 3px solid var(--accent);
	box-shadow: 0 -8px 30px rgba(0,0,0,.12);
	padding: 16px 20px;
	transition: transform .3s ease, opacity .3s ease;
}
.hs-cookie-notice.hs-cookie-hidden {
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
}
.hs-cookie-notice-inner {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.hs-cookie-notice-body { flex: 1 1 280px; }
.hs-cookie-notice-title { font-weight: 800; margin-bottom: 4px; }
.hs-cookie-notice-text { font-size: .9rem; color: var(--muted); }
.hs-cookie-notice-buttons { display: flex; gap: 8px; }
.hs-cookie-btn {
	padding: 9px 16px;
	border-radius: 10px;
	border: 0;
	font-weight: 700;
	cursor: pointer;
}
.hs-cookie-btn-accept { background: var(--accent); color: #fff; }
.hs-cookie-btn-reject { background: var(--bg); color: var(--text); }

.f_input, .f_textarea, input[type="text"], input[type="password"], input[type="email"], textarea {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
}
.ui-form { list-style: none; padding: 0; }
.form-group, .ui-form li { margin: 0 0 12px; }
.fbutton, .bbcodes, button[type="submit"] {
	background: var(--accent);
	color: #fff;
	border: 0;
	border-radius: 12px;
	padding: 10px 16px;
	font-weight: 700;
	cursor: pointer;
}

.comment {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}
.static-page__body p { margin: 0 0 10px; }

@media (max-width: 900px) {
	.layout { grid-template-columns: 1fr; }
	.catalog__list { grid-template-columns: 1fr; }
	.catalog__list a { border-right: 0; }
	.catalog__list a:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
	.catalog__list a:last-child { border-bottom: 0; }
	.home-subs { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.nav-toggle { display: block; }
	.site-nav {
		display: none;
		padding-bottom: 12px;
	}
	.site-nav.is-open {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.search-form__btn { padding-inline: 12px; }
	.hero { padding: 24px 18px; border-radius: 22px; }
	.track {
		grid-template-columns: 40px minmax(0, 1fr);
		grid-template-areas:
			"play meta"
			"play get";
	}
	.track-play { grid-area: play; width: 40px; height: 40px; }
	.track-meta { grid-area: meta; }
	.track-get { grid-area: get; justify-self: start; padding: 6px 10px; font-size: .78rem; }
	.meta-grid { grid-template-columns: 1fr; }
	.dl-row { grid-template-columns: 1fr; }
	.site-footer { padding-bottom: 110px; }
}

@media (max-width: 520px) {
	.logo__text { font-size: 1.05rem; }
	.content, .home-latest, .desc-block, .home-sub { padding: 14px; }
}
