/* ==========================================================================
   MusicHaven components — app-native editorial system on the bright foundation.
   Loads after tokens.css + skins.css. Mobile-first; breakpoints 600 / 900 / 1200.
   Contrast law: text tokens are AA-verified (see qa/skin-manifest.json + tokens.css).
   Gold #C8A44D = fills/large display only; gold text on light uses --mh-gold-ink.
   ========================================================================== */

/* ----- Layout ------------------------------------------------------------- */
.mh-wrap {
	width: min(100% - 28px, var(--mh-wrap));
	margin-inline: auto;
}
.mh-main { display: block; }
.mh-section { margin-block: clamp(26px, 5vw, 52px); }

.mh-zone-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 16px;
	margin: 0 0 16px;
}
.mh-zone-head__title {
	font-size: clamp(1.55rem, 5vw, 2.3rem);
	font-weight: 900;
	margin: 0;
	letter-spacing: -0.015em;
}
.mh-zone-head__dek { color: var(--mh-muted); margin: 0; flex-basis: 100%; font-size: 0.95rem; }
.mh-zone-head__more {
	margin-left: auto;
	font-weight: 800;
	font-size: 0.85rem;
	color: var(--mh-gold-ink);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.mh-zone-head--skinned {
	background: var(--sk-bg);
	color: var(--sk-text);
	border-radius: var(--mh-radius);
	padding: 14px 18px;
	background-image: radial-gradient(120% 160% at 100% 0%, var(--sk-glow), transparent 55%);
	border-left: 6px solid var(--sk-accent);
}
.mh-zone-head--skinned .mh-zone-head__title { color: var(--sk-text); }
.mh-zone-head--skinned .mh-zone-head__more { color: var(--sk-accent); }

.mh-page-head { margin: clamp(20px, 4vw, 40px) 0; }
.mh-page-head__title { font-size: clamp(1.9rem, 6.5vw, 3rem); font-weight: 900; margin: 0 0 6px; }
.mh-page-head__dek { color: var(--mh-muted); max-width: 68ch; margin: 0; }

/* ----- Grids & rails ------------------------------------------------------ */
.mh-grid { display: grid; grid-template-columns: 1fr; gap: var(--mh-gap); }
.mh-rail { position: relative; }
.mh-rail__track {
	list-style: none;
	margin: 0;
	padding: 4px 2px 14px;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 82%;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.mh-rail__item { scroll-snap-align: start; min-width: 0; }
.mh-rail__item > .mh-card { height: 100%; }

/* ----- Buttons / pills / chips -------------------------------------------- */
.mh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 10px 22px;
	border: 0;
	border-radius: var(--mh-radius-pill);
	background: var(--mh-violet);
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.mh-btn:hover { transform: translateY(-2px); text-decoration: none; filter: brightness(1.05); box-shadow: var(--mh-shadow-soft); }
.mh-btn--gold { background: var(--mh-grad-gold); color: var(--mh-ink); }
.mh-btn--line { background: transparent; border: 2px solid var(--mh-line); color: var(--mh-ink); }
.mh-on-dark .mh-btn--line { border-color: rgba(233, 226, 242, 0.4); color: var(--mh-night-text); }

.mh-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: var(--mh-radius-pill);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--sk-chip-bg);
	color: var(--sk-chip-text);
	text-decoration: none;
}
a.mh-pill:hover { text-decoration: none; filter: brightness(1.06); }
.mh-pill--type { background: var(--mh-violet); color: #fff; }
.mh-pill--sponsored { background: var(--mh-grad-gold); color: var(--mh-ink); }

.mh-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 8px 18px;
	border: 2px solid var(--mh-line);
	border-radius: var(--mh-radius-pill);
	background: var(--mh-surface);
	color: var(--mh-ink);
	font: inherit;
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.mh-chip:hover { border-color: var(--mh-violet-ink); transform: translateY(-1px); text-decoration: none; }
.mh-chip[aria-pressed="true"] {
	background: var(--mh-violet);
	border-color: var(--mh-violet);
	color: #fff;
}
.mh-chip[aria-pressed="true"]::after { content: " ✓"; font-weight: 900; }
.mh-chip--mood { border-color: rgba(107, 63, 160, 0.35); }
.mh-chip--era { border-color: rgba(200, 164, 77, 0.55); }

.mh-chip-rail { margin: 10px 0 18px; }
.mh-chip-rail__label {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mh-muted);
	margin-bottom: 8px;
}
.mh-chip-rail__track {
	list-style: none;
	margin: 0;
	padding: 2px;
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.mh-chip-rail__track li { flex: none; }
.mh-chip-rail__track--wrap { flex-wrap: wrap; overflow: visible; }

/* ==========================================================================
   MusicHaven Edge system — gold trim, plum depth, cream glass, raised surfaces
   ========================================================================== */
.mh-edge-gold {
	border: 1.5px solid rgba(228, 200, 120, 0.72);
	box-shadow: 0 18px 38px rgba(43, 21, 61, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.mh-glass-cream {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 246, 225, 0.6));
	-webkit-backdrop-filter: blur(14px);
	        backdrop-filter: blur(14px);
}
.mh-plum-depth {
	background: linear-gradient(135deg, #251032 0%, #3D1D55 55%, #1C0D28 100%);
	color: #FFF7E9;
}

/* ----- THE PULSE — a FULL-WIDTH premium moving ticker (never a strip) --------- */
.mh-pulsebar {
	width: calc(100% - 16px);
	max-width: 1720px;
	margin: 8px auto 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 40%),
		var(--mh-pulsebar);
	border: 1.5px solid rgba(228, 200, 120, 0.72);
	border-radius: var(--mh-radius-pill);
	color: var(--mh-night-text);
	position: relative;
	overflow: hidden;
	box-shadow: 0 16px 34px rgba(20, 12, 28, 0.34), 0 3px 0 rgba(82, 39, 111, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.mh-pulsebar::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(42% 220% at 0% 50%, rgba(228, 200, 120, 0.2), transparent 55%);
	pointer-events: none;
}
.mh-pulsebar__inner {
	position: relative;
	padding: 7px 9px 7px 7px;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 56px;
}
.mh-pulsebar__label {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 20px;
	border-radius: var(--mh-radius-pill);
	background: var(--mh-grad-gold);
	color: var(--mh-ink);
	font-size: 0.98rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(200, 164, 77, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -3px 6px rgba(122, 97, 37, 0.3);
}
.mh-pulsebar__label:hover { text-decoration: none; filter: brightness(1.05); }
.mh-pulsebar__eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 16px; }
.mh-pulsebar__eq span { width: 3px; height: 6px; border-radius: 2px; background: #2E1A40; }
@media (prefers-reduced-motion: no-preference) {
	.mh-pulsebar__eq span { animation: mh-eq 0.9s ease-in-out infinite alternate; }
	.mh-pulsebar__eq span:nth-child(2) { animation-delay: 0.14s; }
	.mh-pulsebar__eq span:nth-child(3) { animation-delay: 0.28s; }
	.mh-pulsebar__eq span:nth-child(4) { animation-delay: 0.42s; }
}
.mh-pulsebar__search { flex: none; }

.mh-ticker { overflow: hidden; min-width: 0; flex: 1 1 auto; }
.mh-ticker__track { overflow: hidden; white-space: nowrap; min-width: 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 14px, #000 94%, transparent);
	        mask-image: linear-gradient(90deg, transparent, #000 14px, #000 94%, transparent);
}
.mh-ticker__inner { display: inline-flex; align-items: center; gap: 12px; }
.mh-ticker__lane { display: inline-flex; align-items: center; gap: 12px; }
.mh-ticker__track.is-animated .mh-ticker__lane { animation: mh-marquee var(--mh-pulse-speed, 34s) linear infinite; }
.mh-ticker__track.is-animated:hover .mh-ticker__lane,
.mh-ticker__track.is-animated:focus-within .mh-ticker__lane { animation-play-state: paused; }
.mh-ticker--static .mh-ticker__inner { white-space: normal; flex-wrap: wrap; }
/* The breaking headline leads the marquee — bold, white, clearly readable. */
.mh-ticker__lead {
	font-family: var(--mh-serif);
	font-weight: 800;
	font-size: clamp(1.05rem, 3vw, 1.4rem);
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
.mh-ticker__lead:hover { color: var(--mh-gold-bright); text-decoration: none; }
.mh-ticker__item { font-size: clamp(0.96rem, 2.4vw, 1.08rem); font-weight: 600; color: var(--mh-night-text); text-decoration: none; white-space: nowrap; }
.mh-ticker__item:hover { color: var(--mh-gold-bright); text-decoration: none; }
.mh-ticker__dot { color: var(--mh-gold-bright); font-weight: 900; font-size: 1.2rem; }
@keyframes mh-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.mh-search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: none;
	min-width: 42px;
	min-height: 42px;
	padding: 7px 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 2px solid rgba(243, 236, 224, 0.34);
	border-radius: var(--mh-radius-pill);
	color: var(--mh-night-text);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}
.mh-search-toggle:hover { border-color: var(--mh-gold-bright); color: var(--mh-gold-bright); }

/* ----- Header: identity zone — stretched logo plaque + dimensional wing widgets --- */
.mh-brandband {
	background:
		radial-gradient(46% 130% at 50% 46%, rgba(228, 200, 120, 0.30), transparent 62%),
		radial-gradient(90% 120% at 6% 120%, rgba(107, 63, 160, 0.12), transparent 58%),
		radial-gradient(90% 120% at 94% 120%, rgba(200, 164, 77, 0.16), transparent 58%),
		var(--mh-bg);
}
.mh-brandband__inner {
	position: relative;
	width: calc(100% - 16px);
	max-width: 1720px;
	margin-inline: auto;
	padding: clamp(8px, 1.6vw, 18px) 0 clamp(6px, 1.2vw, 12px);
}
.mh-brandband__row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: clamp(8px, 3vw, 44px);
}
.mh-brandband__wing { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.mh-brandband__wing--left { align-items: flex-end; }
.mh-brandband__wing--right { align-items: flex-start; }
.mh-wingpill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	min-height: 42px;
	padding: 9px 17px;
	border-radius: var(--mh-radius-pill);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 232, 0.8));
	border: 1.5px solid rgba(76, 42, 100, 0.16);
	color: var(--mh-ink);
	font-weight: 800;
	font-size: 0.86rem;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(43, 21, 61, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -4px 8px rgba(43, 21, 61, 0.05);
	transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.mh-wingpill:hover { transform: translateY(-2px); border-color: var(--mh-gold); text-decoration: none; box-shadow: 0 14px 28px rgba(43, 21, 61, 0.16); }
.mh-wingpill--primary {
	background: linear-gradient(135deg, #3D1D55, #5A2873);
	color: #F3D86F;
	border: 1.5px solid rgba(228, 200, 120, 0.85);
	box-shadow: 0 12px 26px rgba(43, 21, 61, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.mh-wingpill--primary:hover { color: #FFF7E9; }
.mh-wingpill__icon { font-size: 1rem; color: var(--mh-gold-ink); }
.mh-wingpill--primary .mh-wingpill__icon { color: #F3D86F; }
.mh-wingpill__label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.mh-brandband__center { position: relative; min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.mh-brandband__glow {
	position: absolute;
	left: 50%;
	top: 46%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 150%;
	background: radial-gradient(closest-side, rgba(228, 200, 120, 0.4), rgba(228, 200, 120, 0.12) 55%, transparent 72%);
	filter: blur(6px);
	pointer-events: none;
	z-index: 0;
}
.mh-brandband__logo { position: relative; z-index: 1; display: block; line-height: 0; }
.mh-logo--blend { mix-blend-mode: multiply; }
.mh-logo--full {
	display: inline-block;
	width: auto;
	height: auto;
	max-height: clamp(128px, 22vw, 320px);
	max-width: min(78vw, 680px);
}
.mh-brandband__tagline {
	position: relative;
	z-index: 1;
	margin: 4px auto 0;
	max-width: 680px;
	text-align: center;
	font-family: var(--mh-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1rem, 2.7vw, 1.34rem);
	letter-spacing: 0.01em;
	color: var(--mh-ink-soft);
}

/* ----- Header: FULL-WIDTH brand banner (new MusicHaven wordmark) — kills all left/right dead space --- */
.mh-brandband--banner {
	position: relative;
	padding: 0;
	background: var(--mh-bg);
}
.mh-brandband__banner {
	display: block;
	width: 100%;
	line-height: 0;
	text-decoration: none;
}
.mh-brandband__bannerimg {
	display: block;
	width: 100%;
	height: auto;
	/* Show the FULL banner — the wordmark AND the baked-in tagline "Music. Culture. Mania. Art. Love. Life."
	   always read in full. The artwork spans edge-to-edge (its own plum swashes fill the flanks), so a
	   full-width banner has no dead space and never crops the tagline. */
}
/* Utility action pills — centered, wrapping row beneath the banner. No dead flanks; wraps (never side-scrolls) on mobile. */
.mh-utilitybar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: calc(100% - 24px);
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 0 14px;
}
.mh-utilpill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 18px;
	border-radius: var(--mh-radius-pill);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 232, 0.82));
	border: 1.5px solid rgba(76, 42, 100, 0.16);
	color: var(--mh-ink);
	font-weight: 800;
	font-size: 0.9rem;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(43, 21, 61, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -4px 8px rgba(43, 21, 61, 0.05);
	transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.mh-utilpill:hover { transform: translateY(-2px); border-color: var(--mh-gold); text-decoration: none; box-shadow: 0 14px 28px rgba(43, 21, 61, 0.16); }
.mh-utilpill__icon { font-size: 1rem; color: var(--mh-gold-ink); }
.mh-utilpill--primary {
	background: linear-gradient(135deg, #3D1D55, #5A2873);
	color: #F3D86F;
	border-color: rgba(228, 200, 120, 0.85);
	box-shadow: 0 12px 26px rgba(43, 21, 61, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.mh-utilpill--primary .mh-utilpill__icon { color: #F3D86F; }
.mh-utilpill--primary:hover { color: #FFF7E9; }
.mh-utilpill--login { background: linear-gradient(180deg, #FFFFFF, #F4ECFB); border-color: rgba(90, 52, 136, 0.3); }
.mh-utilpill--login .mh-utilpill__icon { color: var(--mh-violet-ink); }
.mh-zone-head__hint { display: inline-block; margin-left: 4px; font-size: 0.82em; font-style: italic; color: var(--mh-muted); }

/* ----- Header: 3.5D genre orbit (focused = dominant planet; others orbit, all visible) --- */
.mh-genrebar {
	background:
		radial-gradient(circle at 78% 18%, rgba(228, 200, 120, 0.22), transparent 32%),
		radial-gradient(circle at 22% 82%, rgba(77, 36, 104, 0.12), transparent 36%),
		var(--mh-bg);
}
.mh-genrebar__inner {
	width: min(100% - 16px, var(--mh-wrap));
	margin-inline: auto;
	padding: clamp(6px, 1.4vw, 12px) 0 clamp(10px, 1.8vw, 18px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.mh-genrepicker { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.mh-genrepill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 46px;
	padding: 9px 17px;
	border-radius: var(--mh-radius-pill);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 247, 232, 0.82));
	border: 1.5px solid rgba(76, 42, 100, 0.16);
	color: var(--mh-ink);
	font: inherit;
	font-weight: 800;
	font-size: 0.92rem;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(43, 21, 61, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -4px 8px rgba(43, 21, 61, 0.05);
	transition: transform 0.16s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.16s ease, box-shadow 0.16s ease, padding 0.16s ease, font-size 0.16s ease;
}
.mh-genrepill:hover { transform: translateY(-2px); border-color: var(--mh-gold); text-decoration: none; }
.mh-genrepill:active { transform: translateY(0) scale(0.98); }
.mh-genrepill__icon { color: var(--mh-gold-ink); font-size: 1rem; }
/* The DEFAULT homepage pushes no genre — every chip sits neutral and equal (one eye-shot).
   Only when a fan pushes into a genre (clicks a chip / lands on a genre archive) does it become
   the dominant, enlarged, plum-highlighted "planet". */
.mh-genrepill.is-focus {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 30%),
		linear-gradient(135deg, #3D1D55, #5A2873);
	border: 2px solid rgba(228, 200, 120, 0.9);
	color: #F3D86F;
	padding: 13px 28px;
	font-size: 1.16rem;
	box-shadow: 0 20px 42px rgba(43, 21, 61, 0.3), 0 4px 0 rgba(57, 28, 78, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -10px 20px rgba(0, 0, 0, 0.18);
}
.mh-genrepill.is-focus .mh-genrepill__icon { color: #F3D86F; font-size: 1.34rem; }
.mh-genrepill--more { background: transparent; border-style: dashed; box-shadow: none; color: var(--mh-muted); }
.mh-genrepill--more:hover { color: var(--mh-gold-ink); border-color: var(--mh-gold); }
.mh-genrepill--more[aria-expanded="true"] { border-color: var(--mh-gold); color: var(--mh-gold-ink); }

/* Footer discovery-fallback list reset (uses .mh-nav__list markup). */
.mh-nav__list { list-style: none; margin: 0; padding: 0; }

/* ----- Search panel -------------------------------------------------------- */
.mh-search { background: var(--mh-surface); border-bottom: 2px solid var(--mh-line); }
.mh-search__inner { width: min(100% - 24px, var(--mh-wrap)); margin-inline: auto; padding: 14px 0; }
.mh-search__form { display: flex; gap: 8px; }
.mh-search__field {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 16px;
	border: 2px solid var(--mh-line);
	border-radius: 14px;
	background: #fff;
	color: var(--mh-ink);
	font: inherit;
}
.mh-search__field::placeholder { color: var(--mh-muted); }
.mh-search__submit {
	padding: 12px 20px;
	border: 0;
	border-radius: 14px;
	background: var(--mh-violet);
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	min-height: 46px;
}
.mh-search__submit:hover { filter: brightness(1.08); }

/* ----- Cards ---------------------------------------------------------------- */
.mh-card {
	background: var(--sk-bg);
	color: var(--sk-text);
	/* MusicHaven Edge — every card reads as a distinct raised object against the cream shell. */
	border: 1.5px solid rgba(43, 21, 61, 0.16);
	border-radius: var(--mh-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 14px 30px rgba(43, 21, 61, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
	transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease, border-color 0.2s ease;
}
.mh-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px var(--sk-glow), 0 4px 0 rgba(43, 21, 61, 0.14); }
/* Skinned cards keep a gold-leaning edge so even warm/light skins never wash into cream. */
.mh-skinned.mh-card { border-color: rgba(228, 200, 120, 0.5); }
.mh-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--sk-panel);
	position: relative;
}
.mh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.mh-card:hover .mh-card__media img { transform: scale(1.05); }
.mh-card__media--slot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: var(--sk-grad);
}
.mh-card__glyph { font-size: 3rem; color: rgba(255, 255, 255, 0.85); text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3); }

/* Hip-Hop "Shiny Excellence" — a luxury plum/black/gold poster surface with a gold lens glow
   and dimensional gold trim (not a flat lavender rectangle). Applies to hero + cards + zone heads. */
.mh-skin--hiphop-a .mh-card__media--slot,
.mh-skin--hiphop-a .mh-slide__media,
.mh-skin--hiphop-a .mh-hero__media {
	background-image:
		radial-gradient(120% 130% at 80% 8%, rgba(231, 194, 79, 0.55), rgba(231, 194, 79, 0.08) 34%, transparent 52%),
		radial-gradient(90% 120% at 12% 108%, rgba(124, 62, 168, 0.5), transparent 60%),
		linear-gradient(155deg, #3A1F5C 0%, #241040 46%, #120717 100%);
	background-color: #120717;
}
.mh-skin--hiphop-a.mh-card,
.mh-skin--hiphop-a .mh-slide,
.mh-skin--hiphop-a.mh-slide {
	border-color: rgba(231, 194, 79, 0.65);
	box-shadow: 0 22px 48px rgba(18, 7, 23, 0.5), 0 0 0 1px rgba(231, 194, 79, 0.28), inset 0 1px 0 rgba(231, 194, 79, 0.18);
}
.mh-skin--hiphop-a .mh-card__glyph,
.mh-skin--hiphop-a .mh-slide__media .mh-card__glyph { color: rgba(231, 194, 79, 0.92); text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55); }
.mh-card__body { padding: 16px; display: flex; flex-direction: column; gap: 9px; flex: 1 1 auto; }
.mh-card__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.mh-card__title {
	font-size: clamp(1.15rem, 3.4vw, 1.4rem);
	line-height: 1.16;
	margin: 0;
	font-weight: 800;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mh-card__title a { color: var(--sk-text); }
.mh-card__title a:hover { color: var(--sk-accent); text-decoration: none; }
.mh-skinned .mh-card__title a:hover { text-decoration: underline; text-decoration-color: var(--sk-accent); color: var(--sk-text); }
.mh-card__dek {
	color: var(--sk-muted);
	font-size: 0.92rem;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mh-card__meta { color: var(--sk-muted); font-size: 0.78rem; font-weight: 600; display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.mh-card__meta a { color: var(--sk-muted); text-decoration: underline; text-underline-offset: 2px; }
.mh-card__foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }

/* Card styles */
.mh-card--track { flex-direction: row; align-items: stretch; }
.mh-card--track .mh-card__media { flex: 0 0 38%; aspect-ratio: 1 / 1; }
.mh-card--track .mh-card__body { padding: 14px; }
.mh-card--album .mh-card__media { aspect-ratio: 1 / 1; }
.mh-card--poster .mh-card__media { aspect-ratio: 4 / 5; }
.mh-card--pulse { border-top: 4px solid var(--sk-accent); }
.mh-card--pulse .mh-card__media { aspect-ratio: 16 / 9; }

/* ----- Miniplayer / EQ ------------------------------------------------------ */
.mh-miniplayer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px;
	border-radius: var(--mh-radius-pill);
	background: color-mix(in srgb, var(--sk-accent) 16%, transparent);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sk-text);
	align-self: flex-start;
}
.mh-miniplayer__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--sk-accent);
	flex: none;
}
.mh-eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; }
.mh-eq span { width: 3px; height: 4px; border-radius: 2px; background: var(--sk-accent); }
@media (prefers-reduced-motion: no-preference) {
	.mh-eq--on span { animation: mh-eq 0.9s ease-in-out infinite alternate; }
	.mh-eq--on span:nth-child(2) { animation-delay: 0.12s; }
	.mh-eq--on span:nth-child(3) { animation-delay: 0.24s; }
	.mh-eq--on span:nth-child(4) { animation-delay: 0.36s; }
	.mh-eq--on span:nth-child(5) { animation-delay: 0.48s; }
}
@keyframes mh-eq { from { height: 4px; } to { height: 14px; } }

.mh-nowbar { display: flex; align-items: center; gap: 10px; margin: 6px 0; }
.mh-nowbar__track { flex: 1 1 auto; height: 8px; border-radius: 4px; background: color-mix(in srgb, var(--sk-text) 18%, transparent); overflow: hidden; }
.mh-nowbar__fill { display: block; width: 34%; height: 100%; border-radius: 4px; background: var(--sk-accent); }

/* ----- Hero (8 modes) -------------------------------------------------------- */
.mh-hero {
	background: var(--sk-bg);
	color: var(--sk-text);
	border-radius: var(--mh-radius-lg);
	overflow: hidden;
	margin: 0 0 clamp(20px, 4vw, 34px);
	background-image: radial-gradient(140% 150% at 100% -20%, var(--sk-glow), transparent 60%);
	box-shadow: var(--mh-shadow-soft);
}
.mh-hero__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--sk-panel); }
.mh-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.mh-hero__media--slot {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 6;
	background: var(--sk-grad);
}
.mh-hero__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, var(--sk-bg) 0%, transparent 45%); }
.mh-hero__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 7vw, 4rem);
	color: #fff;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}
.mh-hero__body { padding: clamp(18px, 4vw, 36px); display: flex; flex-direction: column; gap: 12px; }
.mh-hero__title {
	font-size: clamp(1.8rem, 6.5vw, 3.2rem);
	line-height: 1.04;
	margin: 0;
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--sk-text);
}
.mh-hero__dek {
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: clamp(1.02rem, 3vw, 1.3rem);
	line-height: 1.45;
	color: var(--sk-muted);
	max-width: 62ch;
	margin: 0;
}
.mh-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.mh-hero--album .mh-hero__media { aspect-ratio: 1 / 1; max-width: 420px; margin: clamp(16px, 4vw, 30px) auto 0; border-radius: var(--mh-radius); }
.mh-hero--album { text-align: center; }
.mh-hero--album .mh-hero__meta,
.mh-hero--album .mh-card__pills { justify-content: center; }
.mh-hero--poster .mh-hero__media { aspect-ratio: 4 / 5; }
.mh-hero--concert .mh-hero__media { aspect-ratio: 16 / 8; }
.mh-hero--review .mh-rating { font-size: 1.3rem; }
.mh-hero--minimal { background-image: linear-gradient(135deg, color-mix(in srgb, var(--sk-glow) 55%, transparent), transparent 55%); border-left: 8px solid var(--sk-accent); }
.mh-zone-hero .mh-hero__body { padding-block: clamp(22px, 5vw, 40px); }

/* ----- Meta bits -------------------------------------------------------------- */
.mh-artist { display: inline-flex; align-items: baseline; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--sk-muted); }
.mh-artist__key { font-size: 0.62rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sk-accent); }
.mh-artist a { color: var(--sk-text); text-decoration: underline; text-underline-offset: 2px; }
.mh-rating { display: inline-flex; align-items: center; gap: 2px; }
.mh-rating__star { color: color-mix(in srgb, var(--sk-muted) 45%, transparent); font-size: 1rem; }
.mh-rating__star.is-full { color: var(--mh-gold); }
.mh-rating__star.is-half { color: var(--mh-gold); opacity: 0.55; }
.mh-skinned .mh-rating__star.is-full,
.mh-skinned .mh-rating__star.is-half { color: var(--sk-accent); }
.mh-rating__num { margin-left: 6px; font-weight: 800; font-size: 0.85rem; color: var(--sk-text); }
.mh-listen {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 7px 15px;
	border: 2px solid var(--sk-accent);
	border-radius: var(--mh-radius-pill);
	color: var(--sk-text);
	font-size: 0.8rem;
	font-weight: 800;
	text-decoration: none;
}
.mh-listen:hover { background: var(--sk-accent); color: var(--sk-chip-text); text-decoration: none; }
.mh-listen__glyph { font-size: 0.7rem; }

/* ----- Bubbles ------------------------------------------------------------------ */
.mh-bubble-grid { list-style: none; margin: 0; padding: 4px 2px 10px; display: flex; gap: 18px; overflow-x: auto; scrollbar-width: thin; }
.mh-bubble-grid--static,
.mh-bubble-grid--pick { flex-wrap: wrap; overflow: visible; }
.mh-bubble-item { flex: none; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mh-bubble {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	background: none;
	border: 0;
	font: inherit;
	cursor: pointer;
	padding: 4px;
}
.mh-bubble__ring {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	border: 3px solid var(--sk-accent);
	background: var(--sk-bg);
	color: var(--sk-text);
	font-family: var(--mh-serif);
	font-weight: 900;
	font-size: 1.7rem;
	box-shadow: 0 8px 22px var(--sk-glow);
}
.mh-bubble__label { font-size: 0.85rem; font-weight: 700; color: var(--mh-ink); max-width: 110px; text-align: center; }
.mh-bubble:hover .mh-bubble__ring { transform: scale(1.04); }
.mh-bubble--pick[aria-pressed="true"] .mh-bubble__ring { border-width: 5px; background: var(--sk-panel); }
.mh-bubble--pick[aria-pressed="true"] .mh-bubble__label::after { content: " ✓"; color: var(--mh-gold-ink); font-weight: 900; }
.mh-bubble--hub .mh-bubble__ring { width: 128px; height: 128px; font-size: 2.2rem; }
.mh-bubble__follow { min-height: 36px; padding: 4px 14px; font-size: 0.78rem; }

/* ----- Artist hub ------------------------------------------------------------------ */
.mh-artist-hub {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	padding: clamp(22px, 5vw, 44px);
	border-radius: var(--mh-radius-lg);
	background: var(--sk-bg);
	color: var(--sk-text);
	background-image: radial-gradient(130% 150% at 80% -20%, var(--sk-glow), transparent 60%);
	margin: clamp(18px, 4vw, 32px) 0;
}
.mh-artist-hub .mh-hero__title,
.mh-artist-hub .mh-hero__dek { color: inherit; }
.mh-artist-hub__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }

/* ----- Signal player ------------------------------------------------------------------ */
.mh-signal {
	background: var(--mh-night-2);
	color: var(--mh-night-text);
	border-radius: var(--mh-radius-lg);
	padding: clamp(18px, 3.5vw, 28px);
	margin: clamp(16px, 3vw, 26px) 0;
	box-shadow: 0 14px 40px rgba(23, 17, 31, 0.35);
	background-image: radial-gradient(120% 160% at 100% 0%, rgba(200, 164, 77, 0.18), transparent 55%);
	max-width: 640px;
}
.mh-signal__head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 12px; }
.mh-signal__hint { font-size: 0.82rem; color: var(--mh-night-muted); }
.mh-signal__row { display: flex; align-items: center; gap: 14px; }
.mh-signal__play {
	flex: none;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	border: 0;
	background: var(--mh-grad-gold);
	color: var(--mh-ink);
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(200, 164, 77, 0.4);
	transition: transform 0.15s ease;
}
.mh-signal__play:hover { transform: scale(1.05); }
.mh-signal__glyph--pause { display: none; }
.mh-signal__play[aria-pressed="true"] .mh-signal__glyph--play { display: none; }
.mh-signal__play[aria-pressed="true"] .mh-signal__glyph--pause { display: inline; }
.mh-signal__meta { min-width: 0; }
.mh-signal__title { margin: 0; font-family: var(--mh-serif); font-weight: 900; font-size: 1.25rem; color: #fff; }
.mh-signal__subtitle { margin: 2px 0 0; font-size: 0.82rem; color: var(--mh-night-muted); }
.mh-signal .mh-eq { margin-left: auto; }
.mh-signal .mh-eq span { background: var(--mh-gold-bright); }
.mh-signal__bar {
	margin-top: 16px;
	height: 10px;
	border-radius: 6px;
	background: rgba(233, 226, 242, 0.18);
	cursor: pointer;
	overflow: hidden;
}
.mh-signal__bar:focus-visible { outline-offset: 4px; }
.mh-signal__progress { display: block; height: 100%; background: var(--mh-grad-gold); border-radius: 6px; }
.mh-signal__time { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--mh-night-muted); margin-top: 6px; font-variant-numeric: tabular-nums; }
.mh-signal__desc { margin: 12px 0 0; font-size: 0.9rem; color: var(--mh-night-text); }
.mh-signal__note { margin: 10px 0 0; font-size: 0.75rem; color: var(--mh-night-muted); }
.mh-signal .mh-pill--type { background: var(--mh-grad-gold); color: var(--mh-ink); }

/* ----- Radio ------------------------------------------------------------------ */
.mh-radio__card {
	background: linear-gradient(130deg, #241533 0%, var(--mh-night) 70%);
	color: var(--mh-night-text);
	border-radius: var(--mh-radius-lg);
	padding: clamp(20px, 4vw, 34px);
	box-shadow: var(--mh-shadow);
}
.mh-radio__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 14px;
	border-radius: var(--mh-radius-pill);
	background: rgba(233, 226, 242, 0.12);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.mh-radio.is-live .mh-miniplayer__dot { background: var(--mh-gold-bright); }
@media (prefers-reduced-motion: no-preference) {
	.mh-radio.is-live .mh-miniplayer__dot { animation: mh-pulse 1.8s infinite; }
}
@keyframes mh-pulse {
	0% { box-shadow: 0 0 0 0 rgba(228, 200, 120, 0.6); }
	70% { box-shadow: 0 0 0 12px rgba(228, 200, 120, 0); }
	100% { box-shadow: 0 0 0 0 rgba(228, 200, 120, 0); }
}
.mh-radio__title { color: #fff; font-size: clamp(1.5rem, 4.5vw, 2.1rem); margin: 10px 0 4px; }
.mh-radio__subtitle { color: var(--mh-night-muted); margin: 0 0 14px; }
.mh-radio__audio { width: 100%; margin-top: 10px; }
.mh-radio__preview-label { color: var(--mh-gold-bright); font-weight: 700; font-size: 0.88rem; margin: 10px 0 0; }
.mh-radio__placeholder {
	margin-top: 12px;
	padding: 16px 18px;
	border: 2px dashed rgba(233, 226, 242, 0.4);
	border-radius: var(--mh-radius);
}
.mh-radio__placeholder-label { font-weight: 900; color: #fff; margin: 0; }
.mh-radio__placeholder-note { color: var(--mh-night-muted); font-size: 0.82rem; margin: 4px 0 0; }

/* ----- Fan bits ------------------------------------------------------------------ */
.mh-fanbar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.mh-fanbar__btn { min-height: 38px; padding: 5px 14px; font-size: 0.78rem; }
.mh-fanbar__note { font-size: 0.72rem; color: var(--mh-muted); font-weight: 600; }
.mh-skinned .mh-fanbar__note { color: var(--sk-muted); }
.mh-on-dark .mh-fanbar__note { color: var(--mh-night-muted); }

.mh-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: var(--mh-radius-pill);
	background: var(--mh-surface-2);
	border: 2px solid var(--mh-gold);
	color: var(--mh-gold-ink);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}
.mh-badge--topfan, .mh-badge--dayone { background: var(--mh-grad-gold); color: var(--mh-ink); border-color: transparent; }
.mh-badge--tourready, .mh-badge--scenefav { border-color: var(--mh-violet); color: var(--mh-violet-ink); }

.mh-intent { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 10px; }
.mh-intent__note { font-size: 0.72rem; color: var(--mh-muted); font-weight: 700; }
.mh-intent__btn[aria-pressed="true"] { background: var(--mh-violet); border-color: var(--mh-violet); color: #fff; }
.mh-intent__partner { display: inline-flex; align-items: center; gap: 10px; }
.mh-intent__partner img { height: 26px; width: auto; border-radius: 6px; background: #fff; }

/* ----- Poster wall / onboarding ------------------------------------------------ */
.mh-posterband {
	background:
		radial-gradient(120% 160% at 90% -20%, rgba(200, 164, 77, 0.22), transparent 55%),
		radial-gradient(100% 140% at 0% 120%, rgba(107, 63, 160, 0.14), transparent 55%),
		var(--mh-surface);
	border: 2px solid var(--mh-gold);
	border-radius: var(--mh-radius-lg);
	padding: clamp(22px, 5vw, 44px);
	text-align: center;
}
.mh-posterband__inner { max-width: 640px; margin-inline: auto; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.mh-posterband__note { font-size: 0.78rem; color: var(--mh-muted); font-weight: 600; margin: 0; }

.mh-onboard { margin: clamp(20px, 4vw, 36px) 0; }
.mh-onboard__steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.mh-onboard__step fieldset { border: 2px solid var(--mh-line-soft); border-radius: var(--mh-radius); padding: 18px; margin: 0; background: var(--mh-surface); }
.mh-onboard__legend {
	font-family: var(--mh-serif);
	font-weight: 900;
	font-size: 1.15rem;
	padding: 0 10px;
	color: var(--mh-ink);
}
.mh-onboard__empty { color: var(--mh-muted); font-style: italic; }
.mh-onboard__finish { display: flex; align-items: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }

.mh-wall { margin: clamp(22px, 4vw, 40px) 0; }
.mh-poster-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 14px;
	padding: 18px;
	border-radius: var(--mh-radius-lg);
	background:
		radial-gradient(100% 140% at 100% 0%, rgba(107, 63, 160, 0.10), transparent 55%),
		var(--mh-surface-2);
	min-height: 140px;
}
.mh-poster-grid__empty { grid-column: 1 / -1; color: var(--mh-muted); font-style: italic; margin: 0; align-self: center; text-align: center; }
.mh-poster-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 14px 10px;
	background: var(--mh-surface);
	border: 2px solid var(--mh-gold);
	border-radius: var(--mh-radius);
	text-align: center;
}
.mh-poster-tile .mh-bubble__ring { width: 64px; height: 64px; font-size: 1.2rem; border-color: var(--mh-gold); box-shadow: 0 6px 16px rgba(200, 164, 77, 0.3); }
.mh-poster-tile__label { font-weight: 800; font-size: 0.82rem; color: var(--mh-ink); }
.mh-poster-tile__remove {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 50%;
	background: var(--mh-surface-2);
	color: var(--mh-ink);
	font-size: 1rem;
	cursor: pointer;
	line-height: 1;
}
.mh-poster-tile__remove:hover { background: var(--mh-violet); color: #fff; }
.mh-wall__badges { margin-top: 22px; }
.mh-wall__badges-title { font-size: 1.1rem; margin: 0 0 4px; }
.mh-wall__badge-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }

/* ----- Streaming services -------------------------------------------------------- */
.mh-services-band {
	background:
		radial-gradient(110% 150% at 10% -20%, rgba(200, 164, 77, 0.16), transparent 55%),
		var(--mh-surface);
	border-radius: var(--mh-radius-lg);
	border: 1px solid var(--mh-line-soft);
	padding: clamp(20px, 4vw, 36px);
	margin: clamp(22px, 4.5vw, 46px) 0;
}
.mh-services-band--compact { padding: 0; border: 0; background: none; margin: 0; }
.mh-services { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0 10px; }
.mh-service-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 46px;
	padding: 9px 16px;
	border: 2px solid var(--mh-line);
	border-radius: var(--mh-radius-pill);
	background: #fff;
	color: var(--mh-ink);
	font: inherit;
	font-weight: 800;
	font-size: 0.88rem;
	cursor: pointer;
	transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.mh-service-chip:hover { transform: translateY(-2px); border-color: var(--mh-violet-ink); box-shadow: var(--mh-shadow-soft); }
.mh-service-chip__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(26, 14, 36, 0.18);
	overflow: hidden;
	flex: none;
}
.mh-service-chip__logo img { width: 22px; height: 22px; object-fit: contain; }
.mh-service-chip__check { opacity: 0; color: var(--mh-gold-ink); font-weight: 900; }
.mh-service-chip[aria-pressed="true"] { border-color: var(--mh-violet); box-shadow: 0 0 0 2px color-mix(in srgb, var(--mh-violet) 30%, transparent); }
.mh-service-chip[aria-pressed="true"] .mh-service-chip__check { opacity: 1; }

/* ----- Monetization ------------------------------------------------------------------ */
.mh-slot { margin: var(--mh-gap) 0; text-align: center; }
.mh-slot__label {
	display: block;
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mh-muted);
	margin-bottom: 8px;
}
.mh-slot img { display: inline-block; margin-inline: auto; border-radius: var(--mh-radius); max-width: 100%; }
.mh-slot--header-sponsor { margin: 0; display: none; }
.mh-adbreak { margin: calc(var(--mh-gap) * 1.4) 0; grid-column: 1 / -1; }
.mh-grid .mh-slot,
.mh-grid .mh-merch-card { margin: 0; }
.mh-merch-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 20px;
	border: 2px solid var(--mh-gold);
	border-radius: var(--mh-radius);
	background:
		radial-gradient(120% 160% at 100% 0%, rgba(200, 164, 77, 0.16), transparent 55%),
		var(--mh-surface);
}
.mh-merch-card__title { font-family: var(--mh-serif); font-weight: 900; font-size: 1.2rem; margin: 0; }
.mh-merch-card__signal { font-size: 0.8rem; color: var(--mh-muted); margin: 0; }
.mh-slot--mobile-sticky {
	position: fixed;
	bottom: 62px; /* sits ABOVE the bottom app bar */
	left: 0;
	right: 0;
	z-index: 95;
	margin: 0;
	background: var(--mh-surface);
	border-top: 2px solid var(--mh-line);
	padding: 8px 44px 8px 10px;
	box-shadow: 0 -8px 24px rgba(26, 14, 36, 0.12);
}
.mh-slot__dismiss {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: var(--mh-surface-2);
	color: var(--mh-ink);
	font-size: 1rem;
	cursor: pointer;
}

/* ----- Content / article ---------------------------------------------------------- */
.mh-content { display: block; }
.mh-content__main { min-width: 0; }
.mh-article__content { font-size: 1.08rem; line-height: 1.75; }
.mh-article__content > * { max-width: 720px; }
.mh-article__content h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin: 1.5em 0 0.5em; }
.mh-article__content h3 { font-size: clamp(1.25rem, 3.2vw, 1.55rem); margin: 1.3em 0 0.4em; }
.mh-article__content a { color: var(--mh-violet-ink); text-decoration: underline; text-underline-offset: 3px; }
.mh-article__content a:hover { color: var(--mh-gold-ink); }
.mh-article__content img { border-radius: var(--mh-radius); margin: 1.2em 0; }
.mh-article__content blockquote {
	border-left: 5px solid var(--mh-gold);
	margin: 1.4em 0;
	padding: 8px 0 8px 22px;
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: 1.25rem;
}
.mh-article__content figure,
.mh-article__content .wp-block-embed { max-width: 100%; }
.mh-article__pages { margin: 16px 0; font-weight: 700; }
.mh-article__foot { margin-top: 28px; padding-top: 20px; border-top: 2px solid var(--mh-line); display: flex; flex-direction: column; gap: 16px; }
.mh-article__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.mh-article__tags a {
	display: inline-block;
	padding: 6px 14px;
	border: 2px solid var(--mh-line-soft);
	border-radius: var(--mh-radius-pill);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--mh-muted);
}
.mh-article__tags a:hover { border-color: var(--mh-violet-ink); color: var(--mh-violet-ink); text-decoration: none; }

