/* ===================================================================
   MixHouse — Main Stylesheet
   Aesthetic: dark editorial music library, warm gold accent,
   refined serif display + clean sans body, no images/emojis.
   =================================================================== */

:root {
	--mh-bg:           #0a0908;
	--mh-bg-2:         #121110;
	--mh-bg-3:         #1a1816;
	--mh-line:         rgba(212, 175, 113, 0.14);
	--mh-line-strong:  rgba(212, 175, 113, 0.32);
	--mh-text:         #f4ede0;
	--mh-text-dim:     #a39a89;
	--mh-text-dimmer:  #6b6457;
	--mh-gold:         #d4af71;
	--mh-gold-bright:  #e8c890;
	--mh-gold-deep:    #9c7c45;
	--mh-red:          #c9412a;

	--mh-serif:  'Cormorant Garamond', 'Amiri', serif;
	--mh-sans:   'Inter', system-ui, sans-serif;
	--mh-arabic: 'Cairo', system-ui, sans-serif;

	--mh-radius:    4px;
	--mh-radius-lg: 12px;
	--mh-shadow:    0 30px 60px -20px rgba(0,0,0,0.6);
	--mh-ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.mixhouse {
	background: var(--mh-bg);
	color: var(--mh-text);
	font-family: var(--mh-sans);
	font-weight: 300;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}
body.mixhouse.lang-ar { font-family: var(--mh-arabic); }
body.mixhouse.lang-ar { direction: rtl; }
body.mixhouse.lang-en { direction: ltr; }

/* Ambient grain overlay */
body.mixhouse::before {
	content: '';
	position: fixed; inset: 0;
	background-image:
		radial-gradient(at 20% 10%, rgba(212,175,113,0.06), transparent 50%),
		radial-gradient(at 80% 90%, rgba(212,175,113,0.04), transparent 50%);
	pointer-events: none;
	z-index: 0;
}
body.mixhouse::after {
	content: '';
	position: fixed; inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
	opacity: 0.04;
	pointer-events: none;
	z-index: 1;
	mix-blend-mode: overlay;
}

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

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--mh-gold); color: var(--mh-bg); }

/* ---------- typography ---------- */
.mh-display {
	font-family: var(--mh-serif);
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.05;
}
.lang-ar .mh-display { font-family: var(--mh-arabic); font-weight: 700; }

.mh-eyebrow {
	font-family: var(--mh-sans);
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--mh-gold);
	font-weight: 500;
}
.lang-ar .mh-eyebrow { letter-spacing: 0.08em; font-family: var(--mh-arabic); }

/* ---------- layout container ---------- */
.mh-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
	position: relative;
	z-index: 2;
}
@media (max-width: 720px) {
	.mh-container { padding: 0 20px; }
}

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.mh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 9, 8, 0.78);
	backdrop-filter: blur(20px) saturate(1.2);
	-webkit-backdrop-filter: blur(20px) saturate(1.2);
	border-bottom: 1px solid var(--mh-line);
}
.mh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}
.mh-logo {
	font-family: var(--mh-serif);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--mh-text);
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
}
.lang-ar .mh-logo { font-family: var(--mh-serif); font-weight: 600; font-size: 26px; }
.mh-logo__dot {
	width: 6px; height: 6px;
	background: var(--mh-gold);
	border-radius: 50%;
	display: inline-block;
}

.mh-nav { display: flex; gap: 4px; align-items: center; }
.mh-nav a {
	padding: 10px 16px;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mh-text-dim);
	transition: color .25s var(--mh-ease);
	position: relative;
}
.lang-ar .mh-nav a {
	text-transform: none;
	font-size: 15px;
	letter-spacing: 0;
}
.mh-nav a:hover, .mh-nav a.active { color: var(--mh-text); }
.mh-nav a.active::after {
	content: '';
	position: absolute;
	left: 16px; right: 16px;
	bottom: 4px;
	height: 1px;
	background: var(--mh-gold);
}

.mh-utilities { display: flex; gap: 12px; align-items: center; }
.mh-lang-toggle {
	background: transparent;
	border: 1px solid var(--mh-line);
	color: var(--mh-text-dim);
	font-family: var(--mh-sans);
	font-size: 12px;
	letter-spacing: 0.12em;
	padding: 8px 14px;
	border-radius: var(--mh-radius);
	cursor: pointer;
	transition: all .25s var(--mh-ease);
}
.mh-lang-toggle:hover {
	border-color: var(--mh-gold);
	color: var(--mh-gold);
}

.mh-credits-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--mh-line-strong);
	border-radius: 100px;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: var(--mh-gold);
	font-weight: 500;
}
.mh-credits-badge__dot {
	width: 6px; height: 6px;
	background: var(--mh-gold);
	border-radius: 50%;
	box-shadow: 0 0 12px var(--mh-gold);
}

/* Mobile menu toggle */
.mh-menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--mh-line);
	color: var(--mh-text);
	padding: 8px 12px;
	border-radius: var(--mh-radius);
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
}
@media (max-width: 900px) {
	.mh-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--mh-bg-2); border-top: 1px solid var(--mh-line); padding: 12px; gap: 0; }
	.mh-nav.is-open { display: flex; }
	.mh-nav a { padding: 14px 18px; border-bottom: 1px solid var(--mh-line); }
	.mh-menu-toggle { display: inline-block; }
}

/* ===================================================================
   HERO
   =================================================================== */
.mh-hero {
	position: relative;
	padding: 100px 0 80px;
	overflow: hidden;
}
.mh-hero__grid {
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	gap: 80px;
	align-items: end;
}
@media (max-width: 1000px) {
	.mh-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.mh-hero__title {
	font-size: clamp(48px, 7vw, 110px);
	margin: 24px 0 28px;
	color: var(--mh-text);
}
.mh-hero__title em {
	font-style: italic;
	color: var(--mh-gold);
	font-weight: 400;
}
.mh-hero__sub {
	font-size: 18px;
	color: var(--mh-text-dim);
	max-width: 520px;
	line-height: 1.7;
	margin-bottom: 36px;
}
.lang-ar .mh-hero__sub { font-size: 17px; }

.mh-hero__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

/* Hero — latest release card on the right */
.mh-hero__release {
	position: relative;
	padding: 36px;
	border: 1px solid var(--mh-line);
	border-radius: var(--mh-radius-lg);
	background: linear-gradient(160deg, var(--mh-bg-2) 0%, var(--mh-bg) 100%);
	box-shadow: var(--mh-shadow);
}
.mh-hero__release::before {
	content: '';
	position: absolute;
	top: -1px; left: -1px; right: -1px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--mh-gold), transparent);
	border-radius: var(--mh-radius-lg) var(--mh-radius-lg) 0 0;
}
.mh-hero__release-eyebrow {
	color: var(--mh-gold);
	font-size: 11px;
	letter-spacing: 0.3em;
	margin-bottom: 18px;
	font-weight: 500;
}
.mh-hero__release-title {
	font-family: var(--mh-serif);
	font-size: 36px;
	font-weight: 500;
	line-height: 1.15;
	margin: 8px 0 14px;
}
.lang-ar .mh-hero__release-title { font-family: var(--mh-arabic); font-weight: 700; }
.mh-hero__release-artist {
	color: var(--mh-text-dim);
	font-size: 14px;
	margin-bottom: 26px;
}
.mh-hero__release-meta {
	display: flex;
	gap: 20px;
	padding: 16px 0;
	border-top: 1px solid var(--mh-line);
	border-bottom: 1px solid var(--mh-line);
	margin-bottom: 24px;
}
.mh-meta-cell { display: flex; flex-direction: column; gap: 4px; }
.mh-meta-cell__label {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mh-text-dimmer);
}
.lang-ar .mh-meta-cell__label { text-transform: none; letter-spacing: 0; font-size: 12px; }
.mh-meta-cell__value {
	font-family: var(--mh-serif);
	font-size: 22px;
	color: var(--mh-text);
}
.lang-ar .mh-meta-cell__value { font-family: var(--mh-arabic); font-size: 18px; }

/* ---------- buttons ---------- */
.mh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	font-family: var(--mh-sans);
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: var(--mh-radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .3s var(--mh-ease);
	background: transparent;
	color: var(--mh-text);
}
.lang-ar .mh-btn { text-transform: none; letter-spacing: 0; font-size: 15px; }

.mh-btn--gold {
	background: var(--mh-gold);
	color: var(--mh-bg);
	font-weight: 600;
}
.mh-btn--gold:hover {
	background: var(--mh-gold-bright);
	transform: translateY(-1px);
	box-shadow: 0 12px 30px -10px rgba(212,175,113,0.5);
}
.mh-btn--ghost {
	border-color: var(--mh-line-strong);
	color: var(--mh-text);
}
.mh-btn--ghost:hover {
	border-color: var(--mh-gold);
	color: var(--mh-gold);
}
.mh-btn--small { padding: 10px 18px; font-size: 11px; }
.mh-btn--full { width: 100%; }

/* ===================================================================
   SECTION HEADINGS — every section gets a refined slow reveal
   =================================================================== */
.mh-section {
	padding: 100px 0;
	position: relative;
}
@media (max-width: 720px) { .mh-section { padding: 70px 0; } }

.mh-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}
.mh-section__title {
	font-size: clamp(36px, 5vw, 64px);
	margin: 12px 0 0;
}
.mh-section__title em { font-style: italic; color: var(--mh-gold); font-weight: 400; }
.mh-section__lede {
	max-width: 380px;
	color: var(--mh-text-dim);
	font-size: 15px;
	line-height: 1.7;
}

/* ===================================================================
   LATEST RELEASES — clean list/grid
   =================================================================== */
.mh-releases {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 900px) { .mh-releases { grid-template-columns: 1fr; } }

.mh-track {
	position: relative;
	padding: 28px;
	border: 1px solid var(--mh-line);
	border-radius: var(--mh-radius-lg);
	background: var(--mh-bg-2);
	transition: all .4s var(--mh-ease);
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.mh-track:hover {
	border-color: var(--mh-line-strong);
	transform: translateY(-4px);
	background: var(--mh-bg-3);
}
.mh-track__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--mh-text-dimmer);
	font-size: 11px;
	letter-spacing: 0.2em;
}
.mh-track__num {
	font-family: var(--mh-serif);
	font-size: 28px;
	color: var(--mh-gold);
	font-style: italic;
}
.mh-track__title {
	font-family: var(--mh-serif);
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}
.lang-ar .mh-track__title { font-family: var(--mh-arabic); font-weight: 700; font-size: 22px; }
.mh-track__artist {
	color: var(--mh-text-dim);
	font-size: 13px;
}
.mh-track__meta {
	display: flex;
	gap: 18px;
	padding: 14px 0;
	border-top: 1px solid var(--mh-line);
	margin-top: auto;
	font-size: 11px;
	color: var(--mh-text-dimmer);
	letter-spacing: 0.12em;
}
.mh-track__meta span strong {
	color: var(--mh-text);
	font-weight: 500;
	margin-inline-end: 6px;
}
.mh-track__actions {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}
.mh-track__play {
	width: 42px; height: 42px;
	border-radius: 50%;
	background: var(--mh-gold);
	color: var(--mh-bg);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .25s var(--mh-ease);
	flex-shrink: 0;
}
.mh-track__play:hover { background: var(--mh-gold-bright); transform: scale(1.05); }
.mh-track__play svg { width: 14px; height: 14px; fill: currentColor; }

