:root {
  --bg: #0b0708;
  --bg-2: #140c0e;
  --ink: #f6ece6;
  --muted: #b8a7a0;
  --rose: #e8a3a8;
  --gold: #d8b36a;
  --line: rgba(246, 236, 230, 0.12);
  --card: rgba(255, 255, 255, 0.035);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ar: "Tajawal", "Inter", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
html[lang="ar"] body { font-family: var(--ar); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
.wrap { width: min(1120px, 100% - 32px); margin-inline: auto; }

/* Nav */
nav.top {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(11,7,8,0.9), rgba(11,7,8,0));
  transition: background .3s;
}
nav.top.solid { background: rgba(11,7,8,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
nav.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { font-family: var(--serif); font-size: 26px; letter-spacing: .28em; font-weight: 600; }
.nav-links { display: flex; gap: 28px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
html[lang="ar"] .nav-links { letter-spacing: 0; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.lang {
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  padding: 7px 14px; border-radius: 999px; cursor: pointer; font-size: 13px;
}
.lang:hover { border-color: var(--rose); }

/* Hero */
.hero {
  min-height: 100vh; display: grid; place-items: center; text-align: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(40% 35% at 30% 40%, rgba(232,163,168,0.22), transparent 70%),
    radial-gradient(35% 30% at 70% 60%, rgba(216,179,106,0.16), transparent 70%),
    radial-gradient(60% 50% at 50% 100%, rgba(120,30,45,0.35), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate(3%, -2%) scale(1.08); } }
.hero-inner { position: relative; }
.eyebrow { font-size: 12px; letter-spacing: .4em; text-transform: uppercase; color: var(--rose); }
html[lang="ar"] .eyebrow { letter-spacing: .05em; font-size: 15px; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(64px, 16vw, 190px); letter-spacing: .12em; line-height: 1; margin: 18px 0 10px;
  background: linear-gradient(180deg, #fff 30%, #d9bfb6); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .ar-name { font-family: var(--ar); font-size: clamp(28px, 5vw, 44px); color: var(--gold); font-weight: 300; }
.hero p.tag { margin: 22px auto 36px; max-width: 520px; color: var(--muted); font-size: 17px; }
.btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer; background: transparent;
  padding: 14px 28px; border-radius: 999px; font-size: 14px; font-weight: 500; letter-spacing: .06em;
  border: 1px solid var(--line); transition: all .25s;
}
.btn.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.primary:hover { background: var(--rose); border-color: var(--rose); }
.btn:not(.primary):not(.gold):hover { border-color: var(--rose); color: var(--rose); }
.btn.gold { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn.gold:hover { background: var(--ink); border-color: var(--ink); }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: .3em; color: var(--muted); }

/* Sections */
section { padding: 110px 0; position: relative; }
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }
.sec-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 68px); line-height: 1.05; }
html[lang="ar"] .sec-head h2 { font-family: var(--ar); font-weight: 500; }
.sec-head h2 em { color: var(--rose); font-style: italic; }
.sec-head p { color: var(--muted); max-width: 420px; }

/* Numbers in display type should be full height, not old-style */
.hero2-name, .sec-head h2, .latest-info h2, .featured h3, .card h4, .song-info h1, .foot2-name, .logo {
  font-variant-numeric: lining-nums;
}

/* Covers */
.cover {
  width: 100%; aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, #5a2330, #1a0c10);
  display: grid; place-items: center; font-family: var(--serif); font-size: 48px; color: rgba(255,255,255,0.85);
}
.cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Featured release */
.featured {
  display: grid; grid-template-columns: minmax(220px, 380px) 1fr; gap: 48px; align-items: center;
  padding: clamp(20px, 4vw, 40px); border: 1px solid var(--line); border-radius: 28px;
  background: radial-gradient(60% 80% at 0% 0%, rgba(232,163,168,0.12), transparent 70%), var(--card);
  margin-bottom: 56px;
}
.featured .cover { border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); font-size: 90px; }
.featured h3 { font-family: var(--serif); font-size: clamp(38px, 5vw, 60px); font-weight: 600; line-height: 1.05; margin: 12px 0 8px; }
html[lang="ar"] .featured h3 { font-family: var(--ar); font-weight: 500; }
.featured .meta { color: var(--muted); margin-bottom: 26px; }
.featured .btns { justify-content: flex-start; }
.badge { display: inline-block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--bg); background: var(--gold); padding: 3px 9px; border-radius: 999px; font-family: var(--sans); font-weight: 600; vertical-align: middle; }

/* Music tabs and search */
.music-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: -18px 0 34px; }
.tabs-row { display: flex; gap: 10px; flex-wrap: wrap; }
.search-box { display: flex; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); color: var(--muted); transition: border-color .2s; min-width: 250px; }
.search-box:focus-within { border-color: var(--rose); color: var(--ink); }
.search-box input {
  flex: 1; min-width: 0; background: none; border: 0; outline: none; color: var(--ink);
  font: inherit; font-size: 14px; padding: 11px 0; font-weight: 300;
}
.search-box input::placeholder { color: var(--muted); }
.search-box input::-webkit-search-cancel-button { display: none; }
.search-clear { background: none; border: 0; color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 2px; }
.search-clear:hover { color: var(--rose); }
.mtab {
  padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line); background: transparent;
  color: var(--muted); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: all .2s;
}
html[lang="ar"] .mtab { letter-spacing: 0; font-size: 15px; text-transform: none; }
.mtab:hover { color: var(--ink); border-color: var(--rose); }
.mtab.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Release grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 28px; }
.card { display: block; transition: transform .25s; }
.card:hover { transform: translateY(-4px); }
.card:hover .cover { box-shadow: 0 0 0 1px var(--rose); }
.shot { position: relative; }
.shot .count {
  position: absolute; inset-block-end: 10px; inset-inline-start: 10px;
  background: rgba(11,7,8,.72); backdrop-filter: blur(6px); color: var(--ink);
  font-size: 11px; letter-spacing: .06em; padding: 5px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14);
}
.card h4 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-top: 12px; line-height: 1.2; }
html[lang="ar"] .card h4 { font-family: var(--ar); font-weight: 500; font-size: 19px; }
.card .meta { font-size: 13px; color: var(--muted); }
.empty { color: var(--muted); text-align: center; padding: 40px 0; }

