.mzk-fullstory-page .mzk-main-in {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 32px;
}

.mzk-track-page {
  padding: 0 0 48px;
}

.mzk-track-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 32px 0 24px;
  align-items: start;
}

.mzk-track-hero__cover {
  width: 320px;
  max-width: 320px;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #F1F5F9, #E2E8F0);
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.mzk-track-hero__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mzk-track-cover-empty {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #94A3B8;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.mzk-track-hero__content {
  min-width: 0;
  padding-top: 8px;
}

.mzk-track-title {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--color-text-primary);
  overflow-wrap: anywhere;
  max-width: 600px;
}

.mzk-track-artist {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.mzk-track-artist__link {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.mzk-track-artist__link:hover {
  color: var(--color-primary-text);
  text-decoration: underline;
}

.mzk-verified {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-size: 12px;
  font-weight: 800;
}

.mzk-track-category {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.mzk-track-category a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--pill-bc, #E5EAF2);
  border-radius: 18px;
  background: var(--pill-bg, #fff);
  color: var(--pill-fg, #334155);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
}

.mzk-track-category a:hover {
  background: var(--pill-hover-bg, #F1F5FF);
  border-color: var(--pill-hover-bc, var(--color-primary));
  color: var(--pill-hover-fg, var(--color-primary-hover));
}

/* ── Per-pill color palette (CSS custom props set by inline JS) ── */

.mzk-track-category a[data-pill="0"] { --pill-bg: #EEF2FF; --pill-bc: #C7D2FE; --pill-fg: #4338CA; --pill-hover-bg: #E0E7FF; --pill-hover-bc: #4338CA; --pill-hover-fg: #3730A3; }
.mzk-track-category a[data-pill="1"] { --pill-bg: #FEF9C3; --pill-bc: #FDE68A; --pill-fg: #92400E; --pill-hover-bg: #FEF3C7; --pill-hover-bc: #F59E0B; --pill-hover-fg: #78350F; }
.mzk-track-category a[data-pill="2"] { --pill-bg: #ECFDF5; --pill-bc: #A7F3D0; --pill-fg: #065F46; --pill-hover-bg: #D1FAE5; --pill-hover-bc: #10B981; --pill-hover-fg: #064E3B; }
.mzk-track-category a[data-pill="3"] { --pill-bg: #FFF1F2; --pill-bc: #FECDD3; --pill-fg: #9F1239; --pill-hover-bg: #FFE4E6; --pill-hover-bc: #FB7185; --pill-hover-fg: #881337; }
.mzk-track-category a[data-pill="4"] { --pill-bg: #F0F9FF; --pill-bc: #BAE6FD; --pill-fg: #0C4A6E; --pill-hover-bg: #E0F2FE; --pill-hover-bc: #38BDF8; --pill-hover-fg: #075985; }
.mzk-track-category a[data-pill="5"] { --pill-bg: #FAF5FF; --pill-bc: #D8B4FE; --pill-fg: #6B21A8; --pill-hover-bg: #F3E8FF; --pill-hover-bc: #A855F7; --pill-hover-fg: #581C87; }
.mzk-track-category a[data-pill="6"] { --pill-bg: #FFF7ED; --pill-bc: #FDBA74; --pill-fg: #9A3412; --pill-hover-bg: #FFEDD5; --pill-hover-bc: #FB923C; --pill-hover-fg: #7C2D12; }
.mzk-track-category a[data-pill="7"] { --pill-bg: #F0FDF4; --pill-bc: #86EFAC; --pill-fg: #14532D; --pill-hover-bg: #DCFCE7; --pill-hover-bc: #4ADE80; --pill-hover-fg: #166534; }

/* ── Responsive: category pills ── */

@media (max-width: 768px) {
  .mzk-track-category {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 16px;
    padding-bottom: 2px;
  }
  .mzk-track-category::-webkit-scrollbar { display: none; }
  .mzk-track-category a { flex-shrink: 0; }
}

.mzk-track-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 32px;
}

.mzk-track-stats span,
.mzk-track-stats a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
}

.mzk-track-stats svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mzk-track-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 28px;
}

.mzk-track-actions button,
.mzk-track-actions a {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #fff;
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
}

.mzk-track-actions button:hover,
.mzk-track-actions a:hover {
  background: #F8FAFC;
}

.mzk-track-actions svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


.mzk-track-play svg {
  fill: currentColor;
  stroke: none;
}

.mzk-track-icon-btn {
  width: 44px !important;
  padding: 0 !important;
}


.mzk-quality-selector { position: relative; z-index: 30; }
.mzk-quality-selector.is-open { z-index: 60; }
.mzk-quality-selector .mzk-track-quality { white-space: nowrap; }
.mzk-quality-chevron { width: 15px !important; height: 15px !important; transition: transform .2s; }
.mzk-quality-selector.is-open .mzk-quality-chevron { transform: rotate(180deg); }
.mzk-quality-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  left: 0;
  width: 240px;
  padding: 8px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}

.mzk-quality-menu[hidden] { display: none !important; }

.mzk-track-actions .mzk-quality-option {
  width: 100%;
  height: auto !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 8px 14px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--color-text-primary) !important;
  text-align: left !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

.mzk-quality-option:hover,
.mzk-quality-option:focus-visible { background: #F8FAFC !important; outline: none; }
.mzk-quality-option small { display: block; color: #64748B; font-size: 11px; font-weight: 500; margin-top: 2px; }
.mzk-quality-option > svg { width: 18px !important; height: 18px !important; opacity: 0; color: var(--color-primary-text); }
.mzk-quality-option.is-selected { background: var(--color-primary-soft) !important; color: var(--color-primary-text) !important; }
.mzk-quality-option.is-selected > svg { opacity: 1; }
.mzk-quality-option.is-locked { text-decoration: none !important; }
.mzk-quality-option.is-locked small,
.mzk-quality-crown { color: #D97706; }
.mzk-quality-crown { font-size: 18px; }

.mzk-track-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.mzk-track-about,
.mzk-track-info-panel {
  padding: 24px;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.mzk-track-about h2,
.mzk-track-info-panel h2 {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -.01em;
}

.mzk-track-about > div {
  font-size: 15px;
  line-height: 1.7;
  color: #64748B;
}

.mzk-track-about img { max-width: 100%; height: auto; border-radius: 8px; }

.mzk-track-info { display: grid; gap: 0; }

.mzk-track-info > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #E2E8F0;
  min-height: 70px;
  align-items: center;
}

.mzk-track-info > div:last-child { border-bottom: 0; }

.mzk-track-info dt {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
}

.mzk-track-info dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  overflow-wrap: anywhere;
}

.mzk-track-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.mzk-track-section {
  padding: 24px;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.mzk-track-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.mzk-track-section__head h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.mzk-track-section__head > a {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary-text);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

.mzk-track-section__head > a:hover { color: var(--color-primary-hover); }

.mzk-listening-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.mzk-listening-grid::-webkit-scrollbar { display: none; }

.mzk-listening-item {
  min-width: 90px;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}

.mzk-listening-avatar {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-soft), #FDF2F8);
  color: var(--color-primary-text);
}

.mzk-listening-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mzk-listening-avatar svg { width: 32px; height: 32px; }
.mzk-listening-name { display: block; font-size: 12px; font-weight: 700; color: var(--color-text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mzk-listening-count { display: block; margin-top: 3px; font-size: 10px; color: #64748B; }

.mzk-related-grid { display: grid; gap: 6px; }

.mzk-related-item {
  display: grid;
  grid-template-columns: 40px 1fr auto 32px;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  transition: background .2s;
  text-decoration: none;
}

.mzk-related-item:hover { background: #F8FAFC; }

.mzk-related-info { min-width: 0; }
.mzk-related-title { display: block; font-size: 13px; font-weight: 700; color: var(--color-text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-decoration: none; }
.mzk-related-artist { display: block; margin-top: 2px; font-size: 11px; color: #64748B; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.mzk-related-play {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #F8FAFC;
  color: #64748B;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s;
}

.mzk-related-play:hover { background: var(--color-primary); color: var(--color-on-primary); }
.mzk-related-play svg { width: 16px; height: 16px; }

.mzk-related-fav button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}

.mzk-related-fav button:hover,
.mzk-related-fav button:focus-visible { background: #fef2f2; color: #ef4444; }
.mzk-related-fav button:active { transform: scale(.9); }
.mzk-related-fav button svg { width: 17px; height: 17px; }
.mzk-related-fav button svg path { fill: none; }
.mzk-related-fav button.is-active { color: #ef4444; }
.mzk-related-fav button.is-active svg path { fill: currentColor; }

/* Comment block placeholder — see new .mzk-comments block at end of file */

@media (max-width: 1100px) {
  .mzk-track-hero { grid-template-columns: 240px 1fr; gap: 32px; }
  .mzk-track-hero__cover { width: 240px; }
  .mzk-track-title { font-size: 36px; }
  .mzk-track-artist { font-size: 20px; }
}

@media (max-width: 1024px) {
  .mzk-fullstory-page .mzk-main-in { padding-inline: 24px; }
}

@media (max-width: 767px) {
  .mzk-fullstory-page .mzk-main-in { padding-inline: 16px; }
  .mzk-track-page { padding-bottom: 32px; }
  .mzk-fullstory-page .mzk-track-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 19px;
    min-height: 0;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    width: min(68vw, 260px);
    margin: 0 auto;
    border-radius: 20px;
  }

  .mzk-fullstory-page .mzk-track-hero__content {
    min-height: 0;
    align-items: center;
    text-align: center;
  }

  .mzk-fullstory-page .mzk-track-title {
    font-size: 28px;
  }

  .mzk-fullstory-page .mzk-track-artist,
  .mzk-fullstory-page .mzk-track-feedback,
  .mzk-fullstory-page .mzk-track-actions {
    justify-content: center;
  }

  .mzk-fullstory-page .mzk-track-category {
    text-align: center;
  }

  .mzk-fullstory-page .mzk-track-details {
    margin-top: 14px;
  }

  .mzk-quality-menu { left: 50%; width: min(280px, calc(100vw - 36px)); transform: translateX(-50%); }
  .mzk-fullstory-page .mzk-track-play { min-width: 160px !important; }
}

@media (max-width: 520px) {
  .mzk-fullstory-page .mzk-track-hero {
    padding: 16px;
    border-radius: 18px;
  }

  .mzk-fullstory-page .mzk-track-title {
    font-size: 24px;
  }
}

.mzk-fullstory-page .mzk-main--full > .mzk-main-in {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 40px calc(128px + env(safe-area-inset-bottom));
}

.mzk-fullstory-page .mzk-main--full > .mzk-main-in > .mzk-bread,
.mzk-fullstory-page .mzk-main--full > .mzk-main-in > .speedbar {
  min-width: 0;
  flex-wrap: wrap;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}

.mzk-fullstory-page .mzk-main--full > .mzk-main-in > .mzk-bread *,
.mzk-fullstory-page .mzk-main--full > .mzk-main-in > .speedbar * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mzk-fullstory-page .mzk-track-page {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.mzk-fullstory-page .mzk-track-hero {
  position: relative;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  min-height: 348px;
  padding: 36px 0 32px;
  align-items: center;
}

.mzk-fullstory-page .mzk-track-hero__cover {
  width: 300px;
  max-width: 320px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .15);
}

.mzk-fullstory-page .mzk-track-hero__content {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}

.mzk-fullstory-page .mzk-track-title {
  max-width: 720px;
  padding-right: 180px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
}

.mzk-fullstory-page .mzk-track-artist {
  margin-top: 14px;
  font-size: clamp(19px, 2vw, 25px);
}

.mzk-track-feedback {
  position: absolute;
  top: 42px;
  right: 0;
  display: flex;
  align-items: center;
}

/* ── YouTube-style pill rating ── */

.mzk-fb-pill {
  display: inline-flex;
  width: auto;
  min-width: 142px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #F2F2F2;
}

.mzk-fb-btn {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #4B5563;
  cursor: pointer;
  font: inherit;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transform: none;
  transition: background-color 160ms ease;
}

.mzk-fb-btn--like {
  flex: 1 1 auto;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 16px;
}

.mzk-fb-btn--dislike {
  width: 52px;
  flex: 0 0 52px;
  justify-content: center;
  padding: 0;
}

.mzk-fb-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: currentColor;
  transition: color 160ms ease, transform 280ms cubic-bezier(.34, 1.56, .64, 1);
}

.mzk-fb-count {
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.mzk-fb-divider {
  width: 1px;
  height: 24px;
  flex: 0 0 1px;
  background: #D5D7DB;
}

.mzk-fb-btn:hover {
  background: rgba(0, 0, 0, .055);
}

.mzk-fb-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.mzk-fb-btn--like.is-active,
.mzk-fb-btn--dislike.is-active {
  background: transparent;
}

.mzk-fb-btn--like.is-active .mzk-fb-icon {
  color: var(--color-primary-text);
}

.mzk-fb-btn--dislike.is-active .mzk-fb-icon {
  color: #D14B63;
}

.mzk-fb-btn--like.is-active .mzk-fb-count {
  color: var(--color-text-primary);
}

.mzk-fb-btn:active {
  transform: none;
}

.mzk-fb-btn:active .mzk-fb-icon {
  animation: mzk-fb-bounce 280ms cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes mzk-fb-bounce {
  0% { transform: scale(1); }
  30% { transform: scale(.8); }
  64% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.mzk-fb-btn::after {
  position: absolute;
  top: 50%;
  left: 27px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.35);
}

.mzk-fb-btn--dislike::after {
  left: 50%;
}

.mzk-fb-btn--like:active::after {
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), .14) 0%, rgba(var(--color-primary-rgb), 0) 70%);
  animation: mzk-fb-ripple 300ms ease-out;
}

.mzk-fb-btn--dislike:active::after {
  background: radial-gradient(circle, rgba(209, 75, 99, .12) 0%, rgba(209, 75, 99, 0) 70%);
  animation: mzk-fb-ripple 300ms ease-out;
}

@keyframes mzk-fb-ripple {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(.35); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.35); }
}

.mzk-fullstory-page .mzk-fb-btn--like.is-celebrating .mzk-fb-icon {
  animation: mzk-like-celebrate-icon 520ms cubic-bezier(.2, .8, .2, 1);
}

.mzk-like-confetti {
  position: fixed;
  z-index: 10050;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.mzk-like-confetti__piece,
.mzk-like-confetti__ring {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.mzk-like-confetti__piece {
  width: 6px;
  height: 11px;
  border-radius: 2px;
  background: var(--piece-color, #ffa200);
  box-shadow: 0 0 8px color-mix(in srgb, var(--piece-color, #ffa200) 56%, transparent);
  opacity: 0;
  animation: mzk-like-confetti-piece 760ms cubic-bezier(.15, .72, .2, 1) var(--delay, 0ms) forwards;
}

.mzk-like-confetti__piece.is-round {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.mzk-like-confetti__ring {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 162, 0, .8);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.25);
  animation: mzk-like-confetti-ring 520ms ease-out forwards;
}

@keyframes mzk-like-celebrate-icon {
  0%, 100% { transform: scale(1) rotate(0); }
  30% { transform: scale(.72) rotate(-10deg); }
  62% { transform: scale(1.35) rotate(8deg); }
}

@keyframes mzk-like-confetti-piece {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.2) rotate(0); }
  14% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(.78) rotate(var(--rot)); }
}

@keyframes mzk-like-confetti-ring {
  0% { opacity: .95; transform: translate(-50%, -50%) scale(.25); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.45); }
}

@media (prefers-reduced-motion: reduce) {
  .mzk-fb-btn:active .mzk-fb-icon,
  .mzk-fb-btn:active::after,
  .mzk-fullstory-page .mzk-fb-btn--like.is-celebrating .mzk-fb-icon,
  .mzk-like-confetti__piece,
  .mzk-like-confetti__ring {
    animation: none;
  }
}

.mzk-fullstory-page .mzk-track-actions {
  margin-top: 30px;
}

.mzk-fullstory-page .mzk-track-play,
.mzk-fullstory-page .mzk-track-download-main {
  min-width: 148px;
}

.mzk-fullstory-page .mzk-track-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 38px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border, #e2e8f0);
  border-bottom: 1px solid var(--color-border, #e2e8f0);
  background: linear-gradient(90deg, rgba(var(--color-primary-rgb), .025), rgba(124, 58, 237, .045), rgba(var(--color-primary-rgb), .025));
}

.mzk-track-stat {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 4px 24px;
}

.mzk-track-stat + .mzk-track-stat::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 1px;
  background: var(--color-border, #e2e8f0);
  content: "";
}

.mzk-track-stat > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--color-primary, var(--color-primary));
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mzk-track-stat > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.mzk-track-stat strong {
  color: var(--color-text-primary, #111827);
  font-size: 17px;
  line-height: 1.15;
}

.mzk-track-stat span {
  color: var(--color-text-secondary, #64748b);
  font-size: 12px;
  line-height: 1.2;
}


.mzk-track-story {
  color: var(--color-text-secondary, #64748b);
  font-size: 15px;
  line-height: 1.75;
}

.mzk-track-story > :first-child,
.mzk-track-story__full > :first-child {
  margin-top: 0;
}

.mzk-track-story > :last-child,
.mzk-track-story__full > :last-child {
  margin-bottom: 0;
}

.mzk-track-story [hidden] {
  display: none !important;
}

.mzk-track-story-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary, var(--color-primary));
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.mzk-track-story-toggle:hover,
.mzk-track-story-toggle:focus-visible {
  color: var(--color-primary-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.mzk-track-story-toggle[hidden] {
  display: none;
}

.mzk-track-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border, #e2e8f0);
}

.mzk-track-share > span {
  width: 100%;
  margin-bottom: 2px;
  color: var(--color-text-primary, #111827);
  font-size: 13px;
  font-weight: 700;
}

.mzk-track-share a,
.mzk-track-share button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 10px;
  background: var(--color-bg-surface, #fff);
  color: var(--color-text-primary, #111827);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.mzk-track-share a:hover,
.mzk-track-share button:hover,
.mzk-track-share a:focus-visible,
.mzk-track-share button:focus-visible {
  border-color: var(--color-primary, var(--color-primary));
  color: var(--color-primary, var(--color-primary));
  outline: none;
}

.mzk-fullstory-page .mzk-track-info > div {
  grid-template-columns: minmax(110px, .7fr) minmax(0, 1.3fr);
  padding: 11px 0;
}

.mzk-fullstory-page .mzk-listening-grid {
  display: grid;
  gap: 5px;
  overflow: visible;
  padding: 0;
}

.mzk-fullstory-page .mzk-listening-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 2px 11px;
  align-items: center;
  padding: 7px 8px;
  border-radius: 10px;
  text-align: left;
}

.mzk-fullstory-page .mzk-listening-item:hover,
.mzk-fullstory-page .mzk-listening-item:focus-visible {
  background: var(--color-bg-muted, #f8fafc);
  outline: none;
}

.mzk-fullstory-page .mzk-listening-avatar {
  width: 44px;
  height: 44px;
  grid-row: 1 / span 2;
  margin: 0;
  border-radius: 9px;
}

.mzk-fullstory-page .mzk-listening-name {
  align-self: end;
  font-size: 13px;
}

.mzk-fullstory-page .mzk-listening-count {
  align-self: start;
  margin-top: 0;
  font-size: 11px;
}

.mzk-fullstory-page .mzk-related-grid {
  gap: 5px;
}

.mzk-fullstory-page .mzk-related-item {
  grid-template-columns: 44px minmax(0, 1fr) auto 40px;
  padding: 7px 8px;
}


.mzk-fullstory-page .mzk-track-actions button:focus-visible,
.mzk-fullstory-page .mzk-track-actions a:focus-visible,
.mzk-fullstory-page .mzk-quality-option:focus-visible {
  outline: 3px solid rgba(var(--color-primary-rgb), .25);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .mzk-fullstory-page .mzk-main--full > .mzk-main-in {
    padding-inline: 28px;
  }

  .mzk-fullstory-page .mzk-track-hero {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
    min-height: 0;
    align-items: center;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    width: 300px;
  }

  .mzk-fullstory-page .mzk-track-hero__content {
    min-height: 0;
  }

  .mzk-fullstory-page .mzk-track-title {
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  .mzk-fullstory-page .mzk-track-title {
    padding-right: 0;
  }

  .mzk-track-feedback {
    position: static;
    margin-top: 20px;
  }

}

@media (max-width: 767px) {
  .mzk-fullstory-page .mzk-main--full > .mzk-main-in {
    padding-inline: 16px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .mzk-fullstory-page .mzk-track-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding-top: 22px;
    justify-items: center;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    width: min(75vw, 280px);
  }

  .mzk-fullstory-page .mzk-track-hero__content {
    width: 100%;
    min-height: 0;
    align-items: center;
    text-align: center;
  }

  .mzk-fullstory-page .mzk-track-title {
    width: 100%;
    max-width: none;
    font-size: clamp(22px, 7vw, 32px);
    padding-right: 0;
    text-align: center;
  }

  .mzk-fullstory-page .mzk-track-artist {
    justify-content: center;
  }

  .mzk-fullstory-page .mzk-track-actions,
  .mzk-track-feedback {
    justify-content: center;
  }

  .mzk-fullstory-page .mzk-track-stats {
    margin-bottom: 30px;
    padding: 16px 0;
  }

  .mzk-track-stat {
    gap: 8px;
    padding-inline: 10px;
  }

  .mzk-track-stat > svg {
    width: 20px;
    height: 20px;
  }

  .mzk-track-stat strong {
    font-size: 15px;
  }

  .mzk-track-stat span {
    font-size: 10px;
  }

  .mzk-fullstory-page .mzk-track-related,
  .mzk-fullstory-page .mzk-track-details {
    margin-bottom: 34px;
  }
}

@media (max-width: 520px) {
  .mzk-fullstory-page .mzk-track-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mzk-fullstory-page .mzk-track-play,
  .mzk-fullstory-page .mzk-track-download-main,
  .mzk-fullstory-page .mzk-quality-selector {
    flex: 1 1 calc(50% - 4px);
  }

  .mzk-fullstory-page .mzk-quality-selector .mzk-track-quality {
    width: 100%;
    padding-inline: 12px;
  }


  .mzk-fullstory-page .mzk-track-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .mzk-track-stat {
    justify-content: flex-start;
    width: min(240px, 100%);
    margin-inline: auto;
    padding-inline: 18px;
  }

  .mzk-track-stat + .mzk-track-stat::before {
    top: -7px;
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    height: 1px;
  }

  .mzk-fullstory-page .mzk-track-about h2,
  .mzk-fullstory-page .mzk-track-info-panel h2,
  .mzk-fullstory-page .mzk-track-section__head h2 {
    font-size: 19px;
  }

  .mzk-fullstory-page .mzk-track-info > div {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
  }

  .mzk-track-share a,
  .mzk-track-share button {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }

  .mzk-fullstory-page .mzk-related-item {
    grid-template-columns: 42px minmax(0, 1fr) 36px;
  }

  .mzk-fullstory-page .mzk-related-dur {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mzk-fb-btn,
  .mzk-fullstory-page .mzk-track-actions button,
  .mzk-fullstory-page .mzk-track-actions a {
    transition: none !important;
  }
  .mzk-fb-btn:active .mzk-fb-icon {
    animation: none;
  }
}



@media (min-width: 1200px) {

  .mzk-fullstory-page .mzk-main--full > .mzk-main-in {
    max-width: none;
    margin-inline: 0;
    padding-inline: 24px;
  }

  .mzk-fullstory-page .mzk-track-page {
    margin-inline: 0;
  }
}

@media (max-width: 1199px) {
}

/* Fullstory compact artist-reference layout 2026-07 */
.mzk-fullstory-page .mzk-track-hero {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  min-height: 0;
  padding: 36px 0 32px;
  align-items: center;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-track-hero__cover {
  width: 300px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
}

.mzk-fullstory-page .mzk-track-hero__content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-top: 0;
}

.mzk-fullstory-page .mzk-track-title {
  max-width: 720px;
  padding-right: 80px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.mzk-fullstory-page .mzk-track-artist {
  justify-content: flex-start;
  margin-top: 10px;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.3;
}

.mzk-fullstory-page .mzk-track-tech {
  display: block;
  margin: 10px 0 0;
  padding: 0;
}

.mzk-fullstory-page .mzk-track-tech:empty {
  display: none;
}

.mzk-fullstory-page .mzk-track-tech__item {
  display: inline;
}

.mzk-fullstory-page .mzk-track-tech dt {
  display: inline;
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
}

.mzk-fullstory-page .mzk-track-tech dd {
  display: inline;
  margin: 0 14px 0 3px;
  font-size: 12px;
  font-weight: 700;
  color: #172033;
  white-space: nowrap;
}

.mzk-fullstory-page .mzk-track-feedback {
  position: static;
  justify-content: flex-start;
  margin-top: 14px;
}

.mzk-fullstory-page .mzk-fb-pill {
  height: 44px;
  border-radius: 22px;
}

.mzk-fullstory-page .mzk-track-actions {
  justify-content: flex-start;
  margin-top: 20px;
}


.mzk-fullstory-page .mzk-track-actions > .mzk-track-icon-btn {
  flex: 0 0 56px;
  height: 56px;
  margin: 0;
}

.mzk-quality-selector .mzk-track-quality {
  min-width: 150px;
  height: 56px;
  padding: 0 18px;
}


.mzk-fullstory-page .mzk-favorite-btn .c-i--heart {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}



.mzk-fullstory-page .mzk-track-story {
  font-size: 14px;
  line-height: 1.58;
}


@media (min-width: 768px) and (max-width: 1024px) {
  .mzk-fullstory-page .mzk-track-hero {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 24px;
    padding: 0;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    width: 200px;
  }

  .mzk-fullstory-page .mzk-track-hero__content {
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  .mzk-fullstory-page .mzk-track-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 19px 16px;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    width: min(76vw, 320px);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .10);
  }

  .mzk-fullstory-page .mzk-track-hero__content {
    display: flex;
    width: 100%;
    min-height: 0;
    align-items: center;
    text-align: center;
  }

  .mzk-fullstory-page .mzk-track-title {
    order: 1;
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(26px, 7.2vw, 28px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mzk-fullstory-page .mzk-track-artist {
    order: 2;
    justify-content: center;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.3;
  }

  .mzk-fullstory-page .mzk-track-artist__link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
  }

  .mzk-fullstory-page .mzk-verified {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .mzk-fullstory-page .mzk-track-category {
    order: 3;
    width: calc(100% + 32px);
    margin: 18px -16px 0;
    padding: 0 20px 2px;
    box-sizing: border-box;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    text-align: left;
  }

  .mzk-fullstory-page .mzk-track-category::-webkit-scrollbar {
    display: none;
  }

  .mzk-fullstory-page .mzk-track-category a {
    flex: 0 0 auto;
    height: 36px;
    scroll-snap-align: start;
  }

  .mzk-fullstory-page .mzk-track-tech {
    order: 4;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 20px 0 0;
    padding: 1px;
    overflow: hidden;
    border-radius: 14px;
    background: #e2e8f0;
  }

  .mzk-fullstory-page .mzk-track-tech__item {
    display: flex;
    min-width: 0;
    min-height: 38px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5px 10px;
    box-sizing: border-box;
    background: #f8fafc;
    text-align: left;
  }

  .mzk-fullstory-page .mzk-track-tech__item dt {
    order: 2;
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
  }

  .mzk-fullstory-page .mzk-track-tech__item dd {
    order: 1;
    max-width: 100%;
    margin: 0 0 1px;
    overflow: hidden;
    color: #172033;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mzk-fullstory-page .mzk-track-actions {
    order: 5;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(21, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 14px;
    margin-top: 22px;
  }

  .mzk-fullstory-page .mzk-track-play {
    width: 100%;
    min-width: 0 !important;
    height: 54px !important;
    grid-column: 1 / 12;
    grid-row: 1;
    padding-inline: 12px;
  }

  .mzk-fullstory-page .mzk-quality-selector {
    width: 100%;
    min-width: 0;
    grid-column: 13 / 22;
    grid-row: 1;
  }

  .mzk-fullstory-page .mzk-quality-selector .mzk-track-quality {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding-inline: 10px;
  }

  .mzk-fullstory-page .mzk-quality-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }


  .mzk-fullstory-page .mzk-track-feedback {
    position: static;
    order: 6;
    justify-content: center;
    margin-top: 16px;
  }

  .mzk-fb-pill {
    height: 44px;
    border-radius: 22px;
  }

  .mzk-fb-icon {
    width: 22px;
    height: 22px;
  }

  .mzk-fb-count {
    font-size: 14px;
  }

  .mzk-fullstory-page .mzk-track-details {
    margin-top: 14px;
  }
}

@media (max-width: 520px) {
  .mzk-fullstory-page .mzk-track-hero {
    padding: 16px;
    border-radius: 18px;
  }

}

/* Fullstory thematic artist slider 2026-07 */
.mzk-fullstory-page .mzk-fullstory-thematic-artists {
  min-width: 0;
  grid-column: 1 / -1;
  overflow: visible;
}

.mzk-fullstory-page .mzk-track-related > .mzk-fullstory-thematic-artists,
.mzk-fullstory-page .mzk-track-related > .mzk-fullstory-thematic-artists:first-child,
.mzk-fullstory-page .mzk-track-related > .mzk-fullstory-thematic-artists:last-child {
  padding: 30px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-track-related > .mzk-fullstory-thematic-artists:first-child {
  padding-top: 0;
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists > .mzk-track-section__head {
  margin-bottom: 20px;
}

.mzk-fullstory-page .mzk-thematic-artists__slider-wrap {
  position: relative;
  min-width: 0;
}

.mzk-fullstory-page .mzk-thematic-artists__slider {
  min-width: 0;
  overflow: hidden;
}

.mzk-fullstory-page .mzk-thematic-artists__rail {
  display: flex;
  min-width: 0;
  gap: 16px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.mzk-fullstory-page .mzk-thematic-artists__rail::-webkit-scrollbar {
  display: none;
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card {
  position: relative;
  width: 160px;
  min-width: 160px;
  flex: 0 0 160px;
  scroll-snap-align: start;
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card > a {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  background: transparent;
  box-shadow: none;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card > a:focus-visible {
  border-radius: 12px;
  outline: 2px solid var(--color-primary, var(--color-primary));
  outline-offset: 3px;
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card__cover {
  position: relative;
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 0 10px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transition: transform .3s ease;
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card:hover .mzk-artist-card__cover img {
  transform: scale(1.05);
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card strong {
  display: block;
  width: 100%;
  max-width: 160px;
  margin: 0;
  overflow: hidden;
  color: var(--color-text-primary, #1a1a1a);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mzk-fullstory-page .mzk-thematic-artists__arrow {
  position: absolute;
  top: 80px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mzk-fullstory-page .mzk-thematic-artists__arrow--prev {
  left: -22px;
}

.mzk-fullstory-page .mzk-thematic-artists__arrow--next {
  right: -22px;
}

.mzk-fullstory-page .mzk-thematic-artists__arrow:hover,
.mzk-fullstory-page .mzk-thematic-artists__arrow:focus-visible {
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
  transform: translateY(-50%) scale(1.08);
}

.mzk-fullstory-page .mzk-thematic-artists__arrow:active {
  transform: translateY(-50%) scale(.96);
}

.mzk-fullstory-page .mzk-thematic-artists__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.mzk-fullstory-page .mzk-thematic-artists__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767px) {
  .mzk-fullstory-page .mzk-fullstory-thematic-artists > .mzk-track-section__head {
    margin-bottom: 16px;
  }

  .mzk-fullstory-page .mzk-thematic-artists__arrow {
    display: none !important;
  }

  .mzk-fullstory-page .mzk-thematic-artists__slider-wrap {
    margin: 0 -24px;
    padding: 0 24px;
  }

  .mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card {
    width: 120px;
    min-width: 120px;
    flex-basis: 120px;
  }

  .mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card__cover {
    width: 120px;
    height: 120px;
  }

  .mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card strong {
    max-width: 120px;
  }
}

@media (max-width: 390px) {
  .mzk-fullstory-page .mzk-thematic-artists__rail {
    gap: 12px;
  }

  .mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card {
    width: 100px;
    min-width: 100px;
    flex-basis: 100px;
  }

  .mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card__cover {
    width: 100px;
    height: 100px;
  }

  .mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card strong {
    max-width: 100px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mzk-fullstory-page .mzk-thematic-artists__rail {
    scroll-behavior: auto;
  }

  .mzk-fullstory-page .mzk-thematic-artists__arrow,
  .mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card__cover img {
    transition: none;
  }
}

/* T3 DownloadButton 2026-07 */
.mzk-fullstory-page .mzk-download-control {
  position: relative;
  z-index: 35;
  flex: 0 0 44px;
}

.mzk-fullstory-page .mzk-download-control.is-open {
  z-index: 70;
}

.mzk-fullstory-page .mzk-track-actions .mzk-download-trigger {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-download-trigger__surface {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #fff;
  color: #6b7280;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.mzk-fullstory-page .mzk-download-trigger:hover .mzk-download-trigger__surface,
.mzk-fullstory-page .mzk-download-trigger:focus-visible .mzk-download-trigger__surface {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  color: var(--color-primary-text);
  transform: scale(1.05);
}

.mzk-fullstory-page .mzk-download-trigger:focus-visible {
  outline: 3px solid rgba(var(--color-primary-rgb), .25);
  outline-offset: 2px;
}

.mzk-fullstory-page .mzk-download-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mzk-fullstory-page .mzk-download-icon--complete,
.mzk-fullstory-page .mzk-download-loader {
  display: none;
}

.mzk-fullstory-page .mzk-download-control.is-loading .mzk-download-trigger__surface,
.mzk-fullstory-page .mzk-download-control.is-complete .mzk-download-trigger__surface {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-on-primary);
}

.mzk-fullstory-page .mzk-download-control.is-loading .mzk-download-icon--idle,
.mzk-fullstory-page .mzk-download-control.is-complete .mzk-download-icon--idle {
  display: none;
}

.mzk-fullstory-page .mzk-download-control.is-loading .mzk-download-loader {
  width: 18px;
  height: 18px;
  display: block;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, .42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mzk-download-spin .7s linear infinite;
}

.mzk-fullstory-page .mzk-download-control.is-complete .mzk-download-icon--complete {
  display: block;
}

.mzk-fullstory-page .mzk-download-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  right: 0;
  width: 260px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .14);
  animation: mzk-download-menu-in .2s ease both;
}

.mzk-fullstory-page .mzk-download-menu[hidden] {
  display: none !important;
}

.mzk-fullstory-page .mzk-download-menu__title {
  padding: 8px 10px 7px;
  color: var(--color-text-primary, #111827);
  font-size: 13px;
  font-weight: 800;
}

.mzk-fullstory-page .mzk-track-actions .mzk-download-option {
  width: 100%;
  min-height: 52px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--color-text-primary, #111827);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-track-actions .mzk-download-option:hover,
.mzk-fullstory-page .mzk-track-actions .mzk-download-option:focus-visible {
  background: #f8fafc;
  color: var(--color-primary-text);
  outline: none;
}

.mzk-fullstory-page .mzk-download-option strong,
.mzk-fullstory-page .mzk-download-option small {
  display: block;
}

.mzk-fullstory-page .mzk-download-option small {
  margin-top: 2px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 500;
}

.mzk-fullstory-page .mzk-download-option > svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mzk-fullstory-page .mzk-download-option.is-locked small,
.mzk-fullstory-page .mzk-download-crown {
  color: #d97706;
}

.mzk-fullstory-page .mzk-download-crown {
  font-size: 18px;
}

.mzk-fullstory-page .mzk-download-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@keyframes mzk-download-spin {
  to { transform: rotate(360deg); }
}

@keyframes mzk-download-menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Download tooltip — shows "Завантажити MP3" on hover */
.mzk-fullstory-page .mzk-download-trigger {
  position: relative;
}

.mzk-fullstory-page .mzk-download-trigger::after {
  content: 'Завантажити MP3';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 8px;
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.mzk-fullstory-page .mzk-download-trigger:hover::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .mzk-fullstory-page .mzk-download-trigger::after {
    display: none;
  }

  .mzk-fullstory-page .mzk-track-actions .mzk-download-trigger,
  .mzk-fullstory-page .mzk-download-trigger__surface {
    width: 46px;
    height: 46px;
  }

  .mzk-fullstory-page .mzk-quality-menu {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    left: 16px;
    width: auto;
    max-height: calc(100dvh - 124px - env(safe-area-inset-bottom));
    box-sizing: border-box;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: none;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 520px) {
  .mzk-fullstory-page .mzk-download-trigger__surface {
    width: 46px;
    height: 46px;
  }

  .mzk-fullstory-page .mzk-download-icon {
    width: 16px;
    height: 16px;
  }

  .mzk-fullstory-page .mzk-download-menu {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    left: 16px;
    width: auto;
    max-height: calc(100vh - 124px);
    max-height: calc(100dvh - 124px - env(safe-area-inset-bottom));
    box-sizing: border-box;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

}

@media (prefers-reduced-motion: reduce) {
  .mzk-fullstory-page .mzk-download-trigger__surface {
    transition: none;
  }

  .mzk-fullstory-page .mzk-download-menu {
    animation: none;
  }
}


/* ═══════════════════════════════════════════════
   T3 Comment Block — Music-service style
   ═══════════════════════════════════════════════ */

/* ── Section wrapper ── */
.mzk-comments {
  margin-top: 0;
}

.mzk-comments__title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary, #111827);
}

.mzk-comments__title-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--color-text-secondary, #64748b);
}

.mzk-comments__count {
  display: inline-grid;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-bg-muted, #f5f6fa);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary, #64748b);
}

.mzk-comments__empty {
  display: grid;
  min-height: 190px;
  margin-top: 20px;
  padding: 42px 20px;
  place-items: center;
  align-content: center;
  gap: 14px;
  border-top: 1px solid var(--color-border, #e4e6ec);
  color: var(--color-text-secondary, #64748b);
  text-align: center;
}

.mzk-comments__empty svg {
  width: 42px;
  height: 42px;
  color: var(--color-text-tertiary, #b4b8c4);
}

.mzk-comments__empty p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.mzk-comments .mzk-cf__textarea {
  min-height: 96px;
}

/* ── Comment form ── */
.mzk-cf {
  margin-bottom: 28px;
}

.mzk-cf__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mzk-cf__avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-muted, #f5f6fa);
}

.mzk-cf__avatar--input {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.mzk-cf__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary, #1e2638);
}

.mzk-cf__guest {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mzk-cf__guest-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border, #e4e6ec);
  border-radius: 50%;
  background: var(--color-bg-muted, #f5f6fa);
  color: var(--color-text-secondary, #8b90a0);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.mzk-cf__guest-avatar svg {
  width: 20px;
  height: 20px;
}

.mzk-cf__guest-avatar [data-guest-initials] {
  display: none;
}

.mzk-cf__guest-avatar.is-named {
  color: #fff;
  background: var(--mzk-avatar-bg, #475569);
  border-color: transparent;
}

.mzk-cf__guest-avatar.is-named svg {
  display: none;
}

.mzk-cf__guest-avatar.is-named [data-guest-initials] {
  display: inline;
}

.mzk-cf__guest-save {
  min-width: 110px;
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: #ffa200;
  color: #0b1118;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: filter .16s ease, transform .16s ease;
}

.mzk-cf__guest .mzk-cf__input {
  height: 44px;
}

.mzk-cf__guest-save:hover {
  filter: brightness(1.06);
}

.mzk-cf__guest-save:active {
  transform: scale(.97);
}

.mzk-cf__input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--color-border, #e4e6ec);
  border-radius: 12px;
  background: var(--color-bg-muted, #f5f6fa);
  color: var(--color-text-primary, #1e2638);
  font: inherit;
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  box-sizing: border-box;
}

.mzk-cf__input::placeholder {
  color: var(--color-text-tertiary, #b4b8c4);
}

.mzk-cf__input:focus {
  border-color: var(--color-primary, #5b21ed);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 91,33,237), .12);
  background: var(--color-bg-app, #fff);
}

.mzk-cf__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mzk-cf__field {
  flex: 1;
  min-width: 0;
}

.mzk-cf__textarea {
  width: 100%;
  min-height: 48px;
  max-height: 180px;
  padding: 12px 14px;
  border: 1px solid var(--color-border, #e4e6ec);
  border-radius: 12px;
  background: var(--color-bg-muted, #f5f6fa);
  color: var(--color-text-primary, #1e2638);
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: none;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
}

.mzk-cf__textarea::placeholder {
  color: var(--color-text-tertiary, #b4b8c4);
}

.mzk-cf__textarea:focus {
  border-color: var(--color-primary, #5b21ed);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 91,33,237), .12);
  background: var(--color-bg-app, #fff);
}

.mzk-cf__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  height: 40px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: var(--color-primary, #5b21ed);
  color: var(--color-on-primary);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, transform .1s ease;
}

.mzk-cf__submit svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.mzk-cf__submit:hover {
  background: var(--color-primary-hover, #4c1dca);
}

.mzk-cf__submit:active {
  transform: scale(.97);
}

.mzk-cf__submit:disabled {
  background: var(--color-text-tertiary, #b4b8c4);
  cursor: default;
  transform: none;
}

.mzk-cf__subscribe {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--color-text-secondary, #8b90a0);
  font-size: 12px;
  cursor: pointer;
}

.mzk-cf__subscribe input[type="checkbox"] {
  accent-color: var(--color-primary, #5b21ed);
}

.mzk-cf__avatar-wrap {
  flex: 0 0 40px;
}

.mzk-cf__avatar-wrap img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-muted, #f5f6fa);
}

.mzk-cf__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.mzk-cf__counter {
  margin-right: auto;
  color: var(--color-text-tertiary, #b4b8c4);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.mzk-cf__captcha {
  min-width: 0;
  margin-top: 14px;
}

.mzk-cf__captcha--code {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.mzk-cf__captcha-image,
.mzk-cf__captcha-image a,
.mzk-cf__captcha-image #dle-captcha {
  display: block;
  line-height: 0;
}

.mzk-cf__captcha-image img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: 80px;
  border: 1px solid var(--color-border, #e4e6ec);
  border-radius: 12px;
  object-fit: cover;
}

.mzk-cf__captcha-field,
.mzk-cf__captcha--question {
  display: grid;
  gap: 7px;
  color: var(--color-text-secondary, #8b90a0);
  font-size: 12px;
  font-weight: 650;
}

.mzk-cf__captcha-field {
  width: min(280px, 100%);
}

.mzk-cf__captcha--question {
  max-width: 520px;
}

.mzk-cf__captcha--service {
  max-width: 100%;
  overflow-x: auto;
}

.mzk-cf__captcha-question {
  line-height: 1.45;
}

.mzk-cmts__load-more {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border: 1px dashed var(--color-border, #e4e6ec);
  border-radius: 12px;
  background: transparent;
  color: var(--color-text-secondary, #8b90a0);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.mzk-cmts__load-more:hover,
.mzk-cmts__load-more:focus-visible {
  color: var(--color-primary, #5b21ed);
  border-color: var(--color-primary, #5b21ed);
  background: rgba(var(--color-primary-rgb), .04);
  outline: none;
}

.mzk-cmts__load-more:disabled {
  opacity: .6;
  cursor: default;
  pointer-events: none;
}

/* ── Comments list ── */
.mzk-cmts {
  display: flex;
  flex-direction: column;
}

.mzk-comments:not(.mzk-comments--empty) .mzk-cmts {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border, #e4e6ec);
}

/* ── DLE tree-comments wrapper resets ── */
#dlemasscomments,
#dle-comments-list {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

#dle-comments-list {
  display: flex;
  flex-direction: column;
}

.comments-tree-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comments-tree-item {
  list-style: none;
  padding: 0;
}

.comments-tree-item > .comments-tree-list {
  margin: 0 0 0 52px;
  padding: 0 0 0 18px;
  border-left: 1px solid var(--color-border, #e4e6ec);
}

#dle-comments-list > .comments-tree-list + .comments-tree-list {
  margin-top: 0;
  padding-top: 0;
}

#dle-ajax-comments {
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

/* ── Single comment ── */
.mzk-cmt {
  display: flex;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border, #e4e6ec);
}

.comments-tree-item > .comments-tree-list .mzk-cmt {
  padding: 14px 0;
}

.mzk-cmts .comments-tree-item:first-child > .mzk-cmt,
.mzk-cmts > .mzk-cmt:first-child {
  padding-top: 0;
}

.mzk-cmts .comments-tree-item:last-child > .mzk-cmt,
.mzk-cmts > .mzk-cmt:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Avatar */
.mzk-cmt__avatar {
  flex: 0 0 40px;
}

.mzk-cmt__avatar img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-muted, #f5f6fa);
}

.mzk-cmt__avatar-fallback {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--mzk-avatar-bg, #475569);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

/* Body */
.mzk-cmt__body {
  flex: 1;
  min-width: 0;
}

/* Heading */
.mzk-cmt__heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-primary, #1e2638);
}

/* Header */
.mzk-cmt__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.mzk-cmt__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary, #1e2638);
  text-decoration: none;
}

.mzk-cmt__author:hover {
  color: var(--color-primary, #5b21ed);
}

.mzk-cmt__author a {
  color: inherit;
  text-decoration: none;
}

.mzk-cmt__author a:hover {
  color: var(--color-primary, #5b21ed);
}

.mzk-cmt__date {
  font-size: 13px;
  color: var(--color-text-secondary, #8b90a0);
}

/* Text */
.mzk-cmt__text {
  margin-top: 6px;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-primary, #1e2638);
  overflow-wrap: anywhere;
}

.mzk-cmt__text img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 8px;
}

/* Actions */
.mzk-cmt__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.mzk-cmt__spacer {
  flex: 1;
}

.mzk-cmt__action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-secondary, #8b90a0);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color .15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.mzk-cmt__action:hover,
.mzk-cmt__action:focus-visible {
  color: var(--color-primary, #5b21ed);
  outline: none;
}

.mzk-cmt__action svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.mzk-cmt__like svg {
  width: 15px;
  height: 15px;
}

.mzk-cmt__like-val {
  font-variant-numeric: tabular-nums;
}

.mzk-cmt__like.is-active {
  color: var(--color-success, #22c55e);
}

.mzk-cmt__like.is-active svg {
  fill: currentColor;
  stroke: currentColor;
}

.mzk-cmt__actions button:focus-visible {
  outline: 2px solid var(--color-primary, #5b21ed);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Nested replies */
.comments-tree-item > .comments-tree-list .mzk-cmt__avatar img,
.comments-tree-item > .comments-tree-list .mzk-cmt__avatar-fallback {
  width: 32px;
  height: 32px;
}

.comments-tree-item > .comments-tree-list .mzk-cmt__avatar-fallback {
  font-size: 12px;
}

.comments-tree-item > .comments-tree-list .mzk-cmt__author {
  font-size: 13px;
}

.comments-tree-item > .comments-tree-list .mzk-cmt__date {
  font-size: 12px;
}

.comments-tree-item > .comments-tree-list .mzk-cmt__text {
  font-size: 14px;
}

/* ── Mobile adjustments ── */
@media (max-width: 767px) {
  .mzk-comments__title {
    font-size: 18px;
  }

  .mzk-comments__empty {
    min-height: 160px;
    padding: 34px 16px;
  }

  .mzk-comments .mzk-cf__textarea {
    min-height: 88px;
  }

  .mzk-cf__guest {
    grid-template-columns: 40px minmax(0,1fr) auto;
    gap: 8px;
  }

  .mzk-cf__guest-avatar {
    width: 40px;
    height: 40px;
  }

  .mzk-cf__guest-save {
    min-width: 96px;
    padding-inline: 14px;
  }

  .mzk-cf__row {
    flex-wrap: wrap;
  }

  .mzk-cf__avatar-wrap {
    flex: 0 0 36px;
  }

  .mzk-cf__avatar-wrap img {
    width: 36px;
    height: 36px;
  }

  .mzk-cf__footer {
    justify-content: stretch;
  }

  .mzk-cf__submit {
    flex: 1;
    width: 100%;
    min-height: 44px;
    margin-top: 0;
  }

  .mzk-cmt {
    gap: 10px;
    padding: 16px 0;
  }

  .mzk-cmt__avatar,
  .mzk-cmt__avatar img,
  .mzk-cmt__avatar-fallback {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .mzk-cmt__avatar-fallback {
    font-size: 13px;
  }

  .mzk-cmt__author {
    font-size: 13px;
  }

  .mzk-cmt__date {
    font-size: 12px;
  }

  .mzk-cmt__text {
    font-size: 14px;
  }

  .comments-tree-item > .comments-tree-list {
    margin-left: 36px;
    padding-left: 12px;
  }
}

@media (max-width: 479px) {
  .comments-tree-item > .comments-tree-list {
    margin-left: 24px;
    padding-left: 10px;
  }
}


.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn {
  position: relative;
  overflow: visible;
  border-radius: 50%;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}


.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(236, 64, 122, .18);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(.35);
}

.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn.is-pending.is-active .c-i--heart {
  animation: mzk-fullstory-heart-in .28s ease both;
}

.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn.is-pending.is-active::after {
  animation: mzk-fullstory-heart-ripple .3s ease-out both;
}

.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn.is-pending:not(.is-active) .c-i--heart {
  animation: mzk-fullstory-heart-out .18s ease both;
}


.mzk-fullstory-page .mzk-track-actions .mzk-library-add-btn.is-just-added svg {
  animation: mzk-fullstory-playlist-added .28s ease both;
}


@keyframes mzk-fullstory-heart-in {
  0% { transform: scale(1); }
  35% { transform: scale(.85); }
  72% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes mzk-fullstory-heart-out {
  0% { transform: scale(1); }
  50% { transform: scale(.92); }
  100% { transform: scale(1); }
}

@keyframes mzk-fullstory-heart-ripple {
  0% { opacity: 0; transform: scale(.35); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.75); }
}

@keyframes mzk-fullstory-playlist-added {
  0% { transform: scale(1); }
  45% { transform: scale(.84); }
  78% { transform: scale(1.13); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn::after,
  .mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn .c-i--heart,
  .mzk-fullstory-page .mzk-track-actions .mzk-library-add-btn svg {
    animation: none !important;
  }
}

.mzk-fullstory-page .mzk-entity-track__menu-title {
  display: block;
  padding: 6px 12px 4px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Shared mobile TrackItem for artist and recommended tracks 2026-07-29 */
@media (max-width: 767px) {
  .mzk-fullstory-page .mzk-track-related {
    display: block;
    width: 100%;
    min-width: 0;
  }


  .mzk-fullstory-page .mzk-track-section__head > a {
    color: var(--color-primary-text);
    font-size: 15px;
    font-weight: 600;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-list,
  .mzk-fullstory-page .mzk-fullstory-related-list {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track,
  .mzk-fullstory-page .mzk-fullstory-related-track {
    display: grid;
    width: 100%;
    min-width: 0;
    height: 72px;
    min-height: 72px;
    grid-template-areas: "info actions";
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 10px 8px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    touch-action: manipulation;
    transition: background-color 150ms ease;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track:active,
  .mzk-fullstory-page .mzk-fullstory-related-track:active {
    background-color: #f1f5f9;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track.is-playing,
  .mzk-fullstory-page .mzk-fullstory-related-track.is-playing {
    border-radius: 12px;
    background: var(--color-primary-soft);
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__position,
  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__play,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__position,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__play {
    display: none;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__info,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__info {
    grid-area: info;
    width: 100%;
    min-width: 0;
    max-width: none;
    align-self: center;
    gap: 3px;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__info strong,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__info strong {
    width: 100%;
    max-width: min(220px, 100%);
    overflow: hidden;
    color: var(--color-text-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__info span,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__info span {
    width: 100%;
    max-width: min(150px, 100%);
    margin-top: 3px;
    overflow: hidden;
    color: #64748b;
    font-size: 14px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track.is-playing .mzk-entity-track__info strong,
  .mzk-fullstory-page .mzk-fullstory-related-track.is-playing .mzk-entity-track__info strong {
    color: var(--color-primary-text);
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__actions,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__actions {
    position: relative;
    display: block;
    width: 44px;
    height: 52px;
    grid-area: actions;
    justify-self: end;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__like,
  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__library,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__like,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__library {
    display: none;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__more,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__more {
    position: absolute;
    top: -4px;
    right: -8px;
    display: grid;
    width: 44px;
    height: 44px;
    opacity: 1;
    transform: none;
    color: #94a3b8;
    touch-action: manipulation;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__more svg,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__more svg {
    width: 24px;
    height: 24px;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__duration,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__duration {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 0;
    padding: 0;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__menu,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__menu {
    top: calc(100% + 4px);
    right: 0;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__menu button,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__menu button {
    touch-action: manipulation;
  }
}

@media (max-width: 390px) {
  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__more,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__more {
    width: 38px;
    height: 38px;
  }
  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__more svg,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__more svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .mzk-fullstory-page .mzk-fullstory-artist-track,
  .mzk-fullstory-page .mzk-fullstory-related-track {
    transition: none;
  }
}

/* ── Sidebar widgets (right sidebar on fullstory) ── */
.mzk-fullstory-page .mzk-sb-card {
  background: var(--mzk-cbg);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

.mzk-fullstory-page .mzk-sb-artist-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mzk-fullstory-page .mzk-sb-artist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-radius: 10px;
  transition: background .15s;
  cursor: default;
}

.mzk-fullstory-page .mzk-sb-artist-row:hover {
  background: var(--mzk-hover);
}

.mzk-fullstory-page .mzk-sb-artist-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mzk-primary);
  color: #111;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .15s, background .15s;
}

.mzk-fullstory-page .mzk-sb-artist-play:hover {
  transform: scale(1.1);
  background: var(--mzk-primary-h);
}

.mzk-fullstory-page .mzk-sb-artist-play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.mzk-fullstory-page .mzk-sb-artist-info {
  flex: 1;
  min-width: 0;
}

.mzk-fullstory-page .mzk-sb-artist-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--mzk-txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.mzk-fullstory-page .mzk-sb-artist-name:hover {
  color: var(--color-primary-text);
}

.mzk-fullstory-page .mzk-sb-artist-sub {
  display: block;
  font-size: 12px;
  color: var(--mzk-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mzk-fullstory-page .mzk-sb-artist-dur {
  font-size: 13px;
  color: var(--mzk-muted);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.mzk-fullstory-page .mzk-sb-artist-fav {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--mzk-muted);
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}

.mzk-fullstory-page .mzk-sb-artist-fav:hover,
.mzk-fullstory-page .mzk-sb-artist-fav:focus-visible {
  background: var(--mzk-fav-bg, #fef2f2);
  color: #ef4444;
}

.mzk-fullstory-page .mzk-sb-artist-fav:active {
  transform: scale(.9);
}

.mzk-fullstory-page .mzk-sb-artist-fav svg {
  width: 16px;
  height: 16px;
}

.mzk-fullstory-page .mzk-sb-artist-fav svg path {
  fill: none;
}

.mzk-fullstory-page .mzk-sb-artist-fav.is-active {
  color: #ef4444;
}

.mzk-fullstory-page .mzk-sb-artist-fav.is-active svg path {
  fill: currentColor;
}

.mzk-fullstory-page .mzk-sb-now-more {
  display: block;
  text-align: center;
  padding: 10px 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mzk-muted);
  text-decoration: none;
  transition: color .15s;
}

.mzk-fullstory-page .mzk-sb-now-more:hover {
  color: var(--color-primary-text);
}

/* ── Fullstory entity tracks: duration collapses, buttons take its place ── */
.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__actions,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__actions {
  justify-content: flex-end;
}

@media (hover: hover) {
  .mzk-fullstory-page .mzk-fullstory-artist-track:hover .mzk-entity-track__duration,
  .mzk-fullstory-page .mzk-fullstory-related-track:hover .mzk-entity-track__duration {
    width: 0;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
  }
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__actions > .mzk-entity-track__like,
.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__actions > .mzk-entity-track__library,
.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__actions > .mzk-entity-track__more,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__actions > .mzk-entity-track__like,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__actions > .mzk-entity-track__library,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__actions > .mzk-entity-track__more {
  transform: none;
}

.mzk-fullstory-page .mzk-sb-artist-row:hover .mzk-sb-artist-dur {
  opacity: 0;
}

  .mzk-fullstory-page .mzk-quality-menu,
  .mzk-fullstory-page .mzk-download-menu {
    border-color: rgba(255, 255, 255, .08);
    background: #11151E;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  }

  .mzk-fullstory-page .mzk-download-menu__title {
    color: #F8FAFC;
  }

  .mzk-fullstory-page .mzk-track-actions .mzk-quality-option,
  .mzk-fullstory-page .mzk-track-actions .mzk-download-option {
    color: #E2E8F0 !important;
    background: transparent !important;
  }

  .mzk-fullstory-page .mzk-quality-option:hover,
  .mzk-fullstory-page .mzk-quality-option:focus-visible,
  .mzk-fullstory-page .mzk-track-actions .mzk-download-option:hover,
  .mzk-fullstory-page .mzk-track-actions .mzk-download-option:focus-visible {
    background: rgba(255, 255, 255, .06) !important;
    color: #F8FAFC !important;
  }

  .mzk-fullstory-page .mzk-quality-option small,
  .mzk-fullstory-page .mzk-track-actions .mzk-download-option small {
    color: #94A3B8;
  }

  .mzk-fullstory-page .mzk-quality-option.is-selected {
    background: rgba(var(--color-primary-rgb), .12) !important;
    color: var(--color-primary-text) !important;
  }

  .mzk-fullstory-page .mzk-quality-option > svg {
    width: 24px !important;
    height: 24px !important;
    color: var(--color-primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mzk-fullstory-page .mzk-quality-option.is-locked small,
  .mzk-fullstory-page .mzk-quality-crown,
  .mzk-fullstory-page .mzk-track-actions .mzk-download-option.is-locked small,
  .mzk-fullstory-page .mzk-download-crown {
    color: #FBBF24;
  }




/* Inline Lucide-style status icons. */
.mzk-verified svg,
.mzk-quality-crown svg,
.mzk-download-crown svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.mzk-verified svg { width:14px; height:14px; }

/* Unified fullstory dark design 2026-08 */
.mzk-fullstory-page {
  --mzk-fs-bg: #07111a;
  --mzk-fs-surface: #0d1926;
  --mzk-fs-surface-hover: #112131;
  --mzk-fs-surface-strong: #142230;
  --mzk-fs-border: rgba(255,255,255,.075);
  --mzk-fs-border-hover: rgba(255,162,0,.28);
  --mzk-fs-text: #f4f7fa;
  --mzk-fs-muted: #a3adba;
  --mzk-fs-subtle: #728093;
  --mzk-fs-accent: #ffa200;
  --mzk-fs-on-accent: #111;
  color: var(--mzk-fs-text);
  background: radial-gradient(circle at 62% 4%, rgba(25,57,88,.16), transparent 36rem), var(--mzk-fs-bg);
  color-scheme: dark;
}

.mzk-fullstory-page .mzk-main,
.mzk-fullstory-page .mzk-main-in,
.mzk-fullstory-page .mzk-track-page {
  min-width: 0;
  background: transparent;
}

.mzk-fullstory-page .mzk-main-in {
  width: 100%;
  max-width: 1440px;
  padding: 24px 32px calc(96px + env(safe-area-inset-bottom));
}

.mzk-fullstory-page .mzk-track-page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.mzk-fullstory-page .mzk-bread,
.mzk-fullstory-page .speedbar {
  margin: 0 0 18px;
  color: var(--mzk-fs-subtle);
  font-size: 13px;
}

.mzk-fullstory-page .mzk-bread a,
.mzk-fullstory-page .speedbar a {
  color: var(--mzk-fs-muted);
}

.mzk-fullstory-page .mzk-bread a:hover,
.mzk-fullstory-page .speedbar a:hover {
  color: var(--mzk-fs-accent);
}

.mzk-fullstory-page .mzk-track-hero {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 36px;
  min-height: 0;
  padding: 0;
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-track-hero__cover {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: var(--mzk-fs-surface-strong);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.mzk-fullstory-page .mzk-track-hero__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mzk-fullstory-page .mzk-track-cover-empty {
  color: var(--mzk-fs-accent);
  background: radial-gradient(circle at 50% 35%, rgba(255,162,0,.12), transparent 48%), var(--mzk-fs-surface-strong);
}

.mzk-fullstory-page .mzk-track-hero__content {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.mzk-fullstory-page .mzk-track-title {
  display: -webkit-box;
  width: 100%;
  max-width: 760px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--mzk-fs-text);
  font-size: clamp(30px, 2.4vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mzk-fullstory-page .mzk-track-artist {
  margin-top: 10px;
  color: var(--mzk-fs-muted);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 650;
  line-height: 1.35;
}

.mzk-fullstory-page .mzk-track-artist__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.mzk-fullstory-page .mzk-track-artist__link:hover {
  color: var(--mzk-fs-accent);
  text-decoration: none;
}

.mzk-fullstory-page .mzk-verified {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--mzk-fs-on-accent);
  background: var(--mzk-fs-accent);
}

.mzk-fullstory-page .mzk-track-category {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.mzk-fullstory-page .mzk-track-category a {
  display: inline-flex;
  height: auto;
  padding: 0;
  color: #9aa7b8;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 650;
}

.mzk-fullstory-page .mzk-track-category a::before {
  content: "#";
  margin-right: 2px;
  color: var(--mzk-fs-accent);
}

.mzk-fullstory-page .mzk-track-category a:hover,
.mzk-fullstory-page .mzk-track-category a:focus-visible {
  color: var(--mzk-fs-accent);
  background: transparent;
  outline: 0;
}

.mzk-fullstory-page .mzk-track-tech {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  align-items: stretch;
  column-gap: 26px;
  row-gap: 10px;
  margin: 24px 0 0;
  padding: 0;
}

.mzk-fullstory-page .mzk-track-tech__item {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mzk-fullstory-page .mzk-track-tech dt,
.mzk-fullstory-page .mzk-track-tech dd {
  display: block;
  margin: 0;
  white-space: nowrap;
}

.mzk-fullstory-page .mzk-track-tech dt {
  color: var(--mzk-fs-subtle);
  font-size: 11px;
  font-weight: 600;
}

.mzk-fullstory-page .mzk-track-tech dd {
  color: var(--mzk-fs-text);
  font-size: 13px;
  font-weight: 700;
}

.mzk-fullstory-page .mzk-track-actions {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.mzk-fullstory-page .mzk-track-play,
.mzk-fullstory-page .mzk-track-quality {
  height: 56px !important;
  border-radius: 14px !important;
  font-size: 17px;
  font-weight: 800;
}

.mzk-fullstory-page .mzk-track-play {
  width: 250px;
  min-width: 250px !important;
  flex: 0 0 250px;
  gap: 10px;
  padding: 0 26px !important;
  color: var(--mzk-fs-on-accent) !important;
  background: var(--mzk-fs-accent) !important;
  border-color: var(--mzk-fs-accent) !important;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-track-play:hover,
.mzk-fullstory-page .mzk-track-play:focus-visible,
.mzk-fullstory-page .mzk-track-play.is-playing,
.mzk-fullstory-page .mzk-track-hero.is-playing .mzk-track-play,
.mzk-fullstory-page .mzk-track-play[aria-pressed="true"] {
  color: var(--mzk-fs-on-accent) !important;
  background: var(--mzk-fs-accent) !important;
  border-color: var(--mzk-fs-accent) !important;
  box-shadow: 0 0 0 4px rgba(255,162,0,.1);
  outline: 0;
}

.mzk-fullstory-page .mzk-track-play svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
}

.mzk-fullstory-page .mzk-track-play .icon-pause {
  display: none;
}

.mzk-fullstory-page .mzk-track-hero.is-playing .mzk-track-play .icon-play,
.mzk-fullstory-page .mzk-track-play[aria-pressed="true"] .icon-play {
  display: none;
}

.mzk-fullstory-page .mzk-track-hero.is-playing .mzk-track-play .icon-pause,
.mzk-fullstory-page .mzk-track-play[aria-pressed="true"] .icon-pause {
  display: block;
}

.mzk-fullstory-page .mzk-quality-selector {
  position: relative;
  z-index: 30;
  width: min(180px, 100%);
}

.mzk-fullstory-page .mzk-track-quality {
  width: 100%;
  min-width: 0;
  padding: 0 18px;
  color: var(--mzk-fs-text);
  background: var(--mzk-fs-surface-strong);
  border: 1px solid rgba(255,255,255,.1);
}

.mzk-fullstory-page .mzk-track-quality:hover,
.mzk-fullstory-page .mzk-track-quality:focus-visible {
  color: var(--mzk-fs-accent);
  background: #172838;
  border-color: rgba(255,162,0,.32);
  outline: 0;
}

.mzk-fullstory-page .mzk-quality-menu,
.mzk-fullstory-page .mzk-download-menu {
  color: var(--mzk-fs-text);
  background: #142230;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(0,0,0,.38);
}

.mzk-fullstory-page .mzk-quality-option,
.mzk-fullstory-page .mzk-download-option {
  color: #dbe3ed !important;
  background: transparent !important;
}

.mzk-fullstory-page .mzk-quality-option:hover,
.mzk-fullstory-page .mzk-quality-option:focus-visible,
.mzk-fullstory-page .mzk-download-option:hover,
.mzk-fullstory-page .mzk-download-option:focus-visible {
  color: #fff !important;
  background: rgba(255,255,255,.06) !important;
}

.mzk-fullstory-page .mzk-quality-option small,
.mzk-fullstory-page .mzk-download-option small {
  color: var(--mzk-fs-subtle);
}

.mzk-fullstory-page .mzk-quality-option.is-selected {
  color: var(--mzk-fs-accent) !important;
  background: rgba(255,162,0,.1) !important;
}

.mzk-fullstory-page .mzk-track-secondary-actions {
  display: flex;
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 4px;
}

.mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-control,
.mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-trigger,
.mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-trigger__surface,
.mzk-fullstory-page .mzk-track-secondary-actions .mzk-favorite-btn,
.mzk-fullstory-page .mzk-track-secondary-actions .mzk-library-add-btn {
  width: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  height: 56px !important;
  flex: 0 0 56px !important;
}

.mzk-fullstory-page .mzk-track-actions .mzk-download-trigger__surface,
.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn,
.mzk-fullstory-page .mzk-track-actions .mzk-library-add-btn {
  color: #aab5c3 !important;
  background: #142536 !important;
  border: 1px solid transparent !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn svg,
.mzk-fullstory-page .mzk-track-actions .mzk-library-add-btn svg,
.mzk-fullstory-page .mzk-track-actions .mzk-download-icon {
  width: 24px;
  height: 24px;
}

.mzk-fullstory-page .mzk-track-actions .mzk-library-add-btn:not(.is-active) {
  border-color: #536273 !important;
}

.mzk-fullstory-page .mzk-track-actions .mzk-download-trigger:hover .mzk-download-trigger__surface,
.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn:hover,
.mzk-fullstory-page .mzk-track-actions .mzk-library-add-btn:hover {
  color: var(--mzk-fs-accent) !important;
  background: #172a3b !important;
  border-color: rgba(255,162,0,.35) !important;
  transform: translateY(-1px);
}

.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn.is-active {
  color: #ff4d8d !important;
  background: rgba(255,62,131,.1) !important;
  border-color: rgba(255,62,131,.18) !important;
}

.mzk-fullstory-page .mzk-track-actions .mzk-favorite-btn.is-active svg {
  fill: currentColor;
}

.mzk-fullstory-page .mzk-track-actions .mzk-library-add-btn.is-active {
  color: #4ade80 !important;
  background: rgba(34,197,94,.12) !important;
  border-color: rgba(74,222,128,.24) !important;
}

.mzk-fullstory-page .mzk-fb-pill {
  display: inline-flex;
  width: auto;
  min-width: 148px;
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  overflow: hidden;
  color: #aab5c3;
  background: #142536;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-fb-btn {
  width: auto;
  min-width: 0;
  height: 100%;
  padding: 0 15px;
  flex: 0 0 auto;
  justify-content: center;
  color: #aab5c3;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.mzk-fullstory-page .mzk-fb-btn--like {
  min-width: 82px;
  justify-content: flex-start;
  gap: 8px;
}

.mzk-fullstory-page .mzk-fb-btn--dislike {
  width: 58px;
  min-width: 58px;
  padding: 0;
}

.mzk-fullstory-page .mzk-fb-btn:hover {
  color: var(--mzk-fs-accent);
  background: #172a3b;
}

.mzk-fullstory-page .mzk-fb-btn.is-active {
  color: var(--mzk-fs-accent);
  background: transparent;
}

.mzk-fullstory-page .mzk-fb-btn.is-active .mzk-fb-icon {
  color: currentColor;
}

.mzk-fullstory-page .mzk-fb-icon {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.mzk-fullstory-page .mzk-fb-count {
  color: #f8fafc;
  font-size: 16px;
  font-weight: 650;
}

.mzk-fullstory-page .mzk-fb-divider {
  display: block;
  width: 1px;
  height: 28px;
  flex: 0 0 1px;
  background: #536273;
}

.mzk-fullstory-page .mzk-track-details {
  display: block;
  margin: 18px 0 0;
}

.mzk-fullstory-page .mzk-track-about {
  padding: 0;
  color: var(--mzk-fs-muted);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.mzk-fullstory-page .mzk-track-about h2,
.mzk-fullstory-page .mzk-track-section__head h2,
.mzk-fullstory-page .mzk-comments__title {
  margin: 0;
  color: var(--mzk-fs-text);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.3;
}

.mzk-fullstory-page .mzk-track-story {
  margin-top: 12px;
  color: var(--mzk-fs-muted);
  font-size: 15px;
  line-height: 1.72;
}

.mzk-fullstory-page .mzk-track-story a {
  color: var(--mzk-fs-accent);
}

.mzk-fullstory-page .mzk-track-story-toggle {
  min-height: 44px;
  margin-top: 12px;
  padding: 0;
  color: var(--mzk-fs-accent);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mzk-fullstory-page .mzk-track-related {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 34px;
  margin: 36px 0 0;
}

.mzk-fullstory-page .mzk-track-related > .mzk-track-section {
  min-width: 0;
  padding: 0;
  overflow: visible;
  color: var(--mzk-fs-text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-track-section__head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}

.mzk-fullstory-page .mzk-track-section__head > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--mzk-fs-accent);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.mzk-fullstory-page .mzk-fullstory-artist-list,
.mzk-fullstory-page .mzk-fullstory-related-list {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 10px;
  min-width: 0;
}

.mzk-fullstory-page .mzk-fullstory-artist-track,
.mzk-fullstory-page .mzk-fullstory-related-track {
  position: relative;
  display: grid;
  height: 80px;
  min-width: 0;
  grid-template-columns: 30px 52px minmax(0,1fr) 154px;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0 14px 0 12px;
  color: var(--mzk-fs-text);
  background: #0d1926;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  transition: background-color .16s ease,border-color .16s ease,transform .16s ease;
}

.mzk-fullstory-page .mzk-fullstory-artist-track:hover,
.mzk-fullstory-page .mzk-fullstory-related-track:hover,
.mzk-fullstory-page .mzk-fullstory-artist-track:focus-within,
.mzk-fullstory-page .mzk-fullstory-related-track:focus-within {
  background: #112131;
  border-color: rgba(255,255,255,.06);
}

.mzk-fullstory-page .mzk-fullstory-artist-track.is-current,
.mzk-fullstory-page .mzk-fullstory-related-track.is-current,
.mzk-fullstory-page .mzk-fullstory-artist-track.is-playing,
.mzk-fullstory-page .mzk-fullstory-related-track.is-playing {
  background: #10202d;
  border-color: rgba(255,162,0,.18);
}

.mzk-fullstory-page .mzk-fullstory-artist-track.is-current::before,
.mzk-fullstory-page .mzk-fullstory-related-track.is-current::before,
.mzk-fullstory-page .mzk-fullstory-artist-track.is-playing::before,
.mzk-fullstory-page .mzk-fullstory-related-track.is-playing::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -1px;
  width: 2px;
  border-radius: 0 2px 2px 0;
  background: #ffa200;
  content: "";
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__position,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__position {
  color: #657487;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__play,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__play {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--mzk-fs-on-accent);
  background: var(--mzk-fs-accent);
  border: 1px solid var(--mzk-fs-accent);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .16s ease,box-shadow .16s ease;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__play:hover,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__play:hover,
.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__play:focus-visible,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__play:focus-visible {
  color: #111;
  background: #ffa200;
  border-color: #ffa200;
  box-shadow: 0 0 0 4px rgba(255,162,0,.08);
  transform: scale(1.05);
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__play svg,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__play .icon-play,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__play .icon-play {
  margin-left: 2px;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__play .icon-pause,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__play .icon-pause,
.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__equalizer,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__equalizer {
  display: none;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__equalizer,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__equalizer {
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__equalizer span,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__equalizer span {
  width: 3px;
  height: 72%;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  animation: mzk-fullstory-track-equalizer .7s ease-in-out infinite;
}

.mzk-fullstory-page .mzk-entity-track__equalizer span:nth-child(2) { height: 94%; animation-delay: -.22s; }
.mzk-fullstory-page .mzk-entity-track__equalizer span:nth-child(3) { height: 60%; animation-delay: -.42s; }

@keyframes mzk-fullstory-track-equalizer {
  0%,100% { transform: scaleY(.45); }
  50% { transform: scaleY(1); }
}

.mzk-fullstory-page .mzk-fullstory-artist-track.is-playing .icon-play,
.mzk-fullstory-page .mzk-fullstory-related-track.is-playing .icon-play,
.mzk-fullstory-page .mzk-entity-track__play[aria-pressed="true"] .icon-play {
  display: none;
}

.mzk-fullstory-page .mzk-fullstory-artist-track.is-playing .mzk-entity-track__equalizer,
.mzk-fullstory-page .mzk-fullstory-related-track.is-playing .mzk-entity-track__equalizer,
.mzk-fullstory-page .mzk-entity-track__play[aria-pressed="true"] .mzk-entity-track__equalizer {
  display: flex;
}

@media (hover: hover) {
  .mzk-fullstory-page .mzk-fullstory-artist-track.is-playing .mzk-entity-track__play:hover .mzk-entity-track__equalizer,
  .mzk-fullstory-page .mzk-fullstory-related-track.is-playing .mzk-entity-track__play:hover .mzk-entity-track__equalizer,
  .mzk-fullstory-page .mzk-entity-track__play[aria-pressed="true"]:hover .mzk-entity-track__equalizer {
    display: none;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track.is-playing .mzk-entity-track__play:hover .icon-pause,
  .mzk-fullstory-page .mzk-fullstory-related-track.is-playing .mzk-entity-track__play:hover .icon-pause,
  .mzk-fullstory-page .mzk-entity-track__play[aria-pressed="true"]:hover .icon-pause {
    display: block;
  }
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__info,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__info strong,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__info strong {
  display: block;
  overflow: hidden;
  color: var(--mzk-fs-text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__info span,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__info span,
.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__duration,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__duration {
  color: #8997a9;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__info span,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__info span {
  display: block;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mzk-fullstory-page .mzk-fullstory-artist-track.is-current .mzk-entity-track__info strong,
.mzk-fullstory-page .mzk-fullstory-related-track.is-current .mzk-entity-track__info strong,
.mzk-fullstory-page .mzk-fullstory-artist-track.is-playing .mzk-entity-track__info strong,
.mzk-fullstory-page .mzk-fullstory-related-track.is-playing .mzk-entity-track__info strong {
  color: var(--mzk-fs-accent);
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__actions,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__actions {
  position: relative;
  display: flex;
  width: 154px;
  min-width: 154px;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__duration,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__duration {
  position: absolute;
  right: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .16s ease;
}

.mzk-fullstory-page .mzk-entity-track__like,
.mzk-fullstory-page .mzk-entity-track__library,
.mzk-fullstory-page .mzk-entity-track__more {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #9ca8b8;
  background: rgba(255,255,255,.045);
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
}

.mzk-fullstory-page .mzk-entity-track__like svg,
.mzk-fullstory-page .mzk-entity-track__library svg { width: 20px; height: 20px; }
.mzk-fullstory-page .mzk-entity-track__more svg { width: 22px; height: 22px; }

.mzk-fullstory-page .mzk-entity-track__like:hover,
.mzk-fullstory-page .mzk-entity-track__library:hover,
.mzk-fullstory-page .mzk-entity-track__more:hover {
  color: #fff;
  background: rgba(255,255,255,.075);
}

.mzk-fullstory-page .mzk-entity-track__like.is-active {
  color: #ff4d8d;
  background: rgba(255,62,131,.1);
}

.mzk-fullstory-page .mzk-entity-track__library.is-active {
  color: #4ade80;
  background: rgba(34,197,94,.12);
}

.mzk-fullstory-page .mzk-entity-track__like .icon-heart-filled { display: none; }
.mzk-fullstory-page .mzk-entity-track__like.is-active .icon-heart-outline { display: none; }
.mzk-fullstory-page .mzk-entity-track__like.is-active .icon-heart-filled { display: block; }

.mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__actions > button,
.mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__actions > button {
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease,visibility 0s linear .16s;
}

.mzk-fullstory-page .mzk-fullstory-artist-track:hover .mzk-entity-track__actions > button,
.mzk-fullstory-page .mzk-fullstory-related-track:hover .mzk-entity-track__actions > button,
.mzk-fullstory-page .mzk-fullstory-artist-track:focus-within .mzk-entity-track__actions > button,
.mzk-fullstory-page .mzk-fullstory-related-track:focus-within .mzk-entity-track__actions > button {
  opacity: 1;
  visibility: visible;
  transition: opacity .16s ease;
}

.mzk-fullstory-page .mzk-fullstory-artist-track:hover .mzk-entity-track__duration,
.mzk-fullstory-page .mzk-fullstory-related-track:hover .mzk-entity-track__duration,
.mzk-fullstory-page .mzk-fullstory-artist-track:focus-within .mzk-entity-track__duration,
.mzk-fullstory-page .mzk-fullstory-related-track:focus-within .mzk-entity-track__duration {
  opacity: 0;
}

.mzk-fullstory-page .mzk-entity-track__menu {
  z-index: 20000;
  width: 288px;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  padding: 14px 18px;
  color: var(--mzk-fs-text);
  background: #142231;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(0,0,0,.38);
  overflow-y: auto;
}

.mzk-fullstory-page .mzk-entity-track__menu button,
.mzk-fullstory-page .mzk-entity-track__menu a {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  padding: 0 6px;
  color: #edf2f7;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  text-align: left;
  text-decoration: none;
}

.mzk-fullstory-page .mzk-entity-track__menu button:hover,
.mzk-fullstory-page .mzk-entity-track__menu button:focus-visible,
.mzk-fullstory-page .mzk-entity-track__menu a:hover,
.mzk-fullstory-page .mzk-entity-track__menu a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.mzk-fullstory-page .mzk-entity-track__menu svg,
.mzk-fullstory-page .mzk-entity-track__menu button[data-action="like"] svg,
.mzk-fullstory-page .mzk-entity-track__menu button[data-action="playlist"] svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #9eabba;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mzk-fullstory-page .mzk-entity-track__menu button[data-action="like"].is-active {
  color: #ff4d8d;
  background: transparent;
}

.mzk-fullstory-page .mzk-entity-track__menu button[data-action="playlist"].is-active {
  color: #4ade80;
  background: transparent;
}

.mzk-fullstory-page .mzk-entity-track__menu button[data-action="play"].is-playing {
  color: #ffa200;
  background: transparent;
}

.mzk-fullstory-page .mzk-entity-track__menu button[data-action="like"].is-active svg,
.mzk-fullstory-page .mzk-entity-track__menu button[data-action="playlist"].is-active svg,
.mzk-fullstory-page .mzk-entity-track__menu button[data-action="play"].is-playing svg {
  color: currentColor;
}

.mzk-fullstory-page .mzk-entity-track__menu-separator {
  display: block;
  width: 100%;
  height: 1px;
  margin: 7px 0;
  background: rgba(255,255,255,.12);
}

.mzk-fullstory-page .mzk-track-related > .mzk-fullstory-thematic-artists {
  padding: 22px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card strong {
  color: var(--mzk-fs-text);
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card__cover {
  border: 2px solid rgba(255,255,255,.08);
  background: var(--mzk-fs-surface-strong);
}

.mzk-fullstory-page .mzk-fullstory-thematic-artists .mzk-artist-card:hover .mzk-artist-card__cover {
  border-color: rgba(255,162,0,.38);
}

.mzk-fullstory-page .mzk-thematic-artists__arrow {
  color: var(--mzk-fs-on-accent);
  background: var(--mzk-fs-accent);
  border: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.mzk-fullstory-page .mzk-comments {
  margin-top: 36px;
  padding: 0;
  color: var(--mzk-fs-text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mzk-fullstory-page .mzk-comments__count {
  color: var(--mzk-fs-subtle);
  background: var(--mzk-fs-surface-strong);
}

.mzk-fullstory-page .mzk-comments__title-icon {
  color: var(--mzk-fs-subtle);
}

.mzk-fullstory-page .mzk-comments__empty {
  color: var(--mzk-fs-muted);
  border-top-color: rgba(255,255,255,.07);
}

.mzk-fullstory-page .mzk-comments:not(.mzk-comments--empty) .mzk-cmts,
.mzk-fullstory-page .comments-tree-item > .comments-tree-list {
  border-color: rgba(255,255,255,.07);
}

.mzk-fullstory-page .mzk-comments__empty svg,
.mzk-fullstory-page .mzk-cf__counter {
  color: var(--mzk-fs-subtle);
}

.mzk-fullstory-page .mzk-cf {
  margin-top: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.mzk-fullstory-page .mzk-cf__textarea,
.mzk-fullstory-page .mzk-cf__input {
  color: var(--mzk-fs-text);
  background: var(--mzk-fs-surface-strong);
  border-color: rgba(255,255,255,.09);
}

.mzk-fullstory-page .mzk-cf__guest-avatar {
  color: var(--mzk-fs-subtle);
  background: var(--mzk-fs-surface-strong);
  border-color: rgba(255,255,255,.09);
}

.mzk-fullstory-page .mzk-cf__guest-avatar.is-named {
  color: #fff;
  background: var(--mzk-avatar-bg, #475569);
  border-color: transparent;
}

.mzk-fullstory-page .mzk-cf__textarea::placeholder,
.mzk-fullstory-page .mzk-cf__input::placeholder {
  color: #7f8d9f;
}

.mzk-fullstory-page .mzk-cf__textarea:focus,
.mzk-fullstory-page .mzk-cf__input:focus {
  border-color: rgba(255,162,0,.48);
  box-shadow: 0 0 0 3px rgba(255,162,0,.08);
}

.mzk-fullstory-page .mzk-cf__submit {
  min-height: 44px;
  color: var(--mzk-fs-on-accent);
  background: var(--mzk-fs-accent);
  border-color: var(--mzk-fs-accent);
  border-radius: 22px;
}

.mzk-fullstory-page .mzk-cmt {
  color: var(--mzk-fs-muted);
  background: transparent;
  border-color: rgba(255,255,255,.07);
}

.mzk-fullstory-page .mzk-cmt__author,
.mzk-fullstory-page .mzk-cmt__text {
  color: var(--mzk-fs-text);
}

.mzk-fullstory-page .mzk-cmt__date,
.mzk-fullstory-page .mzk-cmt__action {
  color: var(--mzk-fs-subtle);
}

.mzk-fullstory-page .mzk-cmt__action:hover {
  color: var(--mzk-fs-accent);
}

.mzk-fullstory-page :where(button, a, input, textarea):focus-visible {
  outline: 2px solid var(--mzk-fs-accent);
  outline-offset: 2px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .mzk-fullstory-page .mzk-track-hero {
    grid-template-columns: 280px minmax(0,1fr);
    gap: 28px;
    padding: 0;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    max-width: 280px;
  }

  .mzk-fullstory-page .mzk-track-play {
    min-width: 200px !important;
    padding-inline: 22px !important;
  }

  .mzk-fullstory-page .mzk-quality-selector {
    width: 160px;
  }

  .mzk-fullstory-page .mzk-track-secondary-actions {
    gap: 7px;
  }

  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-control,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-trigger,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-trigger__surface,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-favorite-btn,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-library-add-btn {
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    height: 50px !important;
    flex-basis: 50px !important;
  }

  .mzk-fullstory-page .mzk-fb-pill {
    min-width: 132px;
    height: 50px;
  }
}
@media (max-width: 1199px) {
  .mzk-fullstory-page .mzk-main-in {
    padding-inline: 24px;
  }

  .mzk-fullstory-page .mzk-track-hero {
    grid-template-columns: 280px minmax(0,1fr);
    gap: 30px;
    padding: 0;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    max-width: 280px;
  }

  .mzk-fullstory-page .mzk-track-title {
    font-size: clamp(28px, 3vw, 34px);
  }
}

@media (max-width: 900px) {
  .mzk-fullstory-page .mzk-track-hero {
    grid-template-columns: 220px minmax(0,1fr);
    gap: 24px;
    padding: 0;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    max-width: 220px;
  }

  .mzk-fullstory-page .mzk-track-tech {
    margin-top: 18px;
  }

  .mzk-fullstory-page .mzk-track-tech__item {
    min-width: 0;
    padding: 0;
  }

  .mzk-fullstory-page .mzk-track-actions {
    margin-top: 20px;
  }

  .mzk-fullstory-page .mzk-track-play {
    min-width: 190px !important;
  }
}

@media (max-width: 767px) {
  .mzk-fullstory-page .mzk-main-in {
    padding: 16px clamp(14px, 4vw, 20px) calc(108px + env(safe-area-inset-bottom));
  }

  .mzk-fullstory-page .mzk-track-hero {
    display: flex;
    width: 100%;
    padding: 0;
    gap: 0;
    flex-direction: column;
    align-items: center;
    border-radius: 18px;
  }

  .mzk-fullstory-page .mzk-track-hero__cover {
    width: min(76vw, 300px);
    max-width: 300px;
    border-radius: 18px;
  }

  .mzk-fullstory-page .mzk-track-hero__content {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .mzk-fullstory-page .mzk-track-title {
    max-width: 100%;
    margin-top: 22px;
    font-size: clamp(24px, 6.8vw, 28px);
    line-height: 1.15;
    text-align: center;
  }

  .mzk-fullstory-page .mzk-track-artist {
    justify-content: center;
    margin-top: 8px;
    font-size: 17px;
  }

  .mzk-fullstory-page .mzk-track-category {
    flex-wrap: nowrap;
    align-self: stretch;
    margin: 18px -16px 0;
    padding: 0 16px 3px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .mzk-fullstory-page .mzk-track-category::-webkit-scrollbar {
    display: none;
  }

  .mzk-fullstory-page .mzk-track-category a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .mzk-fullstory-page .mzk-track-tech {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 10px;
    margin-top: 18px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .mzk-fullstory-page .mzk-track-tech__item {
    display: grid;
    min-width: 0;
    min-height: 0;
    gap: 3px;
    padding: 0;
    align-items: center;
    justify-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    text-align: center;
  }

  .mzk-fullstory-page .mzk-track-tech dt {
    order: 1;
    color: #7f8da0;
    font-size: 9px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mzk-fullstory-page .mzk-track-tech dd {
    order: 2;
    max-width: 100%;
    margin: 0;
    color: #f4f7fa;
    font-size: 11px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mzk-fullstory-page .mzk-track-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }

  .mzk-fullstory-page .mzk-track-play {
    display: inline-flex;
    width: 100%;
    height: 56px !important;
    min-height: 56px;
    min-width: 0 !important;
    flex: 0 0 56px;
    align-self: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 16px !important;
    box-sizing: border-box;
    font-size: 17px;
    line-height: 1;
  }

  .mzk-fullstory-page .mzk-track-play svg {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
  }

  .mzk-fullstory-page .mzk-track-play .icon-play {
    margin-left: 0;
  }

  .mzk-fullstory-page .mzk-track-secondary-actions {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 7px;
    margin: 2px 0 0;
  }


  .mzk-fullstory-page .mzk-track-related > .mzk-fullstory-thematic-artists {
    padding: 20px 0 0;
    border: 0;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-list,
  .mzk-fullstory-page .mzk-fullstory-related-list {
    gap: 8px;
    overflow: visible;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track,
  .mzk-fullstory-page .mzk-fullstory-related-track {
    display: grid;
    width: 100%;
    height: 74px;
    min-height: 74px;
    grid-template-columns: 48px minmax(0,1fr) auto;
    gap: 10px;
    padding: 0 8px;
    border: 0;
    border-radius: 16px;
    direction: ltr;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__position,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__position {
    display: none;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__play,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__play {
    display: grid;
    width: 48px;
    height: 48px;
    grid-column: 1;
    grid-row: 1;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__info,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__info {
    width: 100%;
    min-width: 0;
    grid-column: 2;
    grid-row: 1;
    direction: ltr;
    text-align: left;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__actions,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__actions {
    position: relative;
    display: flex;
    width: auto;
    min-width: 86px;
    height: 100%;
    gap: 4px;
    grid-column: 3;
    grid-row: 1;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__like,
  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__library,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__like,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__library {
    display: none;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__more,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__more {
    position: static;
    display: grid;
    width: 44px;
    height: 44px;
    opacity: 1;
    visibility: visible;
  }

  .mzk-fullstory-page .mzk-fullstory-artist-track .mzk-entity-track__duration,
  .mzk-fullstory-page .mzk-fullstory-related-track .mzk-entity-track__duration {
    position: static;
    order: -1;
    min-width: 34px;
    padding: 0 2px;
    font-size: 12px;
    opacity: 1;
  }

  .mzk-fullstory-page .mzk-entity-track__menu {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    top: auto !important;
    width: 100%;
    max-width: none;
    max-height: 68vh;
    padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 18px 18px 0 0;
  }

  .mzk-fullstory-page .mzk-thematic-artists__slider-wrap {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .mzk-fullstory-page .mzk-thematic-artists__arrow {
    display: none !important;
  }
}

@media (max-width: 479px) {
  .mzk-fullstory-page .mzk-main-in {
    padding-inline: 14px;
  }

  .mzk-fullstory-page .mzk-track-hero {
    padding-inline: 0;
  }

  .mzk-fullstory-page .mzk-track-category {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .mzk-fullstory-page .mzk-track-secondary-actions {
    gap: 10px;
  }

  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-control,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-trigger,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-trigger__surface,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-favorite-btn,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-library-add-btn {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    flex-basis: 46px !important;
  }

  .mzk-fullstory-page .mzk-fb-pill {
    min-width: 116px;
    height: 46px;
  }

  .mzk-fullstory-page .mzk-fb-btn--like {
    min-width: 67px;
    gap: 6px;
    padding-inline: 10px;
  }

  .mzk-fullstory-page .mzk-fb-btn--dislike {
    width: 48px;
    min-width: 48px;
  }

  .mzk-fullstory-page .mzk-fb-icon {
    width: 22px;
    height: 22px;
  }

  .mzk-fullstory-page .mzk-fb-count {
    font-size: 14px;
  }

}

@media (max-width: 359px) {
  .mzk-fullstory-page .mzk-main-in {
    padding-inline: 12px;
  }


  .mzk-fullstory-page .mzk-track-secondary-actions {
    gap: 5px;
  }

  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-control,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-trigger,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-download-trigger__surface,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-favorite-btn,
  .mzk-fullstory-page .mzk-track-secondary-actions .mzk-library-add-btn {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }

  .mzk-fullstory-page .mzk-fb-pill {
    min-width: 109px;
    height: 44px;
  }

  .mzk-fullstory-page .mzk-fb-btn--like {
    min-width: 62px;
    padding-inline: 8px;
  }

  .mzk-fullstory-page .mzk-fb-btn--dislike {
    width: 46px;
    min-width: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mzk-fullstory-page *,
  .mzk-fullstory-page *::before,
  .mzk-fullstory-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