/* ===================================================================
   3D CAROUSEL — Wedding section + Mix Studio teaser
   =================================================================== */
.mh-3d {
	perspective: 1600px;
	padding: 40px 0;
}
.mh-3d__stage {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	transform-style: preserve-3d;
}
@media (max-width: 1000px) { .mh-3d__stage { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .mh-3d__stage { grid-template-columns: 1fr; } }

.mh-3d__card {
	position: relative;
	padding: 32px 26px;
	border: 1px solid var(--mh-line);
	border-radius: var(--mh-radius-lg);
	background: linear-gradient(160deg, var(--mh-bg-3) 0%, var(--mh-bg-2) 100%);
	min-height: 280px;
	display: flex;
	flex-direction: column;
	transform-style: preserve-3d;
	transition: transform .6s var(--mh-ease), border-color .4s var(--mh-ease), box-shadow .6s var(--mh-ease);
	cursor: pointer;
	overflow: hidden;
}
.mh-3d__card:nth-child(1) { transform: rotateY(8deg) translateZ(20px); }
.mh-3d__card:nth-child(2) { transform: rotateY(3deg) translateZ(10px); }
.mh-3d__card:nth-child(3) { transform: rotateY(-3deg) translateZ(10px); }
.mh-3d__card:nth-child(4) { transform: rotateY(-8deg) translateZ(20px); }

.mh-3d__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 0%, rgba(212,175,113,0.08), transparent 50%);
	pointer-events: none;
}
.mh-3d__card::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--mh-gold-deep), transparent);
}

.mh-3d__card:hover {
	transform: rotateY(0) translateZ(40px);
	border-color: var(--mh-line-strong);
	box-shadow: 0 40px 80px -30px rgba(212,175,113,0.25);
}

.mh-3d__category {
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--mh-gold);
	margin-bottom: 20px;
}
.lang-ar .mh-3d__category { text-transform: none; letter-spacing: 0.08em; font-size: 13px; }
.mh-3d__title {
	font-family: var(--mh-serif);
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 16px;
	line-height: 1.2;
}
.lang-ar .mh-3d__title { font-family: var(--mh-arabic); font-weight: 700; font-size: 19px; }
.mh-3d__list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;
}
.mh-3d__list li {
	font-size: 13px;
	color: var(--mh-text-dim);
	padding-bottom: 8px;
	border-bottom: 1px solid var(--mh-line);
	display: flex;
	justify-content: space-between;
	gap: 12px;
}
.mh-3d__list li:last-child { border-bottom: none; }
.mh-3d__list li .num {
	color: var(--mh-gold-deep);
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: 14px;
	flex-shrink: 0;
}
.mh-3d__cta {
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--mh-gold);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
}

/* ===================================================================
   MIX STUDIO — premium "studio console" aesthetic
   =================================================================== */
.mh-studio {
	position: relative;
	padding: 110px 0;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(212,175,113,0.08), transparent 60%),
		linear-gradient(180deg, var(--mh-bg) 0%, #0d0c0a 100%);
	border-top: 1px solid var(--mh-line);
	border-bottom: 1px solid var(--mh-line);
	overflow: hidden;
}
.mh-studio::before {
	content: '';
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 80%; height: 1px;
	background: linear-gradient(90deg, transparent, var(--mh-gold), transparent);
}
.mh-studio__label {
	color: var(--mh-gold);
	font-size: 11px;
	letter-spacing: 0.4em;
	text-align: center;
	margin-bottom: 16px;
}
.lang-ar .mh-studio__label { letter-spacing: 0.12em; font-size: 14px; }
.mh-studio__title {
	font-size: clamp(48px, 7vw, 96px);
	text-align: center;
	margin: 0 0 12px;
	font-family: var(--mh-serif);
	font-weight: 500;
}
.lang-ar .mh-studio__title { font-family: var(--mh-arabic); font-weight: 800; }
.mh-studio__title em { color: var(--mh-gold); font-style: italic; font-weight: 400; }
.mh-studio__sub {
	text-align: center;
	color: var(--mh-text-dim);
	font-size: 16px;
	max-width: 560px;
	margin: 0 auto 70px;
	line-height: 1.7;
}

/* The "console" — a wide horizontal panel with mix entries */
.mh-console {
	position: relative;
	padding: 40px;
	border: 1px solid var(--mh-line-strong);
	border-radius: var(--mh-radius-lg);
	background:
		linear-gradient(180deg, rgba(20,18,16,0.95) 0%, rgba(10,9,8,0.95) 100%);
	box-shadow:
		inset 0 1px 0 rgba(212,175,113,0.1),
		0 50px 100px -40px rgba(0,0,0,0.8);
}
.mh-console__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--mh-line);
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.mh-console__leds {
	display: flex;
	gap: 8px;
}
.mh-console__led {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--mh-gold);
	box-shadow: 0 0 10px var(--mh-gold);
	animation: mh-pulse 2.4s var(--mh-ease) infinite;
}
.mh-console__led:nth-child(2) { animation-delay: 0.8s; background: var(--mh-gold-bright); box-shadow: 0 0 10px var(--mh-gold-bright); }
.mh-console__led:nth-child(3) { animation-delay: 1.6s; background: var(--mh-gold-deep); box-shadow: 0 0 6px var(--mh-gold-deep); }
@keyframes mh-pulse {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 1; }
}
.mh-console__status {
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--mh-text-dim);
	text-transform: uppercase;
}
.lang-ar .mh-console__status { text-transform: none; letter-spacing: 0; font-size: 13px; }

.mh-mix {
	display: grid;
	grid-template-columns: 60px 1fr auto auto 80px;
	gap: 24px;
	align-items: center;
	padding: 20px 12px;
	border-bottom: 1px solid var(--mh-line);
	transition: all .25s var(--mh-ease);
}
.mh-mix:hover { background: rgba(212,175,113,0.04); padding-inline-start: 20px; }
.mh-mix:last-child { border-bottom: none; }

.mh-mix__index {
	font-family: var(--mh-serif);
	font-style: italic;
	color: var(--mh-gold);
	font-size: 26px;
}
.mh-mix__info { display: flex; flex-direction: column; gap: 6px; }
.mh-mix__title {
	font-family: var(--mh-serif);
	font-size: 22px;
	margin: 0;
	font-weight: 500;
}
.lang-ar .mh-mix__title { font-family: var(--mh-arabic); font-weight: 700; font-size: 19px; }
.mh-mix__meta {
	font-size: 12px;
	color: var(--mh-text-dim);
	letter-spacing: 0.1em;
}

/* Waveform — pure CSS bars */
.mh-wave {
	display: flex;
	align-items: center;
	gap: 2px;
	height: 28px;
}
.mh-wave span {
	width: 2px;
	background: var(--mh-gold-deep);
	border-radius: 1px;
	opacity: 0.6;
	transition: opacity .3s;
}
.mh-mix:hover .mh-wave span { opacity: 1; background: var(--mh-gold); animation: mh-wave 0.8s ease-in-out infinite alternate; }
@keyframes mh-wave {
	from { transform: scaleY(0.4); }
	to   { transform: scaleY(1.1); }
}

.mh-mix__duration {
	font-family: var(--mh-serif);
	font-style: italic;
	color: var(--mh-text-dim);
	font-size: 18px;
}

@media (max-width: 800px) {
	.mh-mix { grid-template-columns: 40px 1fr auto; gap: 14px; }
	.mh-wave, .mh-mix__duration { display: none; }
}

/* ===================================================================
   EVENTS — refined list with date columns
   =================================================================== */
.mh-events { display: flex; flex-direction: column; }
.mh-event {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 32px;
	align-items: center;
	padding: 28px 0;
	border-bottom: 1px solid var(--mh-line);
	transition: all .3s var(--mh-ease);
}
.mh-event:hover {
	border-bottom-color: var(--mh-gold);
	padding-inline-start: 12px;
}
.mh-event__date {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.mh-event__day {
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: 56px;
	color: var(--mh-gold);
	line-height: 1;
}
.mh-event__month {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--mh-text-dim);
}
.lang-ar .mh-event__month { text-transform: none; letter-spacing: 0; font-size: 14px; }

.mh-event__title {
	font-family: var(--mh-serif);
	font-size: 28px;
	font-weight: 500;
	margin: 0 0 6px;
}
.lang-ar .mh-event__title { font-family: var(--mh-arabic); font-weight: 700; font-size: 22px; }
.mh-event__details {
	color: var(--mh-text-dim);
	font-size: 13px;
	letter-spacing: 0.05em;
}

@media (max-width: 700px) {
	.mh-event { grid-template-columns: 70px 1fr; gap: 16px; }
	.mh-event__day { font-size: 36px; }
	.mh-event > .mh-btn { grid-column: 1 / -1; }
}

/* ===================================================================
   PRICING
   =================================================================== */
.mh-pricing {
	padding: 100px 0 120px;
}
.mh-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 60px;
}
@media (max-width: 900px) { .mh-pricing__grid { grid-template-columns: 1fr; } }

.mh-plan {
	position: relative;
	padding: 44px 36px;
	border: 1px solid var(--mh-line);
	border-radius: var(--mh-radius-lg);
	background: var(--mh-bg-2);
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 360px;
	justify-content: space-between;
	transition: all .4s var(--mh-ease);
}
.mh-plan:hover { transform: translateY(-6px); border-color: var(--mh-line-strong); }

.mh-plan--featured {
	border-color: var(--mh-gold);
	background: linear-gradient(180deg, rgba(212,175,113,0.06), var(--mh-bg-2));
}
.mh-plan--featured::before {
	content: attr(data-badge);
	position: absolute;
	top: -12px;
	inset-inline-start: 50%;
	transform: translateX(-50%);
	background: var(--mh-gold);
	color: var(--mh-bg);
	padding: 5px 16px;
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	white-space: nowrap;
}
.lang-ar .mh-plan--featured::before { text-transform: none; letter-spacing: 0.05em; font-size: 12px; }