/* Artist */
.artist { background: var(--bg-2); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.portrait {
  aspect-ratio: 4/5; border-radius: 28px; position: relative; overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(60% 50% at 50% 35%, rgba(232,163,168,0.35), transparent 70%),
    linear-gradient(160deg, #2a1418, #0b0708 70%);
  display: grid; place-items: center;
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait span { font-family: var(--serif); font-style: italic; font-size: clamp(42px, 7vw, 80px); color: rgba(246,236,230,0.9); text-align: center; line-height: 1.05; }
.artist-copy p { color: var(--muted); margin-bottom: 18px; font-size: 17px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 34px 0; }
.stat { border-top: 1px solid var(--line); padding-top: 14px; }
.stat b {
  display: block; font-family: var(--sans); font-size: 36px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink); line-height: 1; font-variant-numeric: lining-nums tabular-nums;
}
.stat span { font-size: 12px; color: var(--muted); letter-spacing: .08em; }

/* E-Records */
.er-card {
  border-radius: 32px; padding: clamp(32px, 6vw, 72px);
  background:
    radial-gradient(50% 80% at 100% 0%, rgba(216,179,106,0.18), transparent 60%),
    linear-gradient(135deg, #17100a, #0b0708);
  border: 1px solid rgba(216,179,106,0.25);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.er-logo { font-weight: 600; font-size: clamp(56px, 10vw, 110px); letter-spacing: -.02em; line-height: .9; }
.er-logo-img { width: clamp(190px, 26vw, 300px); height: auto; display: block; }
.er-logo i { color: var(--gold); font-style: normal; }
.er-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin: 20px 0 14px; }
html[lang="ar"] .er-card h3 { font-family: var(--ar); }
.er-card p { color: var(--muted); margin-bottom: 26px; }
.er-card .btns { justify-content: flex-start; }
.er-contact { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; font-size: 14px; color: var(--muted); }
.er-contact a { border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: color .2s, border-color .2s; }
.er-contact a:hover { color: var(--gold); border-color: var(--gold); }
.pillars { display: grid; gap: 12px; }
.pillar { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(0,0,0,0.25); }
.pillar b { display: block; font-weight: 500; margin-bottom: 4px; }
.pillar span { font-size: 14px; color: var(--muted); }

/* Links hub */
.hub { text-align: center; }
.hub-list { display: grid; gap: 12px; max-width: 520px; margin: 0 auto; }
.hub-list a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--card);
  transition: all .2s; font-weight: 400;
}
.hub-list a:hover { border-color: var(--rose); transform: translateY(-2px); }
.hub-list a .h { margin-inline-start: auto; color: var(--muted); }

footer { border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted); font-size: 13px; }
footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ Homepage (celebrity layout) ============ */
.hidden { display: none !important; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-social { display: flex; gap: 12px; color: var(--muted); }
.nav-social a:hover { color: var(--ink); }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--ink); transition: transform .25s, top .25s; }
.burger span:first-child { top: 16px; }
.burger span:last-child { top: 22px; }
nav.top.open .burger span:first-child { top: 19px; transform: rotate(45deg); }
nav.top.open .burger span:last-child { top: 19px; transform: rotate(-45deg); }