.mh-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.mh-share__label { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mh-muted); }
.mh-share__link,
.mh-share__native {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 7px 15px;
	border: 2px solid var(--mh-line-soft);
	border-radius: var(--mh-radius-pill);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--mh-ink);
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
}
.mh-share__link:hover,
.mh-share__native:hover { border-color: var(--mh-violet-ink); color: var(--mh-violet-ink); text-decoration: none; }

.mh-related { margin-top: 36px; padding-top: 24px; border-top: 2px solid var(--mh-line); }
.mh-rail-aside { margin-top: 30px; }

/* ----- Widgets / comments ------------------------------------------------------------ */
.mh-widget { margin-bottom: 24px; min-width: 0; }
.mh-widget__title { font-size: 1.1rem; margin: 0 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--mh-line); }
.mh-widget ul { list-style: none; margin: 0; padding: 0; }
.mh-widget li { padding: 7px 0; border-bottom: 1px solid var(--mh-line-soft); }
.mh-comments { margin-top: 36px; padding-top: 22px; border-top: 2px solid var(--mh-line); }
.mh-comments__list { list-style: none; padding: 0; }
.mh-comments__closed { color: var(--mh-muted); font-style: italic; }

/* ----- Join band ------------------------------------------------------------------ */
.mh-join {
	background:
		radial-gradient(110% 160% at 85% -20%, rgba(200, 164, 77, 0.20), transparent 55%),
		radial-gradient(90% 140% at 5% 120%, rgba(107, 63, 160, 0.28), transparent 55%),
		var(--mh-night);
	color: var(--mh-night-text);
	border-radius: var(--mh-radius-lg);
	margin: clamp(24px, 5vw, 50px) 0;
}
.mh-join__inner { padding: clamp(28px, 6vw, 56px) clamp(18px, 5vw, 48px); text-align: center; max-width: 720px; margin-inline: auto; }
.mh-join__title { color: #fff; font-size: clamp(1.8rem, 6vw, 2.8rem); margin: 0 0 8px; font-weight: 900; }
.mh-join__dek { color: var(--mh-night-muted); margin: 0 0 20px; }
.mh-join__form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; border: 0; padding: 0; margin: 0; }
.mh-join__form input[type="email"] {
	flex: 1 1 220px;
	min-width: 0;
	padding: 13px 18px;
	border: 0;
	border-radius: var(--mh-radius-pill);
	background: #fff;
	color: var(--mh-ink);
	font: inherit;
}
.mh-join__form--pending { opacity: 0.75; }
.mh-join__note { margin: 12px 0 0; font-size: 0.8rem; color: var(--mh-gold-bright); font-weight: 700; }
.mh-join .mh-signal { margin-inline: auto; margin-top: 22px; text-align: left; }