.mh-plan__name {
	font-family: var(--mh-serif);
	font-size: 30px;
	font-weight: 500;
	margin: 0;
}
.lang-ar .mh-plan__name { font-family: var(--mh-arabic); font-weight: 800; font-size: 26px; }
.mh-plan__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding-block: 12px;
	border-block: 1px solid var(--mh-line);
}
.mh-plan__price-amount {
	font-family: var(--mh-serif);
	font-size: 64px;
	font-weight: 500;
	color: var(--mh-text);
	line-height: 1;
}
.mh-plan__price-cur {
	color: var(--mh-gold);
	font-size: 16px;
	font-weight: 600;
}
.mh-plan__credits {
	font-size: 13px;
	color: var(--mh-text-dim);
	letter-spacing: 0.05em;
}
.mh-plan__credits strong { color: var(--mh-gold); font-weight: 600; }
.mh-plan__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-grow: 1;
}
.mh-plan__features li {
	font-size: 14px;
	color: var(--mh-text-dim);
	padding-inline-start: 24px;
	position: relative;
	line-height: 1.5;
}
.mh-plan__features li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 8px;
	width: 12px; height: 1px;
	background: var(--mh-gold);
}

/* Insufficient-credits warning bar */
.mh-need-credits {
	margin-top: 60px;
	padding: 24px 32px;
	border: 1px solid var(--mh-gold);
	background: rgba(212,175,113,0.06);
	border-radius: var(--mh-radius-lg);
	text-align: center;
}
.mh-need-credits strong { color: var(--mh-gold); }

/* ===================================================================
   AUTH / WELCOME
   =================================================================== */
.mh-welcome {
	padding: 18px 0;
	background: linear-gradient(90deg, rgba(212,175,113,0.08), transparent);
	border-bottom: 1px solid var(--mh-line);
}
.mh-welcome__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.mh-welcome__text {
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: 18px;
	color: var(--mh-text);
}
.lang-ar .mh-welcome__text { font-family: var(--mh-arabic); font-style: normal; font-weight: 600; }
.mh-welcome__text em { color: var(--mh-gold); }

/* ===================================================================
   FOOTER
   =================================================================== */
.mh-footer {
	border-top: 1px solid var(--mh-line);
	padding: 60px 0 40px;
	margin-top: 80px;
	background: #060504;
}
.mh-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 50px;
}
@media (max-width: 800px) { .mh-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .mh-footer__grid { grid-template-columns: 1fr; } }
.mh-footer__title {
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--mh-gold);
	margin: 0 0 18px;
	font-weight: 600;
}
.lang-ar .mh-footer__title { text-transform: none; letter-spacing: 0.05em; font-size: 14px; }
.mh-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mh-footer a { color: var(--mh-text-dim); transition: color .25s var(--mh-ease); font-size: 14px; }
.mh-footer a:hover { color: var(--mh-text); }
.mh-footer__bar {
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
	border-top: 1px solid var(--mh-line);
	color: var(--mh-text-dimmer);
	font-size: 12px;
	letter-spacing: 0.08em;
}

/* ===================================================================
   ANIMATIONS / REVEAL
   =================================================================== */
.mh-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s var(--mh-ease), transform .8s var(--mh-ease);
}
.mh-reveal.is-in {
	opacity: 1;
	transform: translateY(0);
}

/* Section transition flair */
.mh-section + .mh-section { border-top: 1px solid var(--mh-line); }

/* Generic content for single posts / pages */
.mh-prose {
	max-width: 720px;
	margin: 0 auto;
	padding: 80px 24px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--mh-text);
}
.mh-prose h1, .mh-prose h2, .mh-prose h3 { font-family: var(--mh-serif); font-weight: 500; }
.lang-ar .mh-prose h1, .lang-ar .mh-prose h2, .lang-ar .mh-prose h3 { font-family: var(--mh-arabic); font-weight: 700; }
.mh-prose a { color: var(--mh-gold); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- HERO solo (no card on the right) ---------- */
.mh-hero__solo {
	max-width: 920px;
	text-align: start;
}
.mh-hero__title-solo {
	font-size: clamp(56px, 8vw, 128px);
	margin: 24px 0 0;
	color: var(--mh-text);
	line-height: 1.02;
}
.mh-hero__title-solo em {
	font-style: italic;
	color: var(--mh-gold);
	font-weight: 400;
}

/* ===================================================================
   FLOATING AUDIO PLAYER
   Slides up from the bottom whenever a preview is playing.
   Premium glass pill on desktop, full-width bar on mobile.
   =================================================================== */
.mh-player {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(140%);
	z-index: 80;
	width: min(560px, calc(100vw - 32px));
	padding: 14px 18px;
	border-radius: 100px;
	background: linear-gradient(180deg, rgba(26,24,22,0.92) 0%, rgba(15,14,12,0.95) 100%);
	border: 1px solid var(--mh-line-strong);
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	box-shadow:
		0 30px 80px -20px rgba(0,0,0,0.7),
		0 0 0 1px rgba(212,175,113,0.04),
		inset 0 1px 0 rgba(212,175,113,0.12);
	display: grid;
	grid-template-columns: 44px 1fr auto auto;
	align-items: center;
	gap: 14px;
	opacity: 0;
	pointer-events: none;
	transition: transform .55s var(--mh-ease), opacity .35s var(--mh-ease);
}
.mh-player.is-visible {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
	pointer-events: auto;
}

/* Subtle gold glow ring while playing */
.mh-player::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(90deg, transparent 0%, rgba(212,175,113,0.35) 50%, transparent 100%);
	opacity: 0;
	transition: opacity .6s var(--mh-ease);
	z-index: -1;
	filter: blur(8px);
}
.mh-player.is-playing::before { opacity: 0.5; }

/* Play / Pause button */
.mh-player__btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--mh-gold);
	color: var(--mh-bg);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .25s var(--mh-ease);
	flex-shrink: 0;
	box-shadow: 0 6px 20px -6px rgba(212,175,113,0.7);
}
.mh-player__btn:hover {
	background: var(--mh-gold-bright);
	transform: scale(1.06);
}
.mh-player__btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
.mh-player__icon-pause { display: none; }
.mh-player.is-playing .mh-player__icon-play  { display: none; }
.mh-player.is-playing .mh-player__icon-pause { display: block; }

/* Center — waveform + progress */
.mh-player__center {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

/* Animated bars (purely decorative) */
.mh-player__wave {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 2px;
	height: 22px;
	overflow: hidden;
}
.mh-player__wave span {
	width: 2.5px;
	background: var(--mh-gold-deep);
	border-radius: 2px;
	opacity: 0.55;
	transform-origin: center;
	transition: opacity .3s;
}
.mh-player.is-playing .mh-player__wave span {
	background: var(--mh-gold);
	opacity: 0.9;
	animation: mh-player-wave 1.1s ease-in-out infinite alternate;
}
.mh-player__wave span:nth-child(1)  { height: 30%;  animation-delay: 0.00s; }
.mh-player__wave span:nth-child(2)  { height: 55%;  animation-delay: 0.05s; }
.mh-player__wave span:nth-child(3)  { height: 70%;  animation-delay: 0.10s; }
.mh-player__wave span:nth-child(4)  { height: 45%;  animation-delay: 0.15s; }
.mh-player__wave span:nth-child(5)  { height: 85%;  animation-delay: 0.20s; }
.mh-player__wave span:nth-child(6)  { height: 60%;  animation-delay: 0.25s; }
.mh-player__wave span:nth-child(7)  { height: 95%;  animation-delay: 0.30s; }
.mh-player__wave span:nth-child(8)  { height: 40%;  animation-delay: 0.35s; }
.mh-player__wave span:nth-child(9)  { height: 75%;  animation-delay: 0.40s; }
.mh-player__wave span:nth-child(10) { height: 55%;  animation-delay: 0.45s; }
.mh-player__wave span:nth-child(11) { height: 90%;  animation-delay: 0.50s; }
.mh-player__wave span:nth-child(12) { height: 35%;  animation-delay: 0.55s; }
.mh-player__wave span:nth-child(13) { height: 70%;  animation-delay: 0.60s; }
.mh-player__wave span:nth-child(14) { height: 50%;  animation-delay: 0.65s; }
.mh-player__wave span:nth-child(15) { height: 80%;  animation-delay: 0.70s; }
.mh-player__wave span:nth-child(16) { height: 45%;  animation-delay: 0.75s; }
.mh-player__wave span:nth-child(17) { height: 65%;  animation-delay: 0.80s; }
.mh-player__wave span:nth-child(18) { height: 30%;  animation-delay: 0.85s; }
.mh-player__wave span:nth-child(19) { height: 75%;  animation-delay: 0.90s; }
.mh-player__wave span:nth-child(20) { height: 50%;  animation-delay: 0.95s; }
.mh-player__wave span:nth-child(21) { height: 85%;  animation-delay: 1.00s; }
.mh-player__wave span:nth-child(22) { height: 40%;  animation-delay: 1.05s; }
.mh-player__wave span:nth-child(23) { height: 60%;  animation-delay: 1.10s; }
.mh-player__wave span:nth-child(24) { height: 35%;  animation-delay: 1.15s; }
@keyframes mh-player-wave {
	from { transform: scaleY(0.5); }
	to   { transform: scaleY(1.1); }
}

/* Progress bar */
.mh-player__progress {
	height: 3px;
	background: rgba(212,175,113,0.15);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.mh-player__progress-fill {
	position: absolute;
	inset: 0;
	width: 0%;
	background: linear-gradient(90deg, var(--mh-gold-deep), var(--mh-gold-bright));
	transition: width .12s linear;
}

/* Time */
.mh-player__time {
	font-family: var(--mh-serif);
	font-style: italic;
	color: var(--mh-gold);
	font-size: 17px;
	font-weight: 500;
	min-width: 32px;
	text-align: center;
	flex-shrink: 0;
}

/* Close */
.mh-player__close {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--mh-line);
	background: transparent;
	color: var(--mh-text-dim);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .25s var(--mh-ease);
	flex-shrink: 0;
	font-size: 16px;
	line-height: 1;
	padding: 0;
}
.mh-player__close:hover {
	border-color: var(--mh-gold);
	color: var(--mh-gold);
	transform: rotate(90deg);
}

/* Mobile — full-width pill at bottom */
@media (max-width: 600px) {
	.mh-player {
		bottom: 12px;
		width: calc(100vw - 24px);
		border-radius: 16px;
		padding: 12px 14px;
		grid-template-columns: 40px 1fr auto auto;
		gap: 10px;
	}
	.mh-player__btn { width: 40px; height: 40px; }
	.mh-player__wave { height: 18px; }
	.mh-player__wave span:nth-child(n+18) { display: none; }
	.mh-player__time { font-size: 15px; min-width: 26px; }
	.mh-player__close { width: 28px; height: 28px; }
}

/* When playing, the small button on track cards / hero glows softly */
.mh-track__play.is-playing,
[data-preview].is-playing {
	box-shadow: 0 0 0 4px rgba(212,175,113,0.25), 0 0 24px rgba(212,175,113,0.5);
}
.mh-single {
	padding: 80px 0;
}
.mh-single__head { margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--mh-line); }
.mh-single__title { font-size: clamp(40px, 6vw, 80px); margin: 12px 0; }

