
/* =============================================
   MUZJUST.COM — Main Stylesheet
   Design concept: warm cream tones, Inter font
   ============================================= */

:root {
  --cream:      #f3ede2;
  --cream-deep: #ebe3d4;
  --paper:      #fbf8f1;
  --mint:       #c5d4c0;
  --sage:       #7d8f78;
  --ink:        #1c1c1a;
  --ink-soft:   #2d2d2a;
  --muted:      #6f6b62;
  --line:       rgba(28,28,26,0.10);
  --line-soft:  rgba(28,28,26,0.05);
  --accent:     #d9622d;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; outline: none; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

/* === TOP BAR === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,237,226,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-inner { display: contents; }
.menu-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.025em;
  margin-right: auto;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 11px;
  flex-shrink: 0;
}
.logo-suffix { font-weight: 400; font-style: italic; color: var(--sage); }

.topbar-search-form { display: none; }
.top-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.top-icon:hover { background: var(--paper); }

/* === MOBILE SEARCH === */
.search-strip {
  padding: 8px 16px 12px;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
}
.search-strip form { width: 100%; }
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}
.search-input-wrap i { font-size: 12px; flex-shrink: 0; }
.search-input-wrap input {
  border: 0; background: transparent; outline: none;
  font-size: 13px; font-family: var(--font); color: var(--ink);
  width: 100%; min-width: 0;
}
.search-input-wrap input::placeholder { color: var(--muted); }

/* === SIDEBAR DRAWER === */
.overlay {
  position: fixed; inset: 0;
  background: rgba(28,28,26,0.4);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 86%; max-width: 320px;
  background: var(--cream);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.2,0.7,0.3,1);
  overflow-y: auto;
  border-right: 1px solid var(--line-soft);
}
.sidebar.open { transform: translateX(0); }
.sidebar-head {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0;
  background: var(--cream); z-index: 2;
}
.sidebar-head .logo { font-size: 17px; margin-right: 0; }
.close-btn {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 13px;
}

.sidebar-section { padding: 20px 18px 6px; }
.sidebar-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--muted);
}

.cat-list {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0 10px 16px;
}
.cat-item {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  transition: background 0.15s;
}
.cat-item:hover { background: var(--paper); }
.cat-item.active { background: var(--ink); color: var(--cream); }
.cat-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--paper);
  display: grid; place-items: center;
  font-size: 15px; color: var(--accent);
  flex-shrink: 0;
}
.cat-item.active .cat-icon { background: rgba(255,255,255,0.12); color: var(--mint); }
.cat-count { margin-left: auto; font-size: 11px; color: var(--muted); font-weight: 500; }
.cat-item.active .cat-count { color: rgba(243,237,226,0.6); }

/* TOP 10 in sidebar */
.top10-list {
  padding: 0 10px 20px;
  display: flex; flex-direction: column; gap: 1px;
  counter-reset: top10;
}
.top10-item {
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 7px 11px;
  border-radius: 10px;
  transition: background 0.15s;
  counter-increment: top10;
}
.top10-item:hover { background: var(--paper); }
.top10-num {
  font-size: 14px; font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  text-align: center;
}
.top10-num::before { content: counter(top10, decimal-leading-zero); }
.top10-item:nth-child(-n+3) .top10-num { color: var(--accent); }
.top10-info { min-width: 0; line-height: 1.4;}
.top10-title {
  font-size: 14px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 1px;
}
.top10-artist {
  font-size: 13px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.top10-play {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; color: var(--ink-soft);
  transition: background 0.15s;
}
.top10-item:hover .top10-play { background: var(--mint); }

/* === LAYOUT === */
.layout {
  display: block;
  padding-bottom: 90px;
}

/* === MAIN === */
.main {
  padding: 18px 16px 24px;
  min-height: 60vh;
}
.main-head { margin-bottom: 20px; }
.main-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.main-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--muted); }
.main-title {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.1;
}
.main-title em { font-weight: 400; font-style: italic; color: var(--sage); }
.main-meta { font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* Navigation sections */
.sect-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.sect-title { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.sect-link { font-size: 12px; color: var(--muted); font-weight: 500; }
.sect-link:hover { text-decoration: underline; }
.sect + .sect { margin-top: 30px; }

/* Artists / podb grid */
.grid-artists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 16px;
  margin-bottom: 0;
}
.podb { display: block; text-align: center; }
.podb-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-deep);
}
.podb-img img { width: 100%; height: 100%; object-fit: cover; }
.podb-title { font-size: 12px; font-weight: 500; margin-top: 8px; line-height: 1.3; }