/* ----- Footer ------------------------------------------------------------------ */
.mh-footer { background: var(--mh-night); color: var(--mh-night-text); border-top: 3px solid var(--mh-gold); }
.mh-footer a { color: var(--mh-night-text); }
.mh-footer a:hover { color: var(--mh-gold-bright); }
.mh-footer__cols {
	width: min(100% - 32px, var(--mh-wrap));
	margin-inline: auto;
	padding: clamp(28px, 5vw, 46px) 0 10px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
.mh-footer .mh-widget__title { color: #fff; border-bottom-color: rgba(233, 226, 242, 0.2); }
.mh-footer .mh-widget li { border-bottom-color: rgba(233, 226, 242, 0.1); }
.mh-footer .mh-nav__list { width: auto; display: block; }
.mh-footer .mh-nav__list li { text-align: left; }
.mh-footer .mh-nav__list a { padding: 6px 0; text-transform: none; letter-spacing: 0; font-size: 0.9rem; border: 0; }
.mh-footer__bar {
	width: min(100% - 32px, var(--mh-wrap));
	margin-inline: auto;
	padding: 20px 0 34px;
	border-top: 1px solid rgba(233, 226, 242, 0.14);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}
.mh-footer__menu,
.mh-footer__social { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; margin: 0; padding: 0; justify-content: center; }
.mh-footer__social a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.88rem; min-height: 44px; }
.mh-footer__social-logo {
	display: inline-flex;
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: #fff;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
.mh-footer__social-logo img { width: 22px; height: 22px; object-fit: contain; }
.mh-footer__copy { color: var(--mh-night-muted); font-size: 0.8rem; margin: 0; }

/* ----- Pagination / none / 404 -------------------------------------------------- */
.mh-pagination { margin-top: 30px; }
.mh-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.mh-pagination a,
.mh-pagination .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	padding: 0 14px;
	border: 2px solid var(--mh-line-soft);
	border-radius: 14px;
	font-weight: 800;
	color: var(--mh-ink);
	text-decoration: none;
}
.mh-pagination a:hover { border-color: var(--mh-violet-ink); color: var(--mh-violet-ink); }
.mh-pagination .current { background: var(--mh-violet); border-color: var(--mh-violet); color: #fff; }

.mh-none { text-align: center; padding: 40px 0; }
.mh-none__search { max-width: 480px; margin: 18px auto; }

.mh-404 { text-align: center; padding: clamp(28px, 6vw, 56px) 0 10px; }
.mh-404__notes { display: flex; justify-content: center; gap: 18px; font-size: 1.8rem; color: var(--mh-gold-ink); }
.mh-404__note { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
	.mh-404__note { animation: mh-drift 5.5s ease-in-out infinite; }
	.mh-404__note:nth-child(2) { animation-delay: -1.1s; }
	.mh-404__note:nth-child(3) { animation-delay: -2.2s; }
	.mh-404__note:nth-child(4) { animation-delay: -3.3s; }
	.mh-404__note:nth-child(5) { animation-delay: -4.4s; }
}
@keyframes mh-drift {
	0%, 100% { transform: translateY(0) rotate(-8deg); }
	50% { transform: translateY(-12px) rotate(8deg); }
}
.mh-404__code {
	font-family: var(--mh-serif);
	font-weight: 900;
	font-size: clamp(3.4rem, 15vw, 6.5rem);
	line-height: 1;
	margin: 6px 0;
	background: var(--mh-grad-gold);
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
}
.mh-404__title { font-size: clamp(1.7rem, 5.5vw, 2.5rem); margin: 0 0 8px; }
.mh-404__dek { color: var(--mh-muted); max-width: 54ch; margin: 0 auto 18px; }
.mh-404__search { max-width: 480px; margin: 0 auto 14px; }

/* ----- Embeds (dimension locks) --------------------------------------------------- */
.mh-embed { position: relative; width: 100%; margin: 22px auto; border-radius: var(--mh-radius); overflow: hidden; }
.mh-embed iframe { width: 100% !important; border: 0; display: block; }
.mh-embed--video { aspect-ratio: 16 / 9; max-width: 840px; background: #000; }
.mh-embed--video iframe { position: absolute; inset: 0; height: 100% !important; }
.mh-embed--ig { max-width: 540px; min-height: 480px; }
.mh-embed--tiktok { max-width: 380px; aspect-ratio: 9 / 16; background: #000; }
.mh-embed--tiktok iframe { position: absolute; inset: 0; height: 100% !important; }
.mh-embed--x { max-width: 550px; }
.mh-embed--audio { max-width: 840px; }
.mh-embed--audio iframe { height: 152px !important; }
.mh-embed--audio.is-playlist iframe { height: 352px !important; }

/* Playful gold eyebrow sticker (zone/hero kickers). */
.mh-sticker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: var(--mh-radius-pill);
	background: var(--mh-grad-gold);
	color: var(--mh-ink);
	font-weight: 900;
	font-size: 0.74rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: 0 4px 14px rgba(200, 164, 77, 0.32);
}
.mh-sticker__dot { width: 9px; height: 9px; border-radius: 50%; background: #2E1A40; }
@media (prefers-reduced-motion: no-preference) {
	.mh-sticker__dot { animation: mh-pulse 1.6s infinite; }
}

/* ----- THE PULSE — dominant hero slider (the news/music hook) ------------------- */
.mh-heroslider { margin: clamp(6px, 1.4vw, 16px) 0 clamp(24px, 4vw, 40px); }
.mh-heroslider__head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 0 0 14px; }
.mh-heroslider__title { font-size: clamp(1.6rem, 5.2vw, 2.4rem); font-weight: 900; margin: 0; letter-spacing: -0.015em; }
.mh-heroslider__viewport { overflow: hidden; border-radius: var(--mh-radius-lg); box-shadow: var(--mh-shadow); }
.mh-heroslider__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 100%;
	gap: 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.mh-heroslider__track::-webkit-scrollbar { display: none; }
.mh-heroslider__slide { scroll-snap-align: start; min-width: 0; }
.mh-slide {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(420px, 66vw, 580px);
	border-radius: var(--mh-radius-lg);
	overflow: hidden;
	background: var(--sk-bg);
	color: var(--sk-text);
	/* 3.5D music-poster: gold edge, layered depth, raised surface. */
	border: 1.5px solid rgba(228, 200, 120, 0.72);
	box-shadow: 0 28px 60px rgba(43, 21, 61, 0.3), 0 5px 0 rgba(82, 39, 111, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.14);
	transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
	transform-style: preserve-3d;
}
.mh-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 24%),
		radial-gradient(circle at 78% 16%, rgba(228, 200, 120, 0.2), transparent 32%);
	pointer-events: none;
}
@media (hover: hover) {
	.mh-heroslider__slide:hover .mh-slide { transform: translateY(-4px) perspective(1000px) rotateX(1.1deg); box-shadow: 0 36px 72px rgba(43, 21, 61, 0.34), 0 6px 0 rgba(82, 39, 111, 0.45); }
}
.mh-slide:active { transform: translateY(-1px) scale(0.996); }
.mh-slide__media { position: absolute; inset: 0; }
.mh-slide__media img { width: 100%; height: 100%; object-fit: cover; }
.mh-slide__media-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: var(--sk-grad);
	background-image: radial-gradient(120% 130% at 80% -10%, var(--sk-glow), transparent 55%), var(--sk-grad);
}
.mh-slide__media-slot .mh-card__glyph { font-size: 5rem; }
.mh-slide__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(20, 12, 28, 0.94) 4%, rgba(20, 12, 28, 0.66) 40%, rgba(20, 12, 28, 0.08) 78%);
}
.mh-slide__body {
	position: relative;
	z-index: 1;
	padding: clamp(20px, 4vw, 40px);
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 760px;
}
.mh-slide__title {
	font-size: clamp(1.9rem, 6.8vw, 3.6rem);
	line-height: 1.02;
	margin: 0;
	font-weight: 900;
	letter-spacing: -0.02em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mh-slide__title a { color: #fff; text-shadow: 0 3px 28px rgba(0, 0, 0, 0.6); }
.mh-slide__title a:hover { color: var(--mh-gold-bright); text-decoration: none; }
.mh-slide__dek {
	color: #EFE7FA;
	font-size: clamp(1rem, 2.6vw, 1.2rem);
	line-height: 1.45;
	margin: 0;
	max-width: 60ch;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.mh-slide__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 4px; }
.mh-slide__actions .mh-listen { color: #fff; border-color: #fff; }
.mh-slide__actions .mh-listen:hover { background: #fff; color: var(--mh-plum); }
.mh-heroslider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.mh-heroslider__dot {
	width: 30px;
	height: 8px;
	border-radius: 999px;
	border: 0;
	background: var(--mh-line);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, width 0.2s ease;
}
.mh-heroslider__dot.is-active { background: var(--mh-grad-gold); width: 44px; }
.mh-heroslider__dot:hover { background: var(--mh-gold); }

/* ----- Explore Genres drawer (app-style) ---------------------------------------- */
.mh-drawer { position: fixed; inset: 0; z-index: 200; }
.mh-drawer[hidden] { display: none; }
.mh-drawer__scrim { position: absolute; inset: 0; background: rgba(20, 12, 28, 0.62); animation: mh-fade 0.2s ease; }
.mh-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(92vw, 460px);
	background:
		radial-gradient(120% 60% at 100% 0%, rgba(200, 164, 77, 0.14), transparent 55%),
		var(--mh-surface);
	border-left: 4px solid var(--mh-gold);
	padding: clamp(18px, 4vw, 30px);
	overflow-y: auto;
	animation: mh-slide-in 0.26s cubic-bezier(0.2, 0.8, 0.2, 1);
	box-shadow: var(--mh-shadow);
}
.mh-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mh-drawer__title { font-size: 1.5rem; margin: 0; }
.mh-drawer__close {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--mh-surface-2);
	color: var(--mh-ink);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}
.mh-drawer__close:hover { background: var(--mh-violet); color: #fff; }
.mh-drawer__sub { font-size: 0.82rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mh-muted); margin: 20px 0 10px; }
.mh-drawer__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.mh-drawer__chips--tight { gap: 8px; }
.mh-drawer__chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 46px;
	padding: 9px 16px;
	border-radius: var(--mh-radius-pill);
	background: var(--mh-surface);
	border: 2px solid var(--mh-line);
	color: var(--mh-ink);
	font-weight: 800;
	font-size: 0.9rem;
	text-decoration: none;
}
.mh-drawer__chip:hover { border-color: var(--sk-accent); text-decoration: none; transform: translateY(-1px); }
.mh-drawer__chip-dot { width: 12px; height: 12px; border-radius: 4px; background: var(--sk-grad); flex: none; }
@keyframes mh-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mh-slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ----- Compact bottom app bar (mobile utility — secondary to content) ----------- */
.mh-appbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 120;
	display: none;
	background: var(--mh-pulsebar);
	border-top: 2px solid rgba(228, 200, 120, 0.4);
	padding: 4px max(6px, env(safe-area-inset-left)) calc(4px + env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-right));
}
.mh-appbar__item {
	flex: 1 1 0;
	min-width: 0; /* allow flex items to shrink below content width on 320px */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-height: 54px;
	padding: 6px 2px;
	background: none;
	border: 0;
	color: var(--mh-night-text);
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border-radius: 12px;
}
.mh-appbar__item:hover,
.mh-appbar__item:focus-visible { color: var(--mh-gold-bright); text-decoration: none; background: rgba(255, 255, 255, 0.06); }
.mh-appbar__glyph { font-size: 1.25rem; line-height: 1; }
.mh-appbar__label { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.03em; }