.mh-audio {
	background: var(--mh-bg-2);
	border: 1px solid var(--mh-line);
	border-radius: var(--mh-radius-lg);
	padding: 24px;
	margin: 30px 0;
}
.mh-audio audio { width: 100%; }

/* ===================================================================
   MODERN UPGRADES — Progress bar, animated borders,
   floating actions, refined hover states
   =================================================================== */

/* Global polish */
html { scroll-behavior: smooth; }
/* ---------- Reading progress bar ---------- */
.mh-progress {
	position: fixed;
	top: 0; left: 0;
	height: 2px;
	width: 0%;
	background: linear-gradient(90deg, var(--mh-gold-deep) 0%, var(--mh-gold-bright) 50%, var(--mh-gold-deep) 100%);
	background-size: 200% 100%;
	z-index: 60;
	transition: width .15s linear;
	box-shadow: 0 0 12px var(--mh-gold);
	animation: mh-progress-shine 3s linear infinite;
}
@keyframes mh-progress-shine {
	to { background-position: 200% 0; }
}

/* ---------- Header: subtle gold line that intensifies on scroll ---------- */
.mh-header {
	transition: background .35s var(--mh-ease), border-color .35s var(--mh-ease), box-shadow .35s var(--mh-ease);
}
.mh-header.is-scrolled {
	background: rgba(10, 9, 8, 0.92);
	border-bottom-color: var(--mh-line-strong);
	box-shadow: 0 1px 20px -8px rgba(212,175,113,0.25);
}


/* ---------- Hero: refined floating accent ---------- */
.mh-hero { position: relative; }
.mh-hero::after {
	content: '';
	position: absolute;
	top: 30%;
	inset-inline-end: -200px;
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(212,175,113,0.12) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
	animation: mh-hero-pulse 8s var(--mh-ease) infinite;
}
@keyframes mh-hero-pulse {
	0%, 100% { transform: scale(1) translateZ(0); opacity: 0.5; }
	50%      { transform: scale(1.15); opacity: 0.9; }
}
.mh-hero .mh-container { position: relative; z-index: 2; }

/* ---------- Section corner accents (animated) ---------- */
.mh-corner-frame {
	position: relative;
}
.mh-corner-frame::before,
.mh-corner-frame::after {
	content: '';
	position: absolute;
	width: 40px; height: 40px;
	border: 1px solid var(--mh-gold);
	opacity: 0.4;
	pointer-events: none;
	transition: all .8s var(--mh-ease);
}
.mh-corner-frame::before {
	top: 0; inset-inline-start: 0;
	border-right: none; border-bottom: none;
}
.mh-corner-frame::after {
	bottom: 0; inset-inline-end: 0;
	border-left: none; border-top: none;
}
.mh-corner-frame:hover::before,
.mh-corner-frame:hover::after {
	width: 60px; height: 60px;
	opacity: 0.8;
}

/* ---------- Buttons: magnetic + refined hover ---------- */
.mh-btn {
	position: relative;
	overflow: hidden;
	transition: transform .3s var(--mh-ease), background .3s var(--mh-ease), color .3s var(--mh-ease), border-color .3s var(--mh-ease), box-shadow .3s var(--mh-ease);
	will-change: transform;
}
.mh-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform .7s var(--mh-ease);
}
.mh-btn:hover::before { transform: translateX(100%); }

.mh-btn--gold:hover {
	box-shadow: 0 16px 40px -10px rgba(212,175,113,0.6), 0 0 0 1px rgba(232,200,144,0.4);
}
.mh-btn--ghost:hover {
	background: rgba(212,175,113,0.08);
	box-shadow: 0 12px 30px -10px rgba(212,175,113,0.3);
}

/* ---------- Track cards: gold glow on hover + subtle shimmer ---------- */
.mh-track {
	position: relative;
	overflow: hidden;
	transition: all .5s var(--mh-ease);
}
.mh-track::before {
	content: '';
	position: absolute;
	top: -2px; left: -2px; right: -2px; bottom: -2px;
	background: linear-gradient(135deg, transparent 30%, rgba(212,175,113,0.4) 50%, transparent 70%);
	background-size: 200% 200%;
	background-position: 0% 0%;
	border-radius: var(--mh-radius-lg);
	opacity: 0;
	z-index: -1;
	transition: opacity .5s var(--mh-ease), background-position 1.2s var(--mh-ease);
}
.mh-track:hover::before {
	opacity: 1;
	background-position: 100% 100%;
}
.mh-track:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 40px -10px rgba(212,175,113,0.2);
}

/* ---------- 3D cards: enhanced tilt aesthetic ---------- */
.mh-3d__card {
	will-change: transform;
}
.mh-3d__card::before {
	transition: opacity .6s var(--mh-ease), transform .6s var(--mh-ease);
}
.mh-3d__card:hover::before {
	opacity: 1.5;
	transform: scale(1.2);
}

/* Glint sweep across 3D cards on hover */
.mh-3d__card .mh-3d__sheen {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
	transform: translateX(-100%);
	transition: transform .9s var(--mh-ease);
	pointer-events: none;
	border-radius: inherit;
}
.mh-3d__card:hover .mh-3d__sheen {
	transform: translateX(100%);
}

/* ---------- Mix Studio Console: VU meters + LED panel ---------- */
.mh-console {
	position: relative;
}
.mh-console::before {
	content: '';
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 60%; height: 1px;
	background: linear-gradient(90deg, transparent, var(--mh-gold-bright), transparent);
	opacity: 0.6;
}

/* Add VU meter to console header */
.mh-vu {
	display: inline-flex;
	gap: 2px;
	align-items: end;
	height: 20px;
	margin-inline-start: 16px;
}
.mh-vu span {
	width: 3px;
	background: var(--mh-gold);
	border-radius: 1px;
	animation: mh-vu-bounce 0.8s ease-in-out infinite alternate;
}
.mh-vu span:nth-child(1) { height: 30%; animation-delay: 0.0s; }
.mh-vu span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.mh-vu span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.mh-vu span:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.mh-vu span:nth-child(5) { height: 45%; animation-delay: 0.4s; }
@keyframes mh-vu-bounce {
	from { transform: scaleY(0.4); }
	to   { transform: scaleY(1); }
}

/* Console scan-line effect */
.mh-console::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, transparent 49.5%, rgba(212,175,113,0.04) 50%, transparent 50.5%, transparent 100%);
	background-size: 100% 4px;
	pointer-events: none;
	border-radius: var(--mh-radius-lg);
	opacity: 0.5;
}

/* ---------- Floating action: scroll-to-top ---------- */
.mh-fab {
	position: fixed;
	bottom: 24px;
	inset-inline-end: 24px;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--mh-bg-2) 0%, var(--mh-bg-3) 100%);
	border: 1px solid var(--mh-line-strong);
	color: var(--mh-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 70;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	transition: all .4s var(--mh-ease);
	backdrop-filter: blur(10px);
}
.mh-fab.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.mh-fab:hover {
	background: var(--mh-gold);
	color: var(--mh-bg);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px -8px rgba(212,175,113,0.5);
}
.mh-fab svg { width: 16px; height: 16px; }

/* When floating player is visible, lift the fab so they don't collide */
body.mh-player-visible .mh-fab {
	bottom: 96px;
}

/* ---------- Floating WhatsApp button ---------- */
.mh-wa-fab {
	position: fixed;
	bottom: 24px;
	inset-inline-start: 24px;
	width: 52px; height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2bb148 0%, #21a039 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 70;
	box-shadow: 0 12px 30px -8px rgba(43,177,72,0.5);
	transition: all .35s var(--mh-ease);
	border: 1px solid rgba(255,255,255,0.15);
}
.mh-wa-fab::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: rgba(43,177,72,0.4);
	z-index: -1;
	animation: mh-wa-pulse 2.4s ease-in-out infinite;
}
@keyframes mh-wa-pulse {
	0%, 100% { transform: scale(1); opacity: 0.6; }
	50%      { transform: scale(1.4); opacity: 0; }
}
.mh-wa-fab:hover {
	transform: scale(1.1) translateY(-2px);
	box-shadow: 0 16px 40px -8px rgba(43,177,72,0.7);
}
.mh-wa-fab svg { width: 26px; height: 26px; fill: currentColor; }

body.mh-player-visible .mh-wa-fab {
	bottom: 96px;
}

/* Mobile: shrink the fabs slightly */
@media (max-width: 600px) {
	.mh-fab    { width: 42px; height: 42px; bottom: 16px; inset-inline-end: 16px; }
	.mh-wa-fab { width: 46px; height: 46px; bottom: 16px; inset-inline-start: 16px; }
	body.mh-player-visible .mh-fab,
	body.mh-player-visible .mh-wa-fab { bottom: 80px; }
}

/* ---------- Animated dividers between sections ---------- */
.mh-divider {
	width: 100%;
	height: 80px;
	position: relative;
	overflow: hidden;
}
.mh-divider::before {
	content: '';
	position: absolute;
	top: 50%; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--mh-line-strong) 20%, var(--mh-gold-deep) 50%, var(--mh-line-strong) 80%, transparent 100%);
}
.mh-divider::after {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 8px; height: 8px;
	background: var(--mh-gold);
	box-shadow: 0 0 16px var(--mh-gold);
	animation: mh-divider-pulse 3s ease-in-out infinite;
}
@keyframes mh-divider-pulse {
	0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) rotate(45deg) scale(1); }
	50%      { opacity: 1;   transform: translate(-50%, -50%) rotate(225deg) scale(1.3); }
}

/* ---------- Reveal animations: more elegant variants ---------- */
.mh-reveal { transition: opacity .9s var(--mh-ease), transform .9s var(--mh-ease); }
.mh-reveal-up   { opacity: 0; transform: translateY(40px); }
.mh-reveal-fade { opacity: 0; }
.mh-reveal-up.is-in,
.mh-reveal-fade.is-in,
.mh-reveal.is-in { opacity: 1; transform: translateY(0); }

/* Stagger child reveals */
.mh-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--mh-ease), transform .7s var(--mh-ease); }
.mh-stagger.is-in > *           { opacity: 1; transform: translateY(0); }
.mh-stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.mh-stagger.is-in > *:nth-child(2) { transition-delay: 0.15s; }
.mh-stagger.is-in > *:nth-child(3) { transition-delay: 0.25s; }
.mh-stagger.is-in > *:nth-child(4) { transition-delay: 0.35s; }
.mh-stagger.is-in > *:nth-child(5) { transition-delay: 0.45s; }
.mh-stagger.is-in > *:nth-child(6) { transition-delay: 0.55s; }

/* ---------- Logo: tiny pulse on the dot ---------- */
.mh-logo__dot {
	animation: mh-logo-pulse 2.4s ease-in-out infinite;
}
@keyframes mh-logo-pulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 8px var(--mh-gold); }
	50%      { transform: scale(1.4); box-shadow: 0 0 16px var(--mh-gold); }
}

