/* ==========================================================================
   Header
   ========================================================================== */

.mv-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.mv-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 18px;
	max-width: var(--container-max);
	margin: 0 auto;
}

.mv-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-text);
}

.mv-logo svg { flex-shrink: 0; }

.mv-logo__word {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	line-height: 1;
}

.mv-logo__mide {
	font-weight: 900;
	color: var(--color-accent);
}

.mv-logo__mide::after {
	content: "Vibez";
	font-weight: 400;
	color: var(--color-text);
}

/* When bloginfo(name) already contains the full brand name, hide the
   duplicated ::after and just style the text directly via JS-free CSS:
   the theme ships name "MideVibez" by default so this pseudo-element
   approach only needs the split point handled in header.php markup
   instead — see header.php for the two-span version used in practice. */

.mv-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.mv-icon-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--color-text);
	transition: background-color 0.15s, border-color 0.15s;
}

.mv-icon-btn:hover,
.mv-icon-btn:focus-visible {
	background: var(--color-accent-soft);
	border-color: rgba(var(--color-accent-rgb), 0.3);
}

.mv-icon-btn[aria-pressed="true"] {
	background: var(--color-accent-soft);
	border-color: rgba(var(--color-accent-rgb), 0.3);
	color: var(--color-accent);
}

/* Nav tabs */
.mv-tabs {
	display: flex;
	border-top: 1px solid var(--color-border-soft);
	overflow-x: auto;
	scrollbar-width: none;
	max-width: var(--container-max);
	margin: 0 auto;
}
.mv-tabs::-webkit-scrollbar { display: none; }

.mv-tabs a {
	flex: 0 0 auto;
	min-width: 72px;
	padding: 10px 6px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: var(--color-text-faint);
	border-bottom: 2.5px solid transparent;
	transition: color 0.15s, border-color 0.15s;
}

.mv-tabs a:hover,
.mv-tabs a:focus-visible {
	color: var(--color-accent);
}

.mv-tabs a[aria-current="page"] {
	color: var(--color-accent);
	border-bottom-color: var(--color-accent);
}

.mv-tabs a svg { width: 20px; height: 20px; }

/* Search bar */
.mv-search-panel {
	padding: 10px 16px 12px;
	background: var(--color-bg-alt);
	border-top: 1px solid var(--color-border-soft);
}

.mv-search-form {
	display: flex;
	gap: 8px;
	align-items: center;
	max-width: var(--container-max);
	margin: 0 auto;
}

.mv-search-form__input {
	flex: 1;
	height: 42px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	font-size: 14px;
	color: var(--color-text);
	outline: none;
}

.mv-search-form__input:focus-visible {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.mv-search-form__submit {
	height: 42px;
	padding: 0 18px;
	border-radius: 10px;
	background: var(--color-accent);
	border: none;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(var(--color-accent-rgb), 0.3);
	flex-shrink: 0;
}

.mv-search-form__submit:hover { background: var(--color-accent-hover); }

/* ==========================================================================
   Badges
   ========================================================================== */

.mv-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 20px;
	letter-spacing: 0.05em;
	background: var(--color-accent-soft);
	color: var(--color-accent);
	white-space: nowrap;
}

.mv-badge--video,
.mv-badge--videos {
	background: rgba(59, 130, 246, 0.12);
	color: #3b82f6;
}

.mv-badge--album,
.mv-badge--albums {
	background: rgba(16, 185, 129, 0.12);
	color: #10b981;
}

/* ==========================================================================
   Artist pills (Explore section)
   ========================================================================== */

.mv-artist-pill {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--color-surface);
	border-radius: 16px;
	padding: 10px 16px 10px 10px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border-soft);
	min-width: 140px;
	transition: box-shadow 0.15s, transform 0.15s;
}

.mv-artist-pill:hover {
	box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.2);
	transform: translateY(-1px);
}

.mv-artist-pill__thumb {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(var(--color-accent-rgb), 0.15);
	background: var(--color-bg-alt);
}

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