.hero2 { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--bg); }
.hero2-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 25%;
  opacity: 0; transform: scale(1.06); transition: opacity 1.2s ease, transform 6s ease;
}
.hero2-bg.on { opacity: 1; transform: scale(1); }
.hero2:not(.has-photo) .hero2-bg {
  opacity: 1; transform: none;
  background:
    radial-gradient(40% 35% at 30% 40%, rgba(232,163,168,0.22), transparent 70%),
    radial-gradient(35% 30% at 70% 60%, rgba(216,179,106,0.16), transparent 70%),
    radial-gradient(60% 50% at 50% 100%, rgba(120,30,45,0.35), transparent 70%);
}
.hero2-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,7,8,.95) 0%, rgba(11,7,8,.45) 38%, rgba(11,7,8,.1) 65%, rgba(11,7,8,.5) 100%); }
.hero2-inner { position: relative; padding: 140px 0 90px; }
.hero2-name {
  font-family: var(--serif); font-weight: 400; line-height: .9; letter-spacing: .08em;
  font-size: clamp(76px, 17vw, 230px); margin: 10px 0 4px; color: #fff; text-shadow: 0 10px 60px rgba(0,0,0,.35);
}
.hero2-ar { font-family: var(--ar); font-size: clamp(28px, 4.5vw, 46px); color: var(--gold); font-weight: 300; }
.hero2-latest {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 34px;
  padding: 10px 10px 10px 12px; border-radius: 18px;
  background: rgba(20, 12, 14, .55); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transition: transform .25s, border-color .25s, background .25s;
}
html[dir="rtl"] .hero2-latest { padding: 10px 12px 10px 10px; }
.hero2-latest:hover { transform: translateY(-2px); border-color: rgba(232,163,168,.55); background: rgba(20,12,14,.7); }
.hl-cover {
  width: 54px; height: 54px; border-radius: 12px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, #5a2330, #1a0c10);
}
.hl-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hl-cover.empty { display: none; }
.hl-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hl-label { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--rose); }
html[lang="ar"] .hl-label { letter-spacing: .04em; font-size: 12px; }
.hl-text b {
  font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.1; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw;
}
html[lang="ar"] .hl-text b { font-family: var(--ar); font-weight: 500; font-size: 19px; }
.hl-cta {
  margin-inline-start: 10px; font-size: 12px; font-weight: 600; letter-spacing: .08em;
  padding: 11px 20px; border-radius: 12px; background: var(--ink); color: var(--bg); white-space: nowrap;
  transition: background .25s;
}
.hero2-latest:hover .hl-cta { background: var(--rose); }
.hero2-social { display: flex; gap: 18px; margin-top: 28px; color: rgba(255,255,255,.75); }
.hero2-social a:hover { color: #fff; }

.latest { position: relative; overflow: hidden; padding: 100px 0; }
.latest-bg { position: absolute; inset: -80px; background-size: cover; background-position: center; filter: blur(70px) saturate(1.3) brightness(.35); }
.latest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--bg), transparent 25%, transparent 75%, var(--bg)); pointer-events: none; }
.latest-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(240px, 420px) 1fr; gap: 56px; align-items: center; }
.latest-cover .cover { border-radius: 18px; box-shadow: 0 40px 100px rgba(0,0,0,.6); font-size: 100px; }
.latest-info h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(44px, 6vw, 84px); line-height: 1; margin: 14px 0 12px; }
html[lang="ar"] .latest-info h2 { font-family: var(--ar); font-weight: 500; }
.latest-info .meta { color: var(--muted); margin-bottom: 30px; }
.latest-info .btns { justify-content: flex-start; }