/* ---------- Hero: refined gold ornament line ---------- */
.mh-hero__solo .mh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}
.mh-hero__solo .mh-eyebrow::before {
	content: '';
	width: 50px; height: 1px;
	background: var(--mh-gold);
	display: inline-block;
}

/* ---------- Selection on interactive elements ---------- */
.mh-btn, .mh-3d__card, .mh-track, .mh-mix, .mh-event, .mh-plan, a[href], button {
	cursor: pointer;
}

/* ---------- Mobile improvements ---------- */
@media (max-width: 600px) {
	.mh-section { padding: 60px 0; }
	.mh-hero { padding: 70px 0 50px; }
	.mh-hero__title-solo { font-size: clamp(42px, 11vw, 64px) !important; }
}

/* ===================================================================
   FINAL THEME FIXES — cleaner single pages and wedding list views
   =================================================================== */
.mh-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
	gap: 52px;
	align-items: start;
}

.mh-single-player {
	margin: 28px 0 34px;
}

.mh-single-player__button {
	width: 100%;
	min-height: 118px;
	padding: 24px 28px;
	border: 1px solid var(--mh-line-strong);
	border-radius: 28px;
	background:
		radial-gradient(circle at 12% 20%, rgba(212,175,113,0.16), transparent 34%),
		linear-gradient(135deg, rgba(26,23,19,0.96), rgba(12,11,10,0.98));
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 30px 80px -45px rgba(0,0,0,0.95);
	color: var(--mh-text);
	display: grid;
	grid-template-columns: 66px minmax(0, 1fr) minmax(180px, 0.85fr);
	align-items: center;
	gap: 22px;
	cursor: pointer;
	transition: transform .28s var(--mh-ease), border-color .28s var(--mh-ease), box-shadow .28s var(--mh-ease);
	text-align: inherit;
}

.mh-single-player__button:hover,
.mh-single-player__button.is-playing {
	transform: translateY(-3px);
	border-color: rgba(232,200,144,0.55);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 34px 90px -42px rgba(212,175,113,0.32);
}

.mh-single-player__icon {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-bright));
	color: var(--mh-bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 18px 42px -18px rgba(212,175,113,0.9);
}
.mh-single-player__icon svg { width: 28px; height: 28px; fill: currentColor; margin-inline-start: 2px; }

.mh-single-player__copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
.mh-single-player__label {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--mh-gold);
}
.lang-ar .mh-single-player__label { letter-spacing: .06em; text-transform: none; font-size: 13px; }
.mh-single-player__copy strong {
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 700;
	line-height: 1.25;
	white-space: normal;
}

.mh-single-player__wave {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	height: 46px;
	opacity: .82;
}
.mh-single-player__wave i {
	display: block;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--mh-gold-bright), var(--mh-gold-deep));
	height: 18px;
	box-shadow: 0 0 14px rgba(212,175,113,0.35);
	animation: mh-single-wave 1.15s ease-in-out infinite;
	animation-play-state: paused;
}
.mh-single-player__wave i:nth-child(2n) { height: 31px; animation-delay: .12s; }
.mh-single-player__wave i:nth-child(3n) { height: 42px; animation-delay: .24s; }
.mh-single-player__wave i:nth-child(4n) { height: 24px; animation-delay: .36s; }
.mh-single-player__button.is-playing .mh-single-player__wave i { animation-play-state: running; }
@keyframes mh-single-wave {
	0%,100% { transform: scaleY(.62); opacity: .55; }
	50% { transform: scaleY(1); opacity: 1; }
}

.mh-download-panel {
	padding: 30px;
	border: 1px solid var(--mh-line);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(20,18,16,.94), rgba(12,11,10,.96));
	position: sticky;
	top: 120px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 24px 70px -54px rgba(212,175,113,0.35);
}
.mh-download-panel__meta {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 22px;
}
.mh-download-panel__meta:empty { display: none; }
.mh-download-panel__meta div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid var(--mh-line);
}
.mh-download-panel__meta div:first-child { padding-top: 0; }
.mh-download-panel__meta span {
	color: var(--mh-text-dim);
	font-size: 13px;
}
.mh-download-panel__meta strong {
	font-family: var(--mh-serif);
	font-size: 20px;
	font-weight: 500;
	color: var(--mh-gold);
}
.mh-download-panel__meta small { font-size: 12px; font-family: var(--mh-arabic); }
.mh-download-panel__hint {
	margin: 14px 0 0;
	font-size: 12px;
	color: var(--mh-text-dim);
	text-align: center;
}

.mh-list-section-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	border-bottom: 1px solid var(--mh-line);
	padding-bottom: 18px;
	margin-bottom: 22px;
}
.mh-list-section-head h2 {
	font-family: var(--mh-serif);
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 500;
	margin: 0;
}
.lang-ar .mh-list-section-head h2 { font-family: var(--mh-arabic); font-weight: 800; }
.mh-list-section-head a {
	font-size: 12px;
	letter-spacing: .14em;
	color: var(--mh-gold);
	text-decoration: none;
	text-transform: uppercase;
}
.lang-ar .mh-list-section-head a { letter-spacing: 0; text-transform: none; }

.mh-track-list {
	border: 1px solid var(--mh-line);
	border-radius: 28px;
	background: rgba(16,14,12,.66);
	overflow: hidden;
	box-shadow: 0 30px 90px -70px rgba(0,0,0,.95);
}
.mh-track-row {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(180px, auto) auto;
	gap: 22px;
	align-items: center;
	padding: 18px 22px;
	border-bottom: 1px solid var(--mh-line);
	transition: background .25s var(--mh-ease), padding .25s var(--mh-ease);
}
.mh-track-row:last-child { border-bottom: none; }
.mh-track-row:hover {
	background: rgba(212,175,113,.055);
	padding-inline-start: 28px;
	padding-inline-end: 28px;
}
.mh-track-row__main {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	text-decoration: none;
	color: inherit;
	min-width: 0;
}
.mh-track-row__num {
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: 25px;
	color: var(--mh-gold);
	text-align: center;
}
.mh-track-row__info {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}
.mh-track-row__info strong {
	font-family: var(--mh-serif);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.lang-ar .mh-track-row__info strong { font-family: var(--mh-arabic); font-weight: 800; font-size: 20px; }
.mh-track-row__info small {
	color: var(--mh-text-dim);
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mh-track-row__meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	color: var(--mh-text-dim);
	font-size: 12px;
	white-space: nowrap;
}
.mh-track-row__meta span {
	padding-inline-start: 14px;
	border-inline-start: 1px solid var(--mh-line);
}
.mh-track-row__meta span:first-child { border-inline-start: 0; padding-inline-start: 0; }
.mh-track-row__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}
.mh-empty-state {
	border: 1px solid var(--mh-line);
	border-radius: 28px;
	padding: 46px;
	background: var(--mh-bg-2);
	text-align: center;
}
.mh-empty-state h2 { margin: 0; font-size: 28px; }

@media (max-width: 1000px) {
	.mh-single__layout { grid-template-columns: 1fr; gap: 28px; }
	.mh-download-panel { position: static; }
	.mh-single-player__button { grid-template-columns: 58px minmax(0, 1fr); }
	.mh-single-player__wave { display: none; }
	.mh-track-row { grid-template-columns: minmax(0, 1fr) auto; }
	.mh-track-row__meta { display: none; }
}
@media (max-width: 640px) {
	.mh-single-player__button { min-height: 96px; padding: 18px; border-radius: 22px; gap: 16px; }
	.mh-single-player__icon { width: 54px; height: 54px; }
	.mh-single-player__copy strong { font-size: 18px; }
	.mh-track-list { border-radius: 22px; }
	.mh-track-row { grid-template-columns: 1fr; align-items: start; padding: 18px; gap: 14px; }
	.mh-track-row:hover { padding-inline-start: 18px; padding-inline-end: 18px; }
	.mh-track-row__main { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
	.mh-track-row__info strong { white-space: normal; font-size: 18px; }
	.mh-track-row__actions { justify-content: flex-start; }
	.lang-ar .mh-track-row__actions { justify-content: flex-end; }
}

/* ===================================================================
   DJMOHND ADDITIONS — Mobile bottom nav + Finder + Top 100 + Polish
   =================================================================== */

/* ---------- MOBILE BOTTOM TAB BAR (app-like) ---------- */
.mh-tabbar {
	display: none; /* hidden on desktop */
	position: fixed;
	left: 0; right: 0;
	bottom: 0;
	z-index: 60;
	padding: 8px 8px calc(8px + env(safe-area-inset-bottom)) 8px;
	background: rgba(10, 9, 8, 0.92);
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	border-top: 1px solid var(--mh-line);
	box-shadow: 0 -18px 40px -12px rgba(0,0,0,0.55);
}
.mh-tabbar__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 8px 4px 6px;
	color: var(--mh-text-dim);
	font-family: var(--mh-arabic);
	text-decoration: none;
	border-radius: 14px;
	transition: color .2s var(--mh-ease), background .2s var(--mh-ease), transform .2s var(--mh-ease);
	-webkit-tap-highlight-color: transparent;
}
.mh-tabbar__item:active { transform: scale(0.96); }
.mh-tabbar__icon {
	width: 26px; height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.mh-tabbar__icon svg {
	width: 100%; height: 100%;
	display: block;
}
.mh-tabbar__label {
	font-size: 10.5px;
	letter-spacing: 0.02em;
	line-height: 1.1;
	font-weight: 600;
	text-align: center;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.lang-en .mh-tabbar__label {
	font-family: var(--mh-sans);
	font-size: 10px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.mh-tabbar__item.is-active {
	color: var(--mh-gold);
	background: rgba(212, 175, 113, 0.08);
}
.mh-tabbar__item.is-active .mh-tabbar__icon {
	filter: drop-shadow(0 0 10px rgba(212, 175, 113, 0.35));
}

/* Show tab bar on mobile + hide desktop hamburger nav drawer when tab bar is active */
@media (max-width: 900px) {
	.mh-tabbar { display: flex; }
	/* Push body content above the tab bar so nothing hides behind it */
	body.mixhouse { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
	/* Lift the floating audio player above the tab bar */
	.mh-player {
		bottom: calc(86px + env(safe-area-inset-bottom)) !important;
	}
	/* Hide the old hamburger button — bottom nav replaces it on mobile */
	.mh-menu-toggle { display: none !important; }
	/* Trim header utilities for a cleaner app-like top bar */
	.mh-header__inner { padding: 14px 0; }
	.mh-utilities { gap: 8px; }
}
@media (max-width: 480px) {
	.mh-tabbar__label { font-size: 10px; }
	.lang-en .mh-tabbar__label { font-size: 9.5px; }
	.mh-tabbar__icon { width: 23px; height: 23px; }
}

/* ---------- FINDER (search + filter on Wedding archive) ---------- */
.mh-finder {
	margin: -20px 0 60px;
	padding: 18px;
	border: 1px solid var(--mh-line);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
	backdrop-filter: blur(8px);
}
.mh-finder__row {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 12px;
	align-items: stretch;
}
.mh-finder__search {
	position: relative;
	display: flex;
	align-items: center;
}
.mh-finder__search-icon {
	position: absolute;
	inset-inline-start: 16px;
	color: var(--mh-text-dim);
	pointer-events: none;
}
.mh-finder__search input {
	width: 100%;
	min-height: 50px;
	padding: 0 18px 0 46px;
	background: rgba(0,0,0,0.38);
	border: 1px solid var(--mh-line);
	border-radius: 14px;
	color: var(--mh-text);
	font-family: var(--mh-arabic);
	font-size: 15px;
	transition: border-color .2s var(--mh-ease), box-shadow .2s var(--mh-ease);
}
.lang-ar .mh-finder__search input { padding: 0 46px 0 18px; }
.lang-en .mh-finder__search input { font-family: var(--mh-sans); }
.mh-finder__search input::placeholder { color: var(--mh-text-dimmer); }
.mh-finder__search input:focus {
	outline: none;
	border-color: var(--mh-gold);
	box-shadow: 0 0 0 4px rgba(212, 175, 113, 0.12);
}
.mh-finder__filters {
	display: contents;
}
.mh-finder__select {
	min-height: 50px;
	padding: 0 16px;
	background: rgba(0,0,0,0.38);
	border: 1px solid var(--mh-line);
	border-radius: 14px;
	color: var(--mh-text);
	font-family: var(--mh-arabic);
	font-size: 14px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4af71' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-inline-end: 38px;
	transition: border-color .2s var(--mh-ease);
}
.lang-ar .mh-finder__select { background-position: left 14px center; }
.mh-finder__select:focus { outline: none; border-color: var(--mh-gold); }
.mh-finder__select option { background: var(--mh-bg-2); color: var(--mh-text); }
.mh-finder__empty {
	margin-top: 14px;
	padding: 14px 18px;
	border: 1px dashed var(--mh-line);
	border-radius: 12px;
	color: var(--mh-text-dim);
	font-family: var(--mh-arabic);
	font-size: 14px;
	text-align: center;
}

@media (max-width: 720px) {
	.mh-finder { padding: 14px; border-radius: 18px; }
	.mh-finder__row {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.mh-finder__search input { min-height: 48px; font-size: 14.5px; }
	.mh-finder__select { min-height: 48px; }
}

/* Smooth fade for filtered rows */
.mh-track-row { transition: opacity .2s var(--mh-ease), transform .2s var(--mh-ease); }
.mh-track-row[hidden] { display: none !important; }
.mh-cat-block[data-empty="true"] { display: none; }

/* ---------- TOP 100 RANKED STYLES ---------- */
.mh-section--top100 .mh-section__title em {
	color: var(--mh-gold);
	font-style: italic;
}
.mh-top100-list {
	border: 1px solid var(--mh-line);
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(212, 175, 113, 0.04), rgba(0,0,0,0.0));
}
.mh-top100-list .mh-track-row {
	border-bottom: 1px solid var(--mh-line);
}
.mh-top100-list .mh-track-row:last-child {
	border-bottom: 0;
}
.mh-track-row__num--rank {
	font-family: var(--mh-serif);
	font-style: italic;
	color: var(--mh-gold);
	font-size: 22px;
	font-weight: 600;
}
.mh-track-row--rank:nth-child(1) .mh-track-row__num--rank,
.mh-track-row--rank:nth-child(2) .mh-track-row__num--rank,
.mh-track-row--rank:nth-child(3) .mh-track-row__num--rank {
	color: var(--mh-gold-bright);
	text-shadow: 0 0 18px rgba(232, 200, 144, 0.35);
}

/* ---------- HEADER MOBILE POLISH ---------- */
@media (max-width: 720px) {
	.mh-logo { font-size: 22px; }
	.mh-credits-badge { padding: 6px 12px; font-size: 11px; }
	.mh-lang-toggle { padding: 6px 10px; font-size: 11px; }
	.mh-welcome__inner { padding: 10px 0; flex-direction: column; gap: 4px; align-items: flex-start; }
	.lang-ar .mh-welcome__inner { align-items: flex-end; }
	.mh-hero { padding: 60px 0 40px; }
}

/* When mobile bottom nav is active, the main top nav links are still accessible
   via the desktop header on tablets; on phones we rely on the tab bar entirely.
   Keep the menu toggle hidden because the tab bar replaces it. */

/* ===================================================================
   DJMOHND v1.3 — Quick chips, Mix Studio grid, Single Mix player
   =================================================================== */

/* ---------- FINDER QUICK CHIPS ---------- */
.mh-finder__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
	padding: 0;
}
.mh-finder__chip {
	appearance: none;
	-webkit-appearance: none;
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--mh-line);
	color: var(--mh-text-dim);
	font-family: var(--mh-arabic);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 9px 16px;
	border-radius: 100px;
	cursor: pointer;
	transition: border-color .2s var(--mh-ease), color .2s var(--mh-ease), background .2s var(--mh-ease), transform .15s var(--mh-ease);
	-webkit-tap-highlight-color: transparent;
}
.lang-en .mh-finder__chip { font-family: var(--mh-sans); letter-spacing: 0.04em; text-transform: uppercase; font-size: 11.5px; }
.mh-finder__chip:hover {
	color: var(--mh-text);
	border-color: var(--mh-line-strong);
}
.mh-finder__chip:active { transform: scale(0.97); }
.mh-finder__chip.is-active {
	color: #160f05;
	background: linear-gradient(135deg, var(--mh-gold-bright), var(--mh-gold));
	border-color: transparent;
	box-shadow: 0 8px 24px -10px rgba(212,175,113,0.55);
}
.mh-finder__chip--clear.is-active {
	background: rgba(255,255,255,0.06);
	color: var(--mh-text);
	border: 1px solid var(--mh-line-strong);
	box-shadow: none;
}

@media (max-width: 720px) {
	.mh-finder__chips { gap: 6px; }
	.mh-finder__chip { padding: 8px 13px; font-size: 12.5px; }
}

/* ---------- MIX STUDIO — modern grid layout ---------- */
.mh-studio__head {
	text-align: center;
	margin-bottom: 28px;
}
.mh-studio__bar {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 14px 22px;
	margin-bottom: 36px;
	border: 1px solid var(--mh-line-strong);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.2));
	backdrop-filter: blur(8px);
}
.mh-studio__leds { display: flex; gap: 8px; }
.mh-studio__status {
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--mh-text-dim);
	text-transform: uppercase;
	font-family: var(--mh-sans);
}
.lang-ar .mh-studio__status { font-family: var(--mh-arabic); letter-spacing: 0; font-size: 13px; text-transform: none; }

.mh-mixgrid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}
@media (max-width: 1000px) {
	.mh-mixgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.mh-mixgrid { grid-template-columns: 1fr; gap: 14px; }
	.mh-studio__bar { padding: 12px 16px; gap: 12px; }
}

.mh-mixcard {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px;
	border: 1px solid var(--mh-line);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(20,18,16,0.95) 0%, rgba(10,9,8,0.95) 100%);
	transition: border-color .25s var(--mh-ease), transform .25s var(--mh-ease), box-shadow .25s var(--mh-ease);
	overflow: hidden;
}
.mh-mixcard::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--mh-gold-deep), transparent);
	opacity: 0.5;
}
.mh-mixcard:hover {
	border-color: var(--mh-line-strong);
	transform: translateY(-3px);
	box-shadow: 0 22px 48px -22px rgba(0,0,0,0.6);
}
.mh-mixcard__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.mh-mixcard__index {
	font-family: var(--mh-serif);
	font-style: italic;
	color: var(--mh-gold);
	font-size: 26px;
	line-height: 1;
}
.mh-mixcard__duration {
	font-family: var(--mh-serif);
	font-style: italic;
	color: var(--mh-text-dim);
	font-size: 14px;
}
.mh-mixcard__title {
	margin: 0;
	font-family: var(--mh-serif);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
}
.lang-ar .mh-mixcard__title { font-family: var(--mh-arabic); font-weight: 700; font-size: 20px; }
.mh-mixcard__title a { color: var(--mh-text); }
.mh-mixcard__title a:hover { color: var(--mh-gold); }
.mh-mixcard__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.mh-mixcard__pill {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 100px;
	border: 1px solid var(--mh-line);
	color: var(--mh-text-dim);
	font-family: var(--mh-sans);
}
.lang-ar .mh-mixcard__pill { font-family: var(--mh-arabic); text-transform: none; letter-spacing: 0; font-size: 12px; }
.mh-mixcard__pill--gold {
	color: var(--mh-gold);
	border-color: rgba(212,175,113,0.4);
	background: rgba(212,175,113,0.06);
}
.mh-mixcard__wave {
	display: flex;
	align-items: center;
	gap: 2px;
	height: 36px;
	margin-top: 2px;
}
.mh-mixcard__wave span {
	flex: 1;
	background: var(--mh-gold-deep);
	border-radius: 1.5px;
	opacity: 0.55;
	transition: opacity .3s, background .3s;
}
.mh-mixcard:hover .mh-mixcard__wave span {
	opacity: 1;
	background: var(--mh-gold);
	animation: mh-wave 0.9s ease-in-out infinite alternate;
}
.mh-mixcard__actions {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 4px;
}
.mh-mixcard__play {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--mh-gold-bright), var(--mh-gold));
	color: #160f05;
	border: 0;
	border-radius: 100px;
	padding: 10px 16px 10px 14px;
	font-family: var(--mh-arabic);
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: transform .2s var(--mh-ease), box-shadow .2s var(--mh-ease);
	-webkit-tap-highlight-color: transparent;
}
.lang-en .mh-mixcard__play { font-family: var(--mh-sans); }
.mh-mixcard__play svg {
	width: 14px; height: 14px;
	fill: currentColor;
}
.mh-mixcard__play:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px -10px rgba(212,175,113,0.55);
}
.mh-mixcard__play.is-playing svg path {
	/* When active, the floating player handles the pause icon — here we just darken */
}
.mh-mixcard__open { flex: 1; text-align: center; }

.mh-studio__subsection {
	margin-top: 72px;
}
.mh-studio__subsection .mh-list-section-head h2 {
	font-family: var(--mh-serif);
	font-size: clamp(28px, 4vw, 40px);
	margin: 0;
}
.lang-ar .mh-studio__subsection .mh-list-section-head h2 { font-family: var(--mh-arabic); font-weight: 700; }

.mh-studio__pagination { margin-top: 36px; text-align: center; }
.mh-studio__empty {
	padding: 60px 20px;
	text-align: center;
	color: var(--mh-text-dim);
	border: 1px dashed var(--mh-line);
	border-radius: 16px;
}