.mv-artist-pill__name {
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

/* ==========================================================================
   Hero album/track slider
   ========================================================================== */

.mv-hero-slider {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.mv-hero-slide {
	position: relative;
	height: 200px;
	background-size: cover;
	background-position: center;
	display: none;
}

@media (min-width: 700px) {
	.mv-hero-slide { height: 280px; }
}
@media (min-width: 1024px) {
	.mv-hero-slide { height: 340px; }
}

.mv-hero-slide.is-active { display: block; }

.mv-hero-slide__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}

.mv-hero-slide__body {
	position: absolute;
	bottom: 16px;
	left: 18px;
	right: 18px;
	color: #fff;
}

.mv-hero-slide__label {
	font-size: 10px;
	font-weight: 700;
	background: rgba(var(--color-accent-rgb), 0.9);
	color: #fff;
	padding: 3px 10px;
	border-radius: 20px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mv-hero-slide__title {
	font-size: 22px;
	font-weight: 900;
	margin-top: 6px;
	letter-spacing: -0.01em;
	line-height: 1.1;
}

@media (min-width: 700px) {
	.mv-hero-slide__title { font-size: 28px; }
}

.mv-hero-slide__artist {
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	margin-top: 3px;
}

.mv-hero-dots {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	gap: 5px;
}

.mv-hero-dots button {
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: rgba(255,255,255,0.4);
	border: none;
	padding: 0;
	transition: width 0.3s;
}

.mv-hero-dots button.is-active {
	width: 18px;
	background: #fff;
}

/* ==========================================================================
   Grid cards (Recently Added)
   ========================================================================== */

.mv-grid-card { cursor: pointer; }

.mv-grid-card__art {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	margin-bottom: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.12);
	border: 1px solid var(--color-border-soft);
	background-size: cover;
	background-position: center;
	background-color: var(--color-bg-alt);
}

.mv-grid-card__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv-grid-card__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.mv-grid-card__badge {
	position: absolute;
	top: 8px;
	right: 8px;
}

.mv-grid-card__initial {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 900;
	color: rgba(255,255,255,0.2);
	letter-spacing: 0.05em;
}

.mv-grid-card__title {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 3px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mv-grid-card__meta {
	display: flex;
	align-items: center;
	font-size: 11px;
	color: var(--color-text-faint);
}

/* Load more */
.mv-load-more {
	width: 100%;
	margin-top: 20px;
	padding: 14px;
	border-radius: 12px;
	background: var(--color-surface);
	border: 1.5px solid rgba(var(--color-accent-rgb), 0.3);
	font-size: 14px;
	font-weight: 700;
	color: var(--color-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 2px 10px rgba(var(--color-accent-rgb), 0.12);
	transition: all 0.2s;
}

.mv-load-more:hover {
	background: var(--color-accent);
	color: #fff;
}

.mv-load-more.is-loading { opacity: 0.6; pointer-events: none; }

.mv-all-loaded {
	margin-top: 20px;
	text-align: center;
	font-size: 12px;
	color: var(--color-text-faint);
	padding: 10px 0;
}

/* ==========================================================================
   Trending list
   ========================================================================== */

.mv-trending-list {
	background: var(--color-surface);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.mv-trending-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--color-border-soft);
}

.mv-trending-row:last-child { border-bottom: none; }

.mv-trending-rank {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	flex-shrink: 0;
	background: rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 900;
	color: var(--color-text-muted);
}

.mv-trending-rank--1 { background: var(--color-accent); color: #fff; }
.mv-trending-rank--2 { background: #C0A060; color: #fff; }
.mv-trending-rank--3 { background: #A08070; color: #fff; }

.mv-trending-info { flex: 1; min-width: 0; }

.mv-trending-title {
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mv-trending-artist {
	font-size: 11px;
	color: var(--color-text-faint);
	margin-top: 1px;
}

.mv-trending-side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.mv-trending-hot {
	font-size: 9px;
	font-weight: 700;
}

/* ==========================================================================
   Category grid
   ========================================================================== */

.mv-cat-card {
	background: var(--color-surface);
	border-radius: 14px;
	padding: 16px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border-soft);
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: transform 0.15s, box-shadow 0.15s;
}

.mv-cat-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.mv-cat-card--featured {
	background: var(--color-accent);
	box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.3);
	color: #fff;
}

.mv-cat-card__icon { font-size: 26px; }

.mv-cat-card__label {
	font-size: 15px;
	font-weight: 800;
}

.mv-cat-card__count {
	font-size: 11px;
	color: var(--color-text-faint);
}

.mv-cat-card--featured .mv-cat-card__count {
	color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.mv-footer {
	background: var(--color-footer-bg);
	padding: 36px var(--gutter) 0;
	margin-top: 36px;
	color: #fff;
}

.mv-footer__inner {
	max-width: var(--container-max);
	margin: 0 auto;
}

.mv-footer .mv-logo__mide::after { color: #fff; }

.mv-footer__tagline {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	line-height: 1.6;
	margin: 10px 0 28px;
	max-width: 320px;
}

.mv-footer-col-title {
	font-size: 11px;
	font-weight: 700;
	color: var(--color-accent);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.mv-footer-col a {
	font-size: 13px;
	color: rgba(255,255,255,0.55);
	margin-bottom: 7px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.mv-footer-col a::before {
	content: "";
	width: 3px; height: 3px;
	border-radius: 50%;
	background: rgba(var(--color-accent-rgb), 0.6);
	flex-shrink: 0;
}

.mv-footer-divider {
	height: 1px;
	background: rgba(255,255,255,0.08);
	margin: 20px 0;
}

.mv-footer-follow-title {
	font-size: 11px;
	font-weight: 700;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.mv-social-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.mv-social-btn {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	color: #fff;
}

.mv-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.07);
	margin-top: 24px;
	padding: 16px 0 28px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: center;
}

.mv-footer-bottom p {
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	margin: 0;
}

.mv-footer-bottom p:last-child {
	font-size: 11px;
	color: rgba(255,255,255,0.18);
}

.mv-footer-bottom strong { color: var(--color-accent); font-weight: 600; }

/* Scroll to top */
.mv-scroll-top {
	position: fixed;
	bottom: 24px;
	right: 18px;
	z-index: 300;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--color-accent);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-accent);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.mv-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mv-scroll-top:hover { transform: scale(1.08); }

/* ==========================================================================
   Single track: hero, player, track-info table, download/share buttons
   ========================================================================== */

.mv-track-meta {
	padding: 20px var(--gutter);
	background: var(--color-bg);
}

.mv-track-meta h1 {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 14px;
}

.mv-track-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mv-track-author__avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--color-text);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mv-track-author__name {
	font-size: 14px;
	font-weight: 700;
}

.mv-track-author__date {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 2px;
	font-size: 12px;
	color: var(--color-text-muted);
}

.mv-track-rule {
	height: 2px;
	background: linear-gradient(90deg, var(--color-accent), rgba(var(--color-accent-rgb), 0.3));
	border-radius: 2px;
	margin-top: 16px;
}

.mv-hero-art {
	position: relative;
	height: 320px;
	overflow: hidden;
	background: #1a1010;
}

@media (min-width: 700px) {
	.mv-hero-art { height: 420px; }
}
@media (min-width: 1024px) {
	.mv-hero-art { height: 480px; border-radius: var(--radius-xl); margin: 0 var(--gutter); width: calc(100% - 2 * var(--gutter)); }
}

.mv-hero-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv-hero-art__fallback {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, #2a1208, #3d1a0a, #4a200e);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: rgba(255,255,255,0.6);
}

.mv-hero-art__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(245,244,242,0.05) 0%, transparent 30%, transparent 55%, rgba(245,244,242,0.92) 85%, var(--color-bg) 100%);
}

.mv-song-info {
	padding: 0 var(--gutter);
	margin-top: -48px;
	position: relative;
	z-index: 10;
}

.mv-song-info__row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}

.mv-song-info__title {
	font-size: 44px;
	line-height: 0.95;
	font-weight: 900;
	font-variation-settings: "wght" 900;
	text-transform: uppercase;
	letter-spacing: 0.005em;
	margin-bottom: 0;
}

@media (min-width: 700px) {
	.mv-song-info__title { font-size: 56px; }
}

.mv-song-info__artist {
	font-size: 16px;
	color: var(--color-text-muted);
	margin-top: 7px;
}

.mv-song-info__flag {
	width: 58px; height: 58px;
	border-radius: 50%;
	background: rgba(0,0,0,0.06);
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 28px;
}

/* Track info table */
.mv-track-table {
	border-radius: 14px;
	overflow: hidden;
	background: var(--color-surface);
	box-shadow: var(--shadow-sm);
}

.mv-track-table__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 16px;
	border-bottom: 1px solid var(--color-border-soft);
}

.mv-track-table__row:last-child { border-bottom: none; }

.mv-track-table__label { font-size: 14px; color: var(--color-text-faint); }

.mv-track-table__value {
	font-size: 14px;
	font-weight: 600;
	text-align: right;
	max-width: 60%;
}

/* Streaming platform links (Stream on Audiomack / Watch on YouTube / etc) */
.mv-stream-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mv-stream-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 16px 20px;
	border-radius: var(--radius-pill);
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.14);
	transition: transform 0.15s, box-shadow 0.15s;
}