/* === TRACK LIST === */
.tracks {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 6px;
}
.tr {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.15s;
  cursor: default;
}
.tr:hover { background: var(--cream-deep); }
.tr-cover {
  width: 44px; height: 44px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--cream-deep);
}
.tr-cover img { width: 100%; height: 100%; object-fit: cover; }
.tr-cover-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-size: 16px; color: var(--muted);
}
.tr-new {
  position: absolute; top: 3px; right: 3px;
  background: var(--accent); color: var(--cream);
  font-size: 7px; font-weight: 700;
  letter-spacing: 0.08em; padding: 2px 4px;
  border-radius: 4px; text-transform: uppercase;
}
.tr-info { min-width: 0; line-height: 1.4;}
.tr-title {
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 2px;
}
.tr-artist {
  font-size: 14px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tr-side { display: flex; align-items: center; gap: 4px; }
.tr-time {
  font-size: 11px; color: var(--muted);
  font-variant-numeric: tabular-nums; font-weight: 500;
  margin-right: 2px;
}
.tr-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; color: var(--ink-soft);
  transition: background 0.15s;
  flex-shrink: 0;
}
.tr-btn:hover { background: var(--cream-deep); }
.tr-btn.play { color: var(--ink); }

/* Playing state */
.tr.js-item-played,
.tr.js-item-stopped { background: var(--cream-deep); }
.js-item-played .tr-title { color: var(--accent); }
.js-item-played .tr-btn.play,
.js-item-stopped .tr-btn.play { color: var(--accent); }
.js-item-played .tr-btn.play { background: var(--accent); color: var(--cream); }
.top10-item.js-item-played .top10-play,
.top10-item.js-item-stopped .top10-play { background: var(--accent); color: var(--cream); }
.js-item-played .fa-play::before { content: '\f04c'; }

/* Hide audio element from layout */
audio { display: none; }

/* === SPEEDBAR (breadcrumb) === */
.speedbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 18px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  width: fit-content;
  max-width: 100%;
}
.speedbar a {
  color: var(--muted);
  transition: color 0.15s;
  white-space: nowrap;
}
.speedbar a:hover { color: var(--ink); }
.speedbar [class*=fa-] {
  color: var(--accent);
  margin: 0 3px;
  font-size: 9px;
  opacity: 0.7;
}

/* === OLD DLE ELEMENTS — hide unused libs.js appended markup === */
.btn-close, #side-panel { display: none !important; }

/* === PAGINATION === */
.bottom-nav { margin-top: 20px; }
.navigation { display: flex; flex-wrap: wrap; gap: 4px; }
.navigation a, .navigation span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: background 0.15s;
}
.navigation a:hover { background: var(--cream-deep); }
.navigation span:not(.nav_ext) {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}

/* === FULL SONG PAGE === */
.full-page { padding: 0; }
.full-hero {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.full-cover {
  width: 140px; height: 140px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-deep);
}
.full-cover img { width: 100%; height: 100%; object-fit: cover; }
.full-meta { flex: 1; min-width: 200px; }
.full-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.full-title {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.2;
  margin-bottom: 14px;
}
.full-info {
  display: flex; flex-wrap: wrap; gap: 4px 20px;
  font-size: 12px; margin-bottom: 16px;
}
.full-info li { color: var(--muted); }
.full-info li strong { color: var(--ink); font-weight: 500; margin-left: 4px; }

.full-actions {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.full-play-btn, .full-dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
.full-play-btn:hover, .full-dl-btn:hover { opacity: 0.85; }
.full-play-btn {
  background: var(--ink); color: var(--cream);
}
.full-dl-btn {
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line);
}
.full-fav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 14px; color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.full-fav-btn:hover { background: var(--cream-deep); }
.full-fav-active { background: var(--cream-deep); color: var(--accent); }

/* Full page playing state */
.full-actions.js-item-played .full-play-btn,
.full-actions.js-item-stopped .full-play-btn { opacity: 0.8; }

.full-cats {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.full-cats a {
  display: inline-block; height: 28px; line-height: 26px;
  padding: 0 12px; border-radius: 999px;
  font-size: 11px; font-weight: 500;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: background 0.15s;
}
.full-cats a::before { content: '#'; margin-right: 2px; }
.full-cats a:hover { background: var(--cream-deep); color: var(--ink); }

.full-section { margin-bottom: 28px; }
.full-section-title {
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.full-lyrics {
  font-size: 15px; line-height: 2;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 20px;
}
.full-text {
  font-size: 14px; line-height: 1.8; color: var(--ink-soft);
}
.full-text p { margin-bottom: 10px; }
.full-text a { color: var(--accent); text-decoration: underline; }

/* === MINI PLAYER === */
.mini-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -8px 30px -8px rgba(28,28,26,0.35);
}
.mp-bar {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: rgba(243,237,226,0.12);
  border-radius: 999px 999px 0 0;
  cursor: pointer;
}
.mp-bar-played {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--accent);
  border-radius: 999px; pointer-events: none;
}
.mp-cover {
  width: 42px; height: 42px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(243,237,226,0.1);
  display: grid; place-items: center;
  font-size: 16px; color: rgba(243,237,226,0.6);
  flex-shrink: 0;
}
.mp-cover img { width: 100%; height: 100%; object-fit: cover; }
.mp-info { min-width: 0; }
.mp-title {
  font-size: 12px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 1px;
}
.mp-artist {
  font-size: 10px; color: rgba(243,237,226,0.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mp-ctrl {
  display: flex; align-items: center; justify-content: center; gap: 2px;
}
.mp-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
  font-size: 12px;
  transition: background 0.15s;
}
.mp-btn:hover { background: rgba(243,237,226,0.1); }
.mp-btn.mp-play {
  background: var(--cream); color: var(--ink);
  font-size: 11px;
}
.mp-btn.mp-play:hover { background: rgba(243,237,226,0.9); }
.mp-extra { display: none; }

/* === LOGIN POPUP === */
.overlay-box {
  position: fixed; z-index: 998; inset: 0;
  opacity: 0.7; background: #000; cursor: pointer;
}
.login-box {
  position: fixed; z-index: 999;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: var(--paper); padding: 28px 36px;
  width: 360px; max-width: calc(100% - 40px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: none;
}
.login-close {
  width: 28px; height: 28px; line-height: 28px; text-align: center;
  font-size: 20px; cursor: pointer;
  position: absolute; top: -34px; right: -6px; color: #fff;
}
.login-title {
  font-size: 17px; font-weight: 600;
  margin-bottom: 14px; text-align: center;
}
.login-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 0 auto 14px; text-align: center;
  line-height: 56px; font-size: 22px;
  background: var(--cream); color: var(--muted);
}
.login-input { margin-bottom: 12px; }
.login-input button { margin-left: 10px; }
.login-btm a {
  color: var(--muted); font-size: 12px;
  border-bottom: 1px dotted var(--muted);
}
.login-menu {
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-wrap: wrap;
}
.login-menu li {
  width: 50%; text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.login-menu a { display: block; padding: 10px 5px; font-size: 13px; }
.login-menu a:hover { background: var(--cream); }
.login-menu li .fa { display: none; }
.login-admin { text-align: center; margin: -6px 0 20px; font-size: 12px; }

/* INPUTS for engine forms */
input[type="text"], input[type="password"], input[type="email"], textarea, select {
  font-family: var(--font);
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 9px 13px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  outline: none;
}
input[type="text"]:focus, input[type="password"]:focus,
input[type="email"]:focus, textarea:focus {
  border-color: var(--accent);
}
input::placeholder, textarea::placeholder { color: var(--muted); font-size: 13px; }
textarea { resize: vertical; padding: 12px; }
select { width: auto; }

button[type="submit"], input[type="submit"], .button, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 18px;
  border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-size: 13px; font-weight: 500; font-family: var(--font);
  cursor: pointer; border: none;
  transition: opacity 0.15s;
}
button[type="submit"]:hover, input[type="submit"]:hover,
.button:hover, .btn:hover { opacity: 0.85; }

/* Utility */
.hidden { display: none !important; }
.ignore-select { user-select: none; -webkit-user-select: none; }
.clr::after { content: ''; display: table; clear: both; }

/* === DESKTOP LAYOUT (900px+) === */
@media (min-width: 900px) {
  .menu-btn, .close-btn, .overlay, .search-strip { display: none; }

  .topbar {
    display: block;
    padding: 14px 32px;
  }
  .topbar-inner {
    display: flex; align-items: center; gap: 20px;
    max-width: 1200px; margin: 0 auto; width: 100%;
  }
  .topbar .logo { font-size: 26px; }
  .topbar .logo-mark { width: 30px; height: 30px; font-size: 12px; }
  .topbar-search-form {
    display: flex;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    gap: 10px;
    width: 300px;
    margin-left: auto;
    margin-right: 8px;
    cursor: text;
  }
  .topbar-search-form i { font-size: 12px; color: var(--muted); }
  .topbar-search-form input {
    border: 0; background: transparent; padding: 0;
    font-size: 13px; height: auto; border-radius: 0;
    box-shadow: none !important;
    color: var(--ink); width: 100%;
  }
  .topbar-search-form input::placeholder { color: var(--muted); }
  .top-icon { width: 38px; height: 38px; }

  .layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0px 120px 0px;
    align-items: start;
  }

  .sidebar {
    position: sticky;
    top: 70px;
    transform: none;
    width: 100%; max-width: none;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    z-index: auto;
  }
  .sidebar-head { display: none; }
  .sidebar-section { padding: 22px 20px 6px; }

  .main { padding: 0; min-width: 0; }
  .main-title { font-size: 38px; }

  .tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
    border-radius: 20px;
  }
  .tr {
    grid-template-columns: 50px 1fr auto;
    gap: 14px; padding: 10px;
    border-radius: 14px;
  }
  .tr-cover { width: 50px; height: 50px; border-radius: 8px; }
  .tr-title { font-size: 15px; }

  /* Full story hero */
  .full-cover { width: 180px; height: 180px; }
  .full-title { font-size: 28px; }

  /* Mini player desktop */
  .mini-player {
    border-radius: 16px;
    max-width: 1200px;
    margin: 0 auto 14px;
    left: 0; right: 0;
    width: calc(100% - 64px);
    padding: 12px 22px;
    grid-template-columns: 46px 220px 1fr auto;
    gap: 18px;
  }
  .mp-cover { width: 46px; height: 46px; border-radius: 10px; }
  .mp-extra {
    display: flex; align-items: center; gap: 12px;
    min-width: 0;
    justify-content: flex-end;
  }
  .mp-time-wrap {
    font-size: 11px; font-weight: 500;
    color: rgba(243,237,226,0.55);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }
  .mp-vol-wrap {
    display: flex; align-items: center; gap: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(243,237,226,0.12);
  }
  .mp-vol-btn {
    font-size: 11px; color: rgba(243,237,226,0.6);
    background: none; border: none; cursor: pointer;
  }
  .mp-vol-bar {
    width: 64px; height: 3px;
    background: rgba(243,237,226,0.15);
    border-radius: 999px; position: relative;
    cursor: pointer;
  }
  .mp-vol-fill {
    position: absolute; left: 0; top: 0;
    height: 100%; background: var(--cream);
    border-radius: 999px;
    width: 70%;
  }
  .mp-dl-btn {
    font-size: 13px; color: rgba(243,237,226,0.6);
    transition: color 0.15s;
  }
  .mp-dl-btn:hover { color: var(--cream); }
}

@media (min-width: 1180px) {
  .layout { grid-template-columns: 300px 1fr; gap: 36px; }
  .main-title { font-size: 46px; }
  .tr-cover { width: 50px; height: 50px; }
  .tr { grid-template-columns: 50px 1fr auto; }
}