/* ---------- SINGLE MIX — clean layout + native HTML5 audio styling ---------- */
.mh-single-mix__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}
.mh-single-mix__main { min-width: 0; }
.mh-single-mix__aside { min-width: 0; }
.mh-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	margin-top: 14px;
	color: var(--mh-text-dim);
	font-size: 14px;
}
.mh-single__meta span {
	position: relative;
	padding: 5px 12px;
	border: 1px solid var(--mh-line);
	border-radius: 100px;
	font-size: 12.5px;
	letter-spacing: 0.04em;
}

.mh-mixplayer {
	padding: 14px;
	border: 1px solid var(--mh-line-strong);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(20,18,16,0.95) 0%, rgba(10,9,8,0.95) 100%);
	margin-bottom: 32px;
	box-shadow: inset 0 1px 0 rgba(212,175,113,0.08);
}
.mh-mixplayer__audio {
	width: 100%;
	min-height: 54px;
	display: block;
	border-radius: 10px;
	outline: none;
	background: transparent;
	color-scheme: dark;
}
/* Chrome / Edge / Safari audio control theming */
.mh-mixplayer__audio::-webkit-media-controls-panel {
	background: linear-gradient(180deg, rgba(20,18,16,0.95), rgba(10,9,8,0.95));
}
.mh-mixplayer__audio::-webkit-media-controls-play-button,
.mh-mixplayer__audio::-webkit-media-controls-mute-button {
	filter: invert(0.75) sepia(0.8) saturate(2) hue-rotate(-12deg);
}
.mh-mixplayer__embed iframe {
	display: block;
	width: 100%;
	border: 0;
	border-radius: 10px;
}

.mh-single-mix__prose {
	margin: 0 0 32px;
	max-width: none;
	padding: 0;
	color: var(--mh-text-dim);
	font-size: 15.5px;
	line-height: 1.8;
}

/* Tracklist */
.mh-tracklist { margin-top: 8px; }
.mh-tracklist__list {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	border: 1px solid var(--mh-line);
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255,255,255,0.015);
}
.mh-tracklist__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--mh-line);
	transition: background .2s var(--mh-ease);
}
.mh-tracklist__item:last-child { border-bottom: 0; }
.mh-tracklist__item:hover { background: rgba(212,175,113,0.04); }
.mh-tracklist__num {
	font-family: var(--mh-serif);
	font-style: italic;
	color: var(--mh-gold);
	font-size: 20px;
	min-width: 32px;
}
.mh-tracklist__title {
	color: var(--mh-text);
	font-size: 15px;
	flex: 1;
	word-break: break-word;
}

/* Download panel (right column / mobile full-width) */
.mh-download-panel {
	padding: 28px;
	border: 1px solid var(--mh-line-strong);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(20,18,16,0.95) 0%, rgba(10,9,8,0.95) 100%);
	position: sticky;
	top: 120px;
}
.mh-download-panel__cost {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding: 16px 0;
	border-block: 1px solid var(--mh-line);
	margin: 16px 0 20px;
	justify-content: flex-end;
}
.lang-ar .mh-download-panel__cost { justify-content: flex-end; }
.mh-download-panel__cost-num {
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: 38px;
	color: var(--mh-gold);
	line-height: 1;
}
.mh-download-panel__cost-label {
	font-size: 13px;
	color: var(--mh-text-dim);
}
.mh-download-panel__hint {
	margin-top: 16px;
	font-size: 13px;
	color: var(--mh-text-dim);
	text-align: center;
}
.mh-download-panel__hint strong {
	color: var(--mh-text);
	font-weight: 600;
	margin-inline-start: 4px;
}

@media (max-width: 900px) {
	.mh-single-mix__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.mh-download-panel { position: static; padding: 22px; }
}
@media (max-width: 640px) {
	.mh-mixplayer { padding: 10px; border-radius: 14px; }
	.mh-mixplayer__audio { min-height: 50px; }
	.mh-single__meta { gap: 8px; }
	.mh-single__meta span { font-size: 12px; padding: 4px 10px; }
	.mh-tracklist__item { padding: 12px 14px; gap: 12px; }
	.mh-tracklist__num { font-size: 17px; min-width: 28px; }
	.mh-tracklist__title { font-size: 14.5px; }
	.mh-download-panel__cost-num { font-size: 32px; }
}

/* ---------- DJMOHND v1.5 — Finder simplified to chips + search only ---------- */
.mh-finder__row--search-only {
	grid-template-columns: 1fr;
}
.mh-finder__row--search-only .mh-finder__search input {
	min-height: 52px;
}

/* ===================================================================
   DJMOHND v2.0 — App-like mobile polish, CWE section, Music & Karaoke
   =================================================================== */

/* ---------- TIGHTER TRACK ROWS (more app-like, smaller, denser) ---------- */
.mh-track-list--tight {
	gap: 0;
	border: 1px solid var(--mh-line);
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255,255,255,0.012);
}
.mh-track-list--tight .mh-track-row {
	border-bottom: 1px solid var(--mh-line);
	border-radius: 0;
	background: transparent;
	padding: 12px 14px;
}
.mh-track-list--tight .mh-track-row:last-child { border-bottom: 0; }
.mh-track-list--tight .mh-track-row:hover { background: rgba(212,175,113,0.04); }

@media (max-width: 720px) {
	.mh-track-list--tight .mh-track-row {
		padding: 10px 12px;
		gap: 10px;
	}
	.mh-track-row__num {
		font-size: 16px;
		min-width: 22px;
	}
	.mh-track-row__num--rank { font-size: 18px; }
	.mh-track-row__info strong { font-size: 14.5px; }
	.mh-track-row__info small  { font-size: 12px; }
	.mh-track-row__meta { gap: 6px; font-size: 11px; }
	.mh-track-row__actions { gap: 6px; }
	.mh-track__play {
		width: 34px;
		height: 34px;
	}
	.mh-track__play svg { width: 13px; height: 13px; }
	.mh-btn--small {
		padding: 6px 10px;
		font-size: 11.5px;
	}
}

/* ---------- FINDER LAYOUT — three-column dropdowns ---------- */
.mh-finder__row + .mh-finder__row { margin-top: 10px; }
.mh-finder__row--three {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}
.mh-finder__row--two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
@media (max-width: 720px) {
	.mh-finder__row--three,
	.mh-finder__row--two {
		grid-template-columns: 1fr;
	}
}
.mh-finder--compact {
	padding: 12px;
	margin-bottom: 20px;
}

/* Link chips (Mix) styled same as buttons */
.mh-finder__chip--link {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

/* ---------- CUSTOMIZED WEDDING ENTRANCE (CWE) ---------- */
.mh-cwe {
	margin-bottom: 64px;
}
.mh-cwe__hero {
	position: relative;
	padding: 44px 28px;
	border-radius: 24px;
	background:
		radial-gradient(ellipse at top, rgba(212,175,113,0.18) 0%, transparent 70%),
		linear-gradient(180deg, rgba(28,22,16,0.95), rgba(10,9,8,0.95));
	border: 1px solid var(--mh-line-strong);
	text-align: center;
	overflow: hidden;
}
.mh-cwe__hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(212,175,113,0.06) 0%, transparent 30%);
	pointer-events: none;
}
.mh-cwe__badge {
	font-size: 32px;
	margin-bottom: 8px;
	filter: drop-shadow(0 0 20px rgba(212,175,113,0.4));
}
.mh-cwe__title {
	margin: 8px 0 14px;
	font-family: var(--mh-arabic);
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 700;
	color: var(--mh-text);
}
.lang-en .mh-cwe__title { font-family: var(--mh-serif); font-weight: 500; }
.mh-cwe__lead {
	max-width: 540px;
	margin: 0 auto 28px;
	color: var(--mh-text-dim);
	font-size: 15.5px;
	line-height: 1.7;
}
.mh-cwe__ctas {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.mh-btn--whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.mh-btn--whatsapp svg {
	width: 18px;
	height: 18px;
}

.mh-cwe__showcase {
	margin-top: 40px;
}
.mh-cwe__showcase .mh-list-section-head h3 {
	font-family: var(--mh-arabic);
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}
.lang-en .mh-cwe__showcase .mh-list-section-head h3 {
	font-family: var(--mh-serif);
	font-weight: 500;
}

@media (max-width: 720px) {
	.mh-cwe__hero { padding: 32px 18px; border-radius: 20px; }
	.mh-cwe__lead { font-size: 14.5px; }
}

/* ---------- CWE MODAL ---------- */
.mh-cwe-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.mh-cwe-modal[hidden] { display: none !important; }
.mh-cwe-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.7);
	backdrop-filter: blur(8px);
}
.mh-cwe-modal__panel {
	position: relative;
	width: 100%;
	max-width: 460px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 30px 26px;
	background: linear-gradient(180deg, rgba(24,20,16,0.98), rgba(10,9,8,0.98));
	border: 1px solid var(--mh-line-strong);
	border-radius: 22px;
	box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}
.mh-cwe-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--mh-line);
	background: rgba(255,255,255,0.04);
	color: var(--mh-text-dim);
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: color .2s, border-color .2s;
}
.lang-ar .mh-cwe-modal__close { right: auto; left: 14px; }
.mh-cwe-modal__close:hover { color: var(--mh-gold); border-color: var(--mh-gold); }
.mh-cwe-modal__title {
	margin: 6px 0 22px;
	font-family: var(--mh-arabic);
	font-size: 24px;
	font-weight: 700;
}
.lang-en .mh-cwe-modal__title { font-family: var(--mh-serif); font-weight: 500; }

.mh-cwe-form__label {
	display: block;
	margin-bottom: 16px;
}
.mh-cwe-form__label > span {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	color: var(--mh-text-dim);
	font-family: var(--mh-arabic);
}
.lang-en .mh-cwe-form__label > span { font-family: var(--mh-sans); }
.mh-cwe-form input,
.mh-cwe-form textarea {
	width: 100%;
	padding: 12px 14px;
	background: rgba(0,0,0,0.4);
	border: 1px solid var(--mh-line);
	border-radius: 12px;
	color: var(--mh-text);
	font-family: var(--mh-arabic);
	font-size: 14.5px;
	transition: border-color .2s;
}
.lang-en .mh-cwe-form input,
.lang-en .mh-cwe-form textarea { font-family: var(--mh-sans); }
.mh-cwe-form input:focus,
.mh-cwe-form textarea:focus {
	outline: none;
	border-color: var(--mh-gold);
}
.mh-cwe-form__submit { margin-top: 8px; }
.mh-cwe-form__msg {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 13.5px;
	text-align: center;
}
.mh-cwe-form__msg.is-success {
	background: rgba(212,175,113,0.1);
	border: 1px solid var(--mh-gold-deep);
	color: var(--mh-gold-bright);
}
.mh-cwe-form__msg.is-error {
	background: rgba(255,80,80,0.1);
	border: 1px solid rgba(255,80,80,0.4);
	color: #ff8585;
}
.mh-cwe-form__alt {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--mh-line);
	text-align: center;
	font-size: 13px;
	color: var(--mh-text-dim);
}
.mh-cwe-form__alt a {
	color: var(--mh-gold);
	font-weight: 600;
	margin-inline-start: 6px;
}