.mv-stream-link:hover,
.mv-stream-link:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mv-stream-link:active {
	transform: translateY(0);
}

.mv-stream-link__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 26px;
	height: 26px;
}

.mv-stream-link__icon svg {
	width: 100%;
	height: 100%;
}

.mv-stream-link__text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.mv-stream-link__verb {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.82;
}

.mv-stream-link__name {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

/* Share / download buttons */
.mv-btn-share {
	width: 100%;
	padding: 17px 20px;
	border-radius: 16px;
	background: var(--color-accent);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 4px 24px rgba(var(--color-accent-rgb), 0.35);
	transition: transform 0.15s;
}

.mv-btn-share:active { transform: scale(0.98); }
.mv-btn-share.is-done { background: rgba(var(--color-accent-rgb), 0.8); }

.mv-btn-download {
	width: 100%;
	padding: 16px 20px;
	border-radius: 16px;
	background: linear-gradient(135deg, #fdf2f0, #fae8e5, #fdf2f0);
	border: 1px solid rgba(var(--color-accent-rgb), 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.mv-btn-download.is-done {
	background: var(--color-surface);
	border-color: rgba(var(--color-accent-rgb), 0.5);
	transform: scale(0.98);
	color: var(--color-accent);
}

.mv-btn-download__icon {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--color-accent-soft);
	border: 1px solid rgba(var(--color-accent-rgb), 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--color-accent);
}

.mv-btn-download__text { text-align: left; }
.mv-btn-download__filesize {
	font-size: 11px;
	color: rgba(var(--color-accent-rgb), 0.8);
	margin-top: 1px;
	letter-spacing: 0.05em;
}

.mv-btn-download__free {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: var(--color-accent);
	font-weight: 600;
	letter-spacing: 0.06em;
}

.mv-pulse-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--color-accent);
	animation: mv-pulse 1.5s infinite;
}

@keyframes mv-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

/* About card */
.mv-about-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border-soft);
	border-radius: 14px;
	padding: 18px;
	box-shadow: var(--shadow-sm);
}

.mv-about-card p {
	font-size: 14px;
	color: var(--color-text-muted);
}

/* Player bar */
.mv-player {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 18px;
	padding: 18px 18px 16px;
	box-shadow: var(--shadow-md);
}

.mv-player__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 18px;
	gap: 12px;
}

.mv-player__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	font-weight: 800;
}

.mv-player__explicit {
	font-size: 9px;
	font-weight: 700;
	background: rgba(0,0,0,0.1);
	color: var(--color-text-muted);
	padding: 2px 5px;
	border-radius: 4px;
}

.mv-player__artist { font-size: 15px; color: var(--color-text-faint); margin-top: 3px; }

.mv-player__play {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.4), 0 3px 12px rgba(0,0,0,0.15);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
	transition: transform 0.15s;
}

.mv-player__play[aria-pressed="true"] { transform: scale(0.93); }

.mv-player__bar {
	height: 5px;
	border-radius: 10px;
	background: rgba(0,0,0,0.1);
	position: relative;
	margin-bottom: 10px;
	cursor: pointer;
}

.mv-player__progress {
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 0%;
	border-radius: 10px;
	background: linear-gradient(90deg, var(--color-accent), #e08a7d);
}

.mv-player__handle {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(-50%, -50%);
	width: 13px; height: 13px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 6px rgba(var(--color-accent-rgb), 0.6);
}

.mv-player__times {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--color-text-faint);
	font-weight: 500;
}

/* Tags */
.mv-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.mv-tag {
	font-size: 12px;
	font-weight: 600;
	color: var(--color-text-muted);
	background: rgba(0,0,0,0.03);
	border: 1px solid var(--color-border-soft);
	border-radius: 20px;
	padding: 6px 14px;
	letter-spacing: 0.04em;
}

.mv-tag--accent {
	color: var(--color-accent);
	background: var(--color-accent-soft);
	border-color: rgba(var(--color-accent-rgb), 0.25);
}

/* Related carousels */
.mv-carousel {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: none;
}
.mv-carousel::-webkit-scrollbar { display: none; }

.mv-carousel-card { flex-shrink: 0; width: 148px; }

.mv-carousel-card__art {
	width: 148px; height: 148px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	margin-bottom: 8px;
	border: 1px solid var(--color-border-soft);
	box-shadow: var(--shadow-sm);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.mv-carousel-card__art img { width: 100%; height: 100%; object-fit: cover; }

.mv-carousel-card__title {
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mv-carousel-card__sub {
	font-size: 11px;
	color: var(--color-text-faint);
	margin-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mv-playlist-card__art {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 12px;
	color: #fff;
}

.mv-playlist-card__eyebrow {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,0.8);
	letter-spacing: 0.05em;
}

.mv-playlist-card__name {
	font-size: 24px;
	font-weight: 900;
	line-height: 1.05;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.mv-comments-count { font-size: 12px; color: var(--color-text-faint); margin-bottom: 18px; }

.mv-comment-form {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
	align-items: flex-start;
}

.mv-comment-form__avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--color-text);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.mv-comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	font-size: 13px;
	color: var(--color-text);
	resize: vertical;
	min-height: 72px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.mv-comment-form__submit {
	margin-top: 8px;
	padding: 8px 20px;
	border-radius: 8px;
	background: var(--color-accent);
	border: none;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(var(--color-accent-rgb), 0.3);
}

.mv-comment {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

.mv-comment__avatar {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(0,0,0,0.07);
	flex-shrink: 0;
	overflow: hidden;
}

.mv-comment__avatar img { width: 100%; height: 100%; object-fit: cover; }

.mv-comment__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
	flex-wrap: wrap;
}

.mv-comment__name { font-size: 13px; font-weight: 700; }

.mv-comment__badge {
	font-size: 10px;
	background: var(--color-accent);
	color: #fff;
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 600;
}

.mv-comment__time { font-size: 11px; color: var(--color-text-faint); margin-left: auto; }

.mv-comment__text { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }

.mv-comment__actions { display: flex; gap: 16px; margin-top: 8px; }

.mv-comment__actions button {
	display: flex;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	font-size: 12px;
	color: var(--color-text-faint);
	padding: 0;
}

.mv-comment__actions a {
	font-size: 12px;
	color: var(--color-text-faint);
	text-decoration: none;
}

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

/* ==========================================================================
   Generic content (archives, search, 404, pages)
   ========================================================================== */

.mv-page-header {
	padding: 28px var(--gutter) 0;
}

.mv-post-list-item {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border-soft);
}

.mv-post-list-item__thumb {
	width: 96px; height: 96px;
	border-radius: 12px;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.mv-post-list-item__thumb img { width: 100%; height: 100%; object-fit: cover; }

.mv-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 28px var(--gutter);
	flex-wrap: wrap;
}

.mv-pagination a, .mv-pagination span {
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
}

.mv-pagination .current {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
}

.mv-404 {
	padding: 60px var(--gutter);
	text-align: center;
}

.mv-404__code {
	font-size: 72px;
	font-weight: 900;
	color: var(--color-accent);
	line-height: 1;
}