/* ----- Enter The Zone — backend-toggleable mini hero bars ----------------------- */
.mh-zonebars__curated { color: var(--mh-muted); font-size: 0.92rem; font-weight: 600; }
.mh-zonebars .mh-zone-head { align-items: center; }
.mh-zone-head__title--bolt { display: inline-flex; align-items: center; gap: 9px; }
.mh-zonebars .mh-zone-head__title::before { content: none !important; } /* use the inline bolt glyph, not the generic gold tick */
.mh-zonebolt { color: var(--mh-gold-ink); font-size: 1.1em; }
.mh-zonebars__list { display: flex; flex-direction: column; gap: 12px; }
.mh-zonebar {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 86px;
	padding: 16px 18px;
	border-radius: var(--mh-radius-lg);
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	box-shadow: var(--mh-shadow-soft);
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.mh-zonebar:hover { transform: translateY(-2px); box-shadow: var(--mh-shadow); text-decoration: none; }
.mh-zonebar--plum { background: linear-gradient(100deg, #3A1F4D 0%, #2E1A40 100%); }
.mh-zonebar--grape { background: linear-gradient(100deg, #4A2A5C 0%, #2E1A40 100%); }
.mh-zonebar--gold { background: linear-gradient(100deg, #6E5A1C 0%, #8A6D2A 100%); }
.mh-zonebar__media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.mh-zonebar__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 12, 28, 0.86) 30%, rgba(20, 12, 28, 0.35) 100%); }
.mh-zonebar__icon {
	position: relative;
	z-index: 1;
	flex: none;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: rgba(255, 255, 255, 0.12);
	border: 2px solid rgba(228, 200, 120, 0.6);
}
.mh-zonebar__text { position: relative; z-index: 1; flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.mh-zonebar__title { font-weight: 900; font-size: 1.06rem; letter-spacing: 0.04em; text-transform: uppercase; }
.mh-zonebar__subtitle { font-size: 0.92rem; opacity: 0.9; }
.mh-zonebar__cta {
	position: relative;
	z-index: 1;
	flex: none;
	padding: 6px 14px;
	border-radius: var(--mh-radius-pill);
	background: rgba(255, 255, 255, 0.16);
	font-size: 0.78rem;
	font-weight: 800;
}
.mh-zonebar__arrow {
	position: relative;
	z-index: 1;
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
}

/* ==========================================================================
   Premium bells & whistles — micro-polish (no clutter, no dead space)
   ========================================================================== */
/* Buttons: subtle lift + gold glow on the primary CTA. */
.mh-btn { transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease; }
.mh-btn--gold:hover { box-shadow: 0 10px 26px rgba(200, 164, 77, 0.42); }
.mh-btn:active { transform: translateY(0) scale(0.99); }

/* Cards: a whisper of gold ring on hover for bright cards; skinned cards glow their accent. */
.mh-card:not(.mh-skinned):hover { border-color: rgba(200, 164, 77, 0.55); box-shadow: 0 16px 38px rgba(26, 14, 36, 0.16); }
.mh-card { transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease, border-color 0.2s ease; }

/* Section rhythm: a hairline gold divider between major homepage sections (not the first). */
.mh-wrap > .mh-section + .mh-section,
.mh-wrap > .mh-section + .mh-services-band,
.mh-wrap > .mh-heroslider + .mh-section {
	position: relative;
}
.mh-wrap > .mh-section + .mh-section::before {
	content: "";
	position: absolute;
	top: calc(clamp(26px, 5vw, 52px) * -0.5);
	left: 50%;
	transform: translateX(-50%);
	width: 64px;
	height: 3px;
	border-radius: 3px;
	background: var(--mh-grad-gold);
	opacity: 0.5;
}

/* Zone heads: gold accent tick before the title for editorial polish. */
.mh-zone-head__title { position: relative; }
.mh-section > .mh-zone-head:not(.mh-zone-head--skinned) .mh-zone-head__title::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	border-radius: 3px;
	background: var(--mh-grad-gold);
	transform: translateY(-2px) rotate(12deg);
	vertical-align: middle;
}

/* Service chips + bubbles: gentle press feedback. */
.mh-service-chip:active, .mh-chip:active { transform: translateY(0) scale(0.98); }

/* Enter-The-Zone bars: subtle lift on hover (defined in the zone-bar block). */

/* Focus polish: rounded, offset rings already set in tokens; ensure chips show them cleanly. */
.mh-service-chip:focus-visible, .mh-chip:focus-visible, .mh-appbar__item:focus-visible { outline-offset: 3px; }

/* ----- My Artist Orbit — full-width abundant, dimensional bubbles ------------ */
.mh-artists__grid {
	list-style: none;
	margin: 0;
	padding: 4px 0 8px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
	gap: clamp(14px, 2.4vw, 26px) clamp(10px, 2vw, 20px);
	justify-items: center;
}
.mh-artists__item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mh-artists .mh-bubble__ring {
	box-shadow: 0 12px 26px var(--sk-glow), inset 0 2px 0 rgba(255, 255, 255, 0.25), inset 0 -8px 16px rgba(0, 0, 0, 0.18);
}
.mh-artists .mh-bubble:hover .mh-bubble__ring { transform: translateY(-3px) scale(1.05); }
.mh-bubble__follow[aria-pressed="true"] { background: var(--mh-grad-gold); border-color: transparent; color: var(--mh-ink); }

/* ----- Dimensional module upgrades (MusicHaven Edge across the experience) ------- */
.mh-heroslider__viewport { box-shadow: none; overflow: visible; }
.mh-zonebar {
	border: 1.5px solid rgba(228, 200, 120, 0.55);
	box-shadow: 0 16px 32px rgba(43, 21, 61, 0.22), 0 3px 0 rgba(82, 39, 111, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.mh-zonebar__icon, .mh-zonebar__arrow { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 10px rgba(0, 0, 0, 0.2); }
.mh-zonebar:active { transform: translateY(-1px) scale(0.996); }

.mh-posterband {
	border: 1.5px solid rgba(228, 200, 120, 0.72);
	box-shadow: 0 24px 50px rgba(43, 21, 61, 0.16), 0 4px 0 rgba(200, 164, 77, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	background:
		radial-gradient(120% 160% at 88% -18%, rgba(200, 164, 77, 0.26), transparent 55%),
		radial-gradient(100% 150% at 4% 120%, rgba(107, 63, 160, 0.16), transparent 55%),
		linear-gradient(180deg, #FFFDF7, #FBF1DE);
}

/* Bottom app bar — a raised plum capsule with a gold active planet. */
.mh-appbar {
	background: linear-gradient(180deg, #3A2450 0%, #241733 100%);
	border-top: 1.5px solid rgba(228, 200, 120, 0.5);
	box-shadow: 0 -10px 30px rgba(20, 12, 28, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.mh-appbar__item.is-active,
.mh-appbar__item[aria-current="page"] { color: var(--mh-gold-bright); }
.mh-appbar__item:active { transform: scale(0.96); }

/* ==========================================================================
   Breakpoints — enhance up
   ========================================================================== */
@media (min-width: 600px) {
	.mh-grid { grid-template-columns: repeat(2, 1fr); }
	.mh-rail__track { grid-auto-columns: 46%; }
	.mh-bubble__ring { width: 108px; height: 108px; }
	.mh-footer__cols { grid-template-columns: repeat(3, 1fr); }
	.mh-footer__bar { flex-direction: row; justify-content: space-between; text-align: left; }
	.mh-hero--track .mh-hero__media,
	.mh-hero--poster .mh-hero__media { border-radius: var(--mh-radius); }
}

@media (min-width: 900px) {
	body { font-size: 18px; }
	.mh-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.mh-grid--4 { grid-template-columns: repeat(4, 1fr); }
	.mh-grid { grid-template-columns: repeat(3, 1fr); }
	.mh-grid.mh-grid--4 { grid-template-columns: repeat(4, 1fr); }
	.mh-rail__track { grid-auto-columns: 31%; }
	.mh-slot--header-sponsor { display: block; }
	.mh-hero--track { display: grid; grid-template-columns: 40% 1fr; align-items: stretch; }
	.mh-hero--track .mh-hero__media { aspect-ratio: 1 / 1; height: 100%; }
	.mh-hero--poster { display: grid; grid-template-columns: 42% 1fr; align-items: stretch; }
	.mh-hero--poster .mh-hero__media { height: 100%; }
	.mh-artist-hub { flex-direction: row; text-align: left; }
	.mh-artist-hub__actions { justify-content: flex-start; }
	.mh-artist-hub .mh-bubble--hub { flex: none; }
	.mh-content--has-rail {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 44px;
		align-items: start;
	}
	.mh-rail-aside { position: sticky; top: calc(var(--mh-header-h) + 20px); margin-top: 0; }
	.mh-slot--mobile-sticky { display: none; }
	/* The Pulse hero stays big and dominant on desktop; text hits hard. */
	.mh-slide { min-height: clamp(460px, 46vw, 600px); }
	.mh-slide__body { max-width: 64%; }
}

@media (min-width: 1200px) {
	.mh-rail__track { grid-auto-columns: 23.5%; }
	.mh-card--track .mh-card__media { flex-basis: 34%; }
}

/* Bottom app bar: mobile/tablet-portrait only; desktop hides it (nav carries the load). */
@media (max-width: 899px) {
	.mh-appbar { display: flex; }
	body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
}

/* ----- Structural hooks & light modifiers ---------------------------------------- */
.mh-header { position: relative; }
.mh-genre-zone,
.mh-rail--foryou { scroll-margin-top: 84px; }
.mh-page-head--wall { text-align: center; }
.mh-chip--genre { border-color: rgba(122, 97, 37, 0.5); }
.mh-rail--playlists .mh-rail__track { grid-auto-columns: 74%; }
.mh-rail--pulse .mh-rail__track { grid-auto-columns: 86%; }
.mh-rail--bubbles .mh-rail__track { padding-bottom: 6px; }
.mh-intent--cluster {
	padding: 16px;
	border: 2px dashed var(--mh-line);
	border-radius: var(--mh-radius);
	background: var(--mh-surface);
}
@media (min-width: 600px) {
	.mh-rail--playlists .mh-rail__track { grid-auto-columns: 42%; }
	.mh-rail--pulse .mh-rail__track { grid-auto-columns: 48%; }
}
@media (min-width: 900px) {
	.mh-rail--playlists .mh-rail__track { grid-auto-columns: 28%; }
	.mh-rail--pulse .mh-rail__track { grid-auto-columns: 32%; }
}

/* Tablet & down: each wing shows one widget so the logo stays commanding. */
@media (max-width: 899px) {
	.mh-brandband__wing .mh-wingpill--sub { display: none; }
	.mh-brandband__row { gap: clamp(8px, 2vw, 22px); }

	/* Pulse: the true moving ticker, stretched the FULL width of the screen so the
	   headline has room to breathe and read. Pulse label indents on the left. */
	.mh-pulsebar {
		width: 100%;
		max-width: none;
		margin: 0 0 2px;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
	}
	.mh-pulsebar__inner { padding-left: 14px; gap: 10px; }
	/* Slower + larger on mobile so each headline is actually legible as it passes. */
	.mh-ticker__track.is-animated .mh-ticker__lane { animation-duration: 46s; }
	.mh-ticker__lead { font-size: 1.16rem; }
	.mh-ticker__item { font-size: 1.02rem; }

	/* Rails: NO side-scroll discovery — every card stacks in view (vertical scroll only). */
	.mh-rail__track {
		grid-auto-flow: row;
		grid-auto-columns: auto;
		grid-template-columns: 1fr;
		gap: 16px;
		overflow: visible;
		scroll-snap-type: none;
		padding-bottom: 4px;
	}
	.mh-rail__item { scroll-snap-align: none; }
	/* Artist bubbles wrap into rows instead of a swipe strip. */
	.mh-rail--bubbles .mh-rail__track {
		grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
		justify-items: center;
		gap: 14px 10px;
	}
	/* Filter chips wrap too — nothing lives off-screen behind a swipe. */
	.mh-chip-rail__track { flex-wrap: wrap; overflow: visible; }
}
/* Tablet portrait: two-up grids read better than a single tall column — still no scroll. */
@media (min-width: 600px) and (max-width: 899px) {
	.mh-rail__track { grid-template-columns: repeat(2, 1fr); }
}
/* Small screens: tighten the whole top stack so the hero lands in the first viewport. */
@media (max-width: 599px) {
	.mh-card--track { flex-direction: column; }
	.mh-card--track .mh-card__media { aspect-ratio: 16 / 10; }
	.mh-slot--header-sponsor { display: none; }
	.mh-pulsebar__label { padding: 9px 14px; font-size: 0.88rem; }
	.mh-pulsebar__inner { min-height: 50px; }
	/* Wing widgets shrink so they never crowd the flanked logo. */
	.mh-wingpill { font-size: 0.74rem; padding: 8px 12px; min-height: 36px; gap: 5px; }
	.mh-brandband__row { gap: 6px; }
	.mh-logo--full { max-width: 58vw; }
	/* Hero dominant but sized so the whole card + a peek of the next module fit the first screen. */
	.mh-slide { min-height: clamp(360px, 92vw, 430px); }
	.mh-slide__title { font-size: clamp(1.7rem, 8vw, 2.3rem); }
}
@media (max-width: 400px) {
	.mh-wingpill__label { display: none; } /* icon-only wing widgets on the smallest phones */
	.mh-wingpill { padding: 9px 12px; }
	.mh-logo--full { max-width: 60vw; }
}