/* ---------- KARAOKE ---------- */
.mh-karaoke-head h2 {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.mh-karaoke-mic {
	font-size: 28px;
	filter: drop-shadow(0 0 14px rgba(212,175,113,0.35));
}
.mh-karaoke__lead {
	margin: -8px 0 24px;
	color: var(--mh-text-dim);
	font-size: 14.5px;
}
.mh-track-row--karaoke .mh-track__play--full {
	background: linear-gradient(135deg, var(--mh-gold-bright), var(--mh-gold));
	color: #160f05;
}

/* ---------- HOME PAGE 3D CARDS — smaller on mobile for app feel ---------- */
@media (max-width: 720px) {
	.mh-3d__card {
		padding: 18px 16px;
		border-radius: 16px;
	}
	.mh-3d__title {
		font-size: 18px;
	}
	.mh-3d__list li {
		font-size: 13px;
		padding: 6px 0;
	}
	.mh-mixcard {
		padding: 16px;
		border-radius: 14px;
		gap: 10px;
	}
	.mh-mixcard__title { font-size: 17px; }
	.mh-mixcard__wave { height: 28px; }
}

/* ---------- HEADER — tighter on mobile ---------- */
@media (max-width: 720px) {
	.mh-header__inner { padding: 10px 0; }
	.mh-logo { font-size: 18px; }
	.mh-utilities { gap: 6px; }
	.mh-utilities .mh-btn--small {
		padding: 6px 12px;
		font-size: 11px;
	}
	.mh-credits-badge { padding: 5px 10px; font-size: 11px; }
}

/* CWE solo CTA — larger since it's alone now */
.mh-btn--large {
	padding: 16px 32px;
	font-size: 15px;
}
@media (max-width: 720px) {
	.mh-btn--large { padding: 14px 26px; font-size: 14px; }
}

/* ---------- SLOW DANCE SECTION ---------- */
.mh-slow-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.mh-slow-head h2 {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0;
}
.mh-slow-icon {
	font-size: 26px;
	filter: drop-shadow(0 0 14px rgba(228, 168, 195, 0.45));
}
.mh-slow__lead {
	margin: -8px 0 24px;
	color: var(--mh-text-dim);
	font-size: 14.5px;
}
.mh-track-row--slow .mh-track__play--full {
	background: linear-gradient(135deg, #e9b6c8, #d4af71);
	color: #160f05;
}
.mh-track-row--slow .mh-track__play--full:hover {
	box-shadow: 0 10px 22px -10px rgba(233, 182, 200, 0.55);
}

@media (max-width: 720px) {
	.mh-slow-head {
		flex-direction: column;
		align-items: stretch;
	}
	.mh-slow-head .mh-btn {
		align-self: flex-start;
	}
	.lang-ar .mh-slow-head .mh-btn {
		align-self: flex-end;
	}
}

/* ---------- dejaymoh: shared section lead style + entrance tracks list spacing ---------- */
.mh-section-lead {
	margin: -8px 0 20px;
	color: var(--mh-text-dim);
	font-size: 14.5px;
}
.mh-cwe__tracks {
	margin-top: 40px;
}
.mh-cwe__tracks .mh-list-section-head h3 {
	font-family: var(--mh-arabic);
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}
.lang-en .mh-cwe__tracks .mh-list-section-head h3 {
	font-family: var(--mh-serif);
	font-weight: 500;
}
.mh-track-row--entrance .mh-track__play--full {
	background: linear-gradient(135deg, var(--mh-gold-bright), var(--mh-gold));
	color: #160f05;
}

/* ===================================================================
   ACCOUNT LAUNCHER PAGE — clean grid, mobile-first, no extra text
   =================================================================== */

.mh-account {
	min-height: 70vh;
	padding: 28px 0 60px;
}
.mh-account__container {
	max-width: 720px;
}

/* User strip at the top */
.mh-account__user {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	margin-bottom: 22px;
	border: 1px solid var(--mh-line);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(20,18,16,0.85), rgba(10,9,8,0.85));
}
.mh-account__avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid var(--mh-line);
	background: rgba(0,0,0,0.35);
	flex-shrink: 0;
}
.mh-account__avatar-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mh-account__user-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.mh-account__user-name {
	font-family: var(--mh-arabic);
	font-size: 17px;
	font-weight: 700;
	color: var(--mh-text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.lang-en .mh-account__user-name { font-family: var(--mh-sans); }
.mh-account__credits {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	color: var(--mh-gold);
	text-decoration: none;
	transition: color .15s ease;
}
.mh-account__credits:hover { color: var(--mh-gold-bright); }
.mh-account__credits-num {
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}
.mh-account__credits-label {
	font-size: 12px;
	color: var(--mh-text-dim);
}

/* Tile grids */
.mh-account__grid {
	display: grid;
	gap: 12px;
	margin-bottom: 14px;
}
.mh-account__grid--top {
	grid-template-columns: 1fr 1fr;
}
.mh-account__grid--studio {
	grid-template-columns: 1fr 1fr;
	margin-top: 4px;
}

/* Individual tile */
.mh-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 130px;
	padding: 20px 14px;
	border: 1px solid var(--mh-line);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(20,18,16,0.92), rgba(10,9,8,0.92));
	color: var(--mh-text);
	text-decoration: none;
	transition: transform .2s var(--mh-ease), border-color .2s var(--mh-ease), box-shadow .2s var(--mh-ease);
	-webkit-tap-highlight-color: transparent;
	text-align: center;
}
.mh-tile:hover,
.mh-tile:focus-visible {
	border-color: var(--mh-line-strong);
	transform: translateY(-2px);
	box-shadow: 0 16px 32px -16px rgba(0,0,0,0.5);
	color: var(--mh-gold);
}
.mh-tile:active { transform: scale(0.97); }

.mh-tile--primary {
	min-height: 150px;
	background: linear-gradient(180deg, rgba(28,22,16,0.95), rgba(10,9,8,0.95));
	border-color: rgba(212,175,113,0.28);
}
.mh-tile--primary:hover {
	border-color: var(--mh-gold);
	box-shadow: 0 18px 34px -14px rgba(212,175,113,0.25);
}

.mh-tile__icon {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--mh-gold);
}
.mh-tile__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}
.mh-tile__icon--emoji {
	font-size: 32px;
	line-height: 1;
}
.mh-tile__label {
	font-family: var(--mh-arabic);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.2;
}
.lang-en .mh-tile__label {
	font-family: var(--mh-sans);
	font-size: 12.5px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.mh-tile--primary .mh-tile__label {
	font-size: 15.5px;
}
.lang-en .mh-tile--primary .mh-tile__label {
	font-size: 13px;
}

/* Footer logout */
.mh-account__footer {
	margin-top: 22px;
	text-align: center;
}
.mh-account__logout {
	display: inline-block;
	padding: 10px 24px;
	color: var(--mh-text-dim);
	font-family: var(--mh-arabic);
	font-size: 13px;
	text-decoration: none;
	border: 1px solid var(--mh-line);
	border-radius: 100px;
	transition: color .15s, border-color .15s;
}
.lang-en .mh-account__logout { font-family: var(--mh-sans); }
.mh-account__logout:hover {
	color: var(--mh-gold);
	border-color: var(--mh-gold);
}

@media (max-width: 480px) {
	.mh-account { padding: 18px 0 40px; }
	.mh-account__user { padding: 14px 16px; margin-bottom: 16px; gap: 12px; }
	.mh-account__avatar { width: 46px; height: 46px; }
	.mh-account__user-name { font-size: 16px; }
	.mh-tile { min-height: 110px; padding: 16px 10px; gap: 10px; }
	.mh-tile--primary { min-height: 125px; }
	.mh-tile__icon { width: 32px; height: 32px; }
	.mh-tile__icon--emoji { font-size: 26px; }
	.mh-tile__label { font-size: 13px; }
	.mh-tile--primary .mh-tile__label { font-size: 14.5px; }
}

/* ===================================================================
   FLOATING PLAYER v2 — Track title + draggable scrubber + elapsed/total time
   =================================================================== */
.mh-player__title {
	font-family: var(--mh-arabic);
	font-size: 14px;
	font-weight: 700;
	color: var(--mh-text);
	letter-spacing: 0.01em;
	margin-bottom: 6px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 100%;
}
.lang-en .mh-player__title { font-family: var(--mh-sans); }
.mh-player__title:empty { display: none; }

.mh-player__times {
	display: flex;
	align-items: center;
	gap: 10px;
}
.mh-player__time {
	font-family: var(--mh-serif);
	font-style: italic;
	font-size: 13px;
	color: var(--mh-text-dim);
	font-feature-settings: 'tnum' 1;
	min-width: 36px;
	text-align: center;
	white-space: nowrap;
}

/* Scrubber container */
.mh-player__progress {
	position: relative;
	flex: 1;
	height: 28px;
	display: flex;
	align-items: center;
	cursor: pointer;
	touch-action: none;
	outline: none;
}
.mh-player__progress:focus-visible .mh-player__progress-track {
	box-shadow: 0 0 0 3px rgba(212, 175, 113, 0.25);
}

.mh-player__progress-track {
	width: 100%;
	height: 4px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
	transition: height .15s ease;
}
.mh-player__progress:hover .mh-player__progress-track,
.mh-player__progress.is-dragging .mh-player__progress-track {
	height: 6px;
}

.mh-player__progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--mh-gold-bright), var(--mh-gold));
	border-radius: 100px;
	transition: width .08s linear;
}
.mh-player__progress.is-dragging .mh-player__progress-fill {
	transition: none;
}

.mh-player__progress-thumb {
	position: absolute;
	top: 50%;
	inset-inline-start: 0%;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--mh-gold-bright);
	box-shadow: 0 0 0 4px rgba(212, 175, 113, 0.18), 0 4px 12px rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity .15s ease, transform .15s ease;
	pointer-events: none;
}
.lang-ar .mh-player__progress-thumb {
	transform: translate(50%, -50%);
}
.mh-player__progress:hover .mh-player__progress-thumb,
.mh-player__progress:focus-visible .mh-player__progress-thumb,
.mh-player__progress.is-dragging .mh-player__progress-thumb {
	opacity: 1;
}
.mh-player__progress.is-dragging .mh-player__progress-thumb {
	transform: translate(-50%, -50%) scale(1.15);
}
.lang-ar .mh-player__progress.is-dragging .mh-player__progress-thumb {
	transform: translate(50%, -50%) scale(1.15);
}

/* Mobile: bigger touch target (still visually thin) */
@media (max-width: 720px) {
	.mh-player__progress { height: 32px; }
	.mh-player__progress-thumb {
		width: 16px;
		height: 16px;
		opacity: 1; /* Always visible on mobile so the user sees the grip */
	}
	.mh-player__time {
		font-size: 12px;
		min-width: 32px;
	}
	.mh-player__title { font-size: 13px; }
}