.gallery-sec { padding-top: 60px; }
.masonry { columns: 3 260px; column-gap: 14px; }
.ph { display: block; width: 100%; margin: 0 0 14px; padding: 0; border: 0; background: var(--bg-2); border-radius: 14px; overflow: hidden; cursor: zoom-in; break-inside: avoid; }
.ph img { width: 100%; display: block; transition: transform .6s ease, filter .3s; }
.ph:hover img { transform: scale(1.04); filter: brightness(1.08); }
.more-btn { margin-top: 26px; }

.lightbox { position: fixed; inset: 0; z-index: 60; background: rgba(5,3,4,.95); display: flex; align-items: center; justify-content: center; padding: 20px; }
.lightbox figure { max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 110px); object-fit: contain; border-radius: 8px; }
.lightbox figcaption { color: var(--muted); font-size: 14px; text-align: center; }
.lb-close { position: absolute; top: 14px; inset-inline-end: 18px; background: none; border: 0; color: #fff; font-size: 38px; cursor: pointer; line-height: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; font-size: 30px; cursor: pointer; display: grid; place-items: center; }
.lb-nav:hover { background: rgba(255,255,255,.16); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.portrait.has-photo span { display: none; }
.portrait img { z-index: 0; }

.foot2 { border-top: 1px solid var(--line); padding: 70px 0 40px; text-align: center; }
.foot2 .wrap { display: block; }
.foot2-name { font-family: var(--serif); font-size: clamp(40px, 7vw, 72px); letter-spacing: .2em; line-height: 1; }
.foot2-name span { display: block; font-family: var(--ar); font-size: 22px; letter-spacing: 0; color: var(--gold); margin-top: 10px; }
.foot2-social { display: flex; justify-content: center; gap: 22px; margin: 30px 0; color: var(--muted); }
.foot2-social a:hover { color: var(--rose); }
.foot2-links { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
html[lang="ar"] .foot2-links { letter-spacing: 0; font-size: 15px; }
.foot2-links a:hover { color: var(--ink); }
.foot2-copy { margin-top: 30px; font-size: 12px; color: var(--muted); opacity: .7; }

@media (max-width: 860px) {
  .nav-social { display: none; }
  .burger { display: block; }
  nav.top.open { background: rgba(11,7,8,.97); backdrop-filter: blur(10px); }
  nav.top.open .nav-links {
    display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; inset-inline: 0;
    background: rgba(11,7,8,.97); border-bottom: 1px solid var(--line); padding: 8px 16px 18px;
  }
  nav.top.open .nav-links a { padding: 14px 0; border-top: 1px solid var(--line); font-size: 14px; }
  .music-bar { flex-direction: column; align-items: stretch; }
  .search-box { min-width: 0; }
  .latest-inner { grid-template-columns: 1fr; gap: 32px; }
  .latest-cover { max-width: 360px; }
  .latest { padding: 70px 0; }
  .hero2-inner { padding-bottom: 80px; }
  .hl-text b { max-width: 52vw; font-size: 19px; }
  .hl-cta { padding: 10px 16px; font-size: 11px; }
  .hl-cover { width: 48px; height: 48px; }
  .masonry { columns: 2; column-gap: 10px; }
  .ph { margin-bottom: 10px; border-radius: 10px; }
  .lb-nav { display: none; }
}

/* ============ Song page (smart link) ============ */
.song-page { min-height: 100vh; position: relative; }
.song-bg {
  position: fixed; inset: -60px; background-size: cover; background-position: center;
  filter: blur(60px) saturate(1.2) brightness(.45); transform: scale(1.1); z-index: 0;
}
.song-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,7,8,.2), rgba(11,7,8,.85)); }
.song-wrap { position: relative; z-index: 1; width: min(460px, 100% - 32px); margin: 0 auto; padding: 36px 0 60px; }
.song-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 28px; }
.backBtn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  padding: 8px 15px 8px 11px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(8px); font-size: 13px; transition: all .2s;
}
.backBtn:hover { background: rgba(255,255,255,.14); border-color: var(--rose); }
html[dir="rtl"] .backBtn svg { transform: scaleX(-1); }
.song-top .logo { margin-inline-start: auto; }
.song-top .logo { font-size: 20px; }
.song-card {
  background: rgba(20, 12, 14, 0.72); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.song-card .cover { border-radius: 0; font-size: 120px; }
.song-info { padding: 22px 24px 8px; text-align: center; }
.song-info h1 { font-family: var(--serif); font-size: 36px; font-weight: 600; line-height: 1.1; }
html[lang="ar"] .song-info h1 { font-family: var(--ar); font-weight: 500; font-size: 30px; }
.song-info .artist-name { color: var(--rose); letter-spacing: .25em; font-size: 12px; text-transform: uppercase; margin-top: 6px; }
.song-info .meta { color: var(--muted); font-size: 13px; margin-top: 6px; }
.choose { text-align: center; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); padding: 14px 0 6px; }
html[lang="ar"] .choose { letter-spacing: 0; font-size: 13px; }
/* Album strip on a track page */
.album-bar {
  display: flex; align-items: center; gap: 14px; padding: 12px 16px;
  background: rgba(232,163,168,.10); border-bottom: 1px solid rgba(232,163,168,.22);
  transition: background .2s;
}
.album-bar:hover { background: rgba(232,163,168,.18); }
.ab-cover { width: 42px; height: 42px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg,#5a2330,#1a0c10); }
.ab-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-text { display: flex; flex-direction: column; min-width: 0; }
.ab-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); }
html[lang="ar"] .ab-label { letter-spacing: 0; font-size: 12px; }
.ab-text b { font-weight: 500; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ab-go {
  margin-inline-start: auto; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; white-space: nowrap;
}
html[lang="ar"] .ab-go { letter-spacing: 0; font-size: 12px; }
.album-bar:hover .ab-go { color: var(--ink); border-color: var(--rose); }

/* Platform panel: light, like the platforms' own "listen on" pages */
.plat-panel { background: #fbf8f6; color: #1a1214; margin-top: 18px; }
.plat-list { list-style: none; padding: 6px 20px; }
.plat-list li + li a { border-top: 1px solid rgba(26, 18, 20, 0.08); }
.plat-list a { display: flex; align-items: center; gap: 14px; padding: 14px 0; }
.plogo { display: flex; align-items: center; gap: 10px; min-height: 34px; }
.plogo img { height: 30px; max-width: 170px; object-fit: contain; display: block; }
.plogo svg { flex-shrink: 0; }
.plogo { min-width: 0; }
.plogo .pname { font-family: var(--sans); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: #111; white-space: nowrap; }
@media (max-width: 420px) {
  .plat-list { padding: 4px 16px; }
  .plogo .pname { font-size: 16px; }
  .plat-list .go { width: 96px; font-size: 13px; }
}
.plat-list .go {
  margin-inline-start: auto; font-family: var(--sans); font-size: 14px; font-weight: 500; color: #4a4046;
  padding: 8px 0; width: 120px; text-align: center; border-radius: 999px;
  border: 1px solid #d9d2d6; background: #fff; box-shadow: 0 2px 6px rgba(60, 40, 80, 0.12);
  transition: all .2s;
}
.plat-list a:hover .go { background: #111; color: #fff; border-color: #111; }
.plat-panel .soon { text-align: center; color: #6b6066; padding: 26px 16px; font-size: 14px; }

/* Tracklist (albums and tracks) */
.tracklist { padding: 4px 12px 14px; }
.tracklist ol { list-style: none; }
.tracklist li { display: flex; align-items: center; border-top: 1px solid var(--line); }
.tracklist li:first-child { border-top: 0; }
.tracklist li a { flex: 1; display: flex; align-items: center; gap: 14px; padding: 13px 8px; min-width: 0; }
.tracklist .num { width: 22px; text-align: center; color: var(--muted); font-size: 13px; flex-shrink: 0; }
.tracklist .tname { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tracklist li a:hover .tname { color: var(--rose); }
.tracklist li.current .tname { color: var(--rose); font-weight: 500; }
.tracklist li.current .num { color: var(--rose); }
.tshare { background: none; border: 0; color: var(--muted); padding: 10px; cursor: pointer; border-radius: 8px; display: grid; place-items: center; }
.tshare:hover { color: var(--ink); background: rgba(255,255,255,.06); }
.song-actions { display: flex; gap: 10px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.song-actions .btn { padding: 11px 20px; font-size: 13px; }
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); opacity: 0;
  background: var(--ink); color: var(--bg); padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 500;
  transition: all .3s; z-index: 50;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.more { margin-top: 36px; }
.more h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin-bottom: 14px; text-align: center; }
html[lang="ar"] .more h2 { font-family: var(--ar); }
.more .grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
.more .card h4 { font-size: 15px; }

/* Wide screens: cover and details on the left, platforms on the right */
@media (min-width: 900px) {
  .song-wrap { width: min(1000px, 100% - 48px); padding-top: 42px; }
  .song-card { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; align-items: start; }
  .song-card .album-bar { grid-column: 1 / -1; grid-row: 1; padding: 14px 24px; }
  .song-card .song-left { grid-column: 1; grid-row: 2; align-self: start; }
  .song-card .cover { border-radius: 0; }
  .song-card .song-info { padding: 24px 28px 30px; text-align: start; }
  .song-card .song-info h1 { font-size: 30px; }
  .song-card .song-right { grid-column: 2; grid-row: 2; align-self: start; }
  .song-card .plat-panel { margin-top: 0; }
  .song-card .tracklist { padding: 12px 20px 22px; }
  .song-card .plat-list { padding: 8px 24px; }
  .song-card .from-album { margin-top: 12px; }
  .more .grid { grid-template-columns: repeat(6, 1fr); }
}
.more .card .meta { display: none; }
.skeleton { background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.09), rgba(255,255,255,.04)); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .split, .er-card, .featured { grid-template-columns: 1fr; gap: 32px; }
  .featured .cover { max-width: 380px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  section { padding: 80px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .skeleton { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}