/* ==============================
   Landing Page — new home design
   ============================== */

.mzk-home-page .mzk-main-in {
  width: 100%;
  max-width: none;
  margin: 0;
}

.mzk-lp {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 24px 60px;
}

.mzk-home-intro {
  margin: 8px 0 38px;
}

.mzk-home-intro h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-text-primary);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.mzk-home-intro p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

/* ---- Section Header ---- */
.mzk-lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mzk-lp-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.mzk-lp-header a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-text);
  text-decoration: none;
  transition: color .2s;
}

.mzk-lp-header a:hover {
  color: var(--color-primary-text);
  text-decoration: underline;
}

.mzk-home-section-heading{min-width:0}
.mzk-home-section-description{max-width:760px;margin:6px 0 0;color:var(--color-text-secondary);font-size:14px;font-weight:400;line-height:1.5}
.mzk-home-section-description--standalone{margin-bottom:18px}
.releases-header,.playlist-selection__header,.popular-artists__header,.mzk-lp-header{align-items:flex-start}
.releases-header>a,.playlist-selection__header>a,.popular-artists__header>a,.mzk-lp-header>a{margin-top:3px}

/* ============ 1. HERO: PLAY NOW ============ */
.mzk-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background:
    linear-gradient(135deg, var(--color-surface) 0%, var(--color-primary-soft) 100%);
  overflow: hidden;
}

.mzk-home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mzk-home-hero__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.mzk-home-hero h1 {
  margin: 0;
  max-width: 520px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--color-text-primary);
}

.mzk-home-hero__lead {
  margin: 0;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.mzk-home-hero__track {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}

.mzk-home-hero__track h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.mzk-home-hero__track p {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.mzk-home-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.mzk-home-hero__play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), .35);
  transition: background-color .16s ease, transform .12s ease, box-shadow .16s ease;
}

.mzk-home-hero__play svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mzk-home-hero__play:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.mzk-home-hero__play:active {
  background: var(--color-primary-active);
}

.mzk-home-hero__more {
  color: var(--color-primary-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mzk-home-hero__more:hover {
  text-decoration: underline;
}

.mzk-home-hero__visual {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(var(--color-primary-rgb), .28);
}

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

.mzk-home-hero__cover-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-active));
  color: var(--color-on-primary);
}

.mzk-home-hero__cover-placeholder svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

/* ============ 1b. HERO (legacy) ============ */
.mzk-lp-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  margin: 0 0 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5f0ff 0%, #fff8f0 100%);
  overflow: hidden;
}

.mzk-lp-hero-deco {
  position: absolute;
  top: 50%;
  left: 68%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: var(--color-primary-text);
  opacity: .08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.mzk-lp-hero-deco span {
  display: block;
}

.mzk-lp-hero-deco span + span {
  margin-top: -12px;
  margin-left: 40px;
}

.mzk-lp-hero__text h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.mzk-lp-hero__text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mzk-lp-hero__text p {
  margin: 6px 0 12px;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.mzk-lp-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ 2. RELEASES (carousel) ============ */
.mzk-lp-releases {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ---- Header ---- */
.releases-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.releases-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.releases-header a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.releases-header a:hover {
  color: var(--color-primary-text);
}

/* ---- Carousel ---- */
.releases-carousel {
  position: relative;
  overflow: hidden;
}

.releases-carousel .swiper-wrapper {
  position: relative;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
  padding-bottom: 8px;
}

.releases-carousel .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.releases-carousel .swiper-slide {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  scroll-snap-align: start;
}

@media (max-width: 767px) {
  .releases-carousel .swiper-wrapper { gap: 12px; }
}

/* ---- Arrows ---- */
.releases-prev,
.releases-next {
  position: absolute;
  z-index: 10;
  top: calc(50% - 38px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #aab5c3;
  background: #142333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .16s ease, background .16s ease, border-color .16s ease, box-shadow .2s;
}

.releases-prev.swiper-button-disabled,
.releases-next.swiper-button-disabled {
  opacity: .3;
  cursor: default;
}

.releases-prev { left: 8px; }
.releases-next { right: 8px; }

.releases-prev svg,
.releases-next svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .2s;
}

.releases-prev:hover:not(.swiper-button-disabled),
.releases-next:hover:not(.swiper-button-disabled) {
  color: #111;
  background: #ffa200;
  border-color: #ffa200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.releases-prev:hover:not(.swiper-button-disabled) svg,
.releases-next:hover:not(.swiper-button-disabled) svg {
  stroke: #111;
}

/* ---- Card ---- */
.release-card {
  position: relative;
  min-width: 0;
  border-radius: 18px;
}



.release-cover {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
}

.release-cover img,
.release-cover__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-cover__placeholder {
  display: grid;
  place-items: center;
  color: var(--color-text-tertiary);
  background: var(--color-surface-strong, #132231);
}

.release-cover__placeholder svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

/* ---- Main row (play + info) ---- */
.release-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

/* ---- Play button: radio style ---- */
.release-play-btn {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 58px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-on-primary);
  background: var(--color-primary);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .38);
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.release-play-btn:hover,
.release-play-btn:focus-visible {
  background: var(--color-primary-hover);
}

.release-play-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.release-play-btn .icon-play {
  transform: translateX(1px);
}

.release-play-btn .icon-pause {
  display: none;
}

.release-card.is-playing .release-play-btn {
  background: #ffa200;
  color: #07111c;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .38);
}

.release-card.is-playing .release-play-btn .icon-play {
  display: none;
}

.release-card.is-playing .release-play-btn .icon-pause {
  display: block;
}

.release-card.is-playing .release-play-btn::before,
.release-card.is-playing .release-play-btn::after {
  content: none;
}

.release-card.is-playing .release-play-btn::before {
  margin-right: 4px;
}

/* ---- Info ---- */
.release-info {
  min-width: 0;
  padding: 12px 2px 0;
}

.release-info h3 {
  margin: 0;
}

.release-info h3 a {
  display: block;
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-info h3 a:hover {
  color: #ffa200;
}

.release-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-info p span {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.release-artist {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.release-artist-link {
  display: block;
  color: #1f2937;
  text-decoration: none;
  transition: color .2s;
}

.release-artist-link:hover {
  color: var(--color-primary-text);
}

.release-duration {
  display: inline-block;
  margin-top: 3px;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1;
}

/* ---- Empty state ---- */
.releases-empty {
  display: none;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

.releases-carousel .swiper-wrapper:empty + .releases-empty,
.releases-carousel:not(:has(.swiper-slide)) + .releases-empty {
  display: block;
}

.releases-carousel .swiper-wrapper:empty,
.releases-carousel:not(:has(.swiper-slide)) {
  min-height: 0;
}

/* ============ 3. POPULAR TRACKS ============ */
.mzk-lp-popular {
  margin-top: 20px;
  margin-bottom: 20px;
}

.popular-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.popular-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.popular-header a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.popular-header a:hover {
  color: var(--color-primary-text);
}

/* ---- Grid ---- */
.popular-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 12px;
  counter-reset: popular-counter;
}

/* ---- Row ---- */
.popular-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s;
  counter-increment: popular-counter;
}

.popular-row:hover {
  background: #f8fafc;
}

/* ---- Number ---- */
.popular-number {
  flex: 0 0 32px;
  font-size: 16px;
  font-weight: 600;
  color: #9ca3af;
  text-align: center;
  user-select: none;
}

.popular-number::before {
  content: counter(popular-counter, decimal-leading-zero);
}

.popular-row.is-current .popular-number,
.popular-row.is-playing .popular-number {
  color: var(--color-primary-text);
}

.popular-row.is-playing .popular-number::before {
  content: "▶";
  font-size: 12px;
}

/* ---- Play button (radio style) ---- */
.popular-play-btn {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-on-primary);
  background: var(--color-primary);
  box-shadow: 0 6px 16px rgba(var(--color-primary-rgb), .28);
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.popular-play-btn:hover,
.popular-play-btn:focus-visible {
  background: var(--color-primary-hover);
  transform: scale(1.06);
}

.popular-play-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.popular-play-btn .icon-play {
  transform: translateX(1px);
}

.popular-play-btn .icon-pause {
  display: none;
}

.popular-row.is-playing .popular-play-btn {
  background: #e11d48;
  box-shadow: 0 6px 16px rgba(225, 29, 72, .26);
}

.popular-row.is-playing .popular-play-btn .icon-play {
  display: none;
}

.popular-row.is-playing .popular-play-btn .icon-pause {
  display: block;
}

.popular-row.is-playing .popular-play-btn::before,
.popular-row.is-playing .popular-play-btn::after {
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.popular-row.is-playing .popular-play-btn::before {
  margin-right: 4px;
}

/* ---- Favorite heart ---- */
.popular-fav {
  flex: 0 0 auto;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}

.popular-fav:hover,
.popular-fav:focus-visible {
  background: #fef2f2;
  color: #ef4444;
}

.popular-fav:active {
  transform: scale(.9);
}

.popular-fav svg {
  width: 18px;
  height: 18px;
}

.popular-fav svg path {
  fill: none;
}

.popular-fav.is-active {
  color: #ef4444;
}

.popular-fav.is-active svg path {
  fill: currentColor;
}

/* ---- Info ---- */
.popular-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.popular-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color .2s;
}

.popular-title:hover {
  color: var(--color-primary-text);
}

.popular-row.is-playing .popular-title {
  color: var(--color-primary-text);
}

.popular-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.popular-artist {
  font-size: 15px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-duration {
  margin-left: auto;
  font-size: 14px;
  color: #6b7280;
  flex-shrink: 0;
}

/* ---- 3-dot menu ---- */

/* ============ 4. LISTENER'S CHOICE (SLIDER) ============ */
.playlist-selection {
  max-width: 1440px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.playlist-selection__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.playlist-selection__header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.playlist-selection__header a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.playlist-selection__header a:hover {
  color: var(--color-primary-text);
}

.playlist-selection__wrap {
  position: relative;
}

/* ---- Slider ---- */
.selection-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.selection-slider::-webkit-scrollbar {
  display: none;
}

/* ---- Card ---- */
.selection-card {
  flex: 0 0 200px;
  width: 200px;
  height: 150px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.selection-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-i {
  width: 56px;
  height: 56px;
}

.selection-card .c-i {
  color: #fff;
}

.selection-card .title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

/* ---- Card colors (gradients by theme) ---- */
.selection-card--relax { background: linear-gradient(135deg, #5B7CFF, #3B5DE7); }
.selection-card--workout { background: linear-gradient(135deg, #FF5B5B, #E03A3A); }
.selection-card--love { background: linear-gradient(135deg, #FF75A8, #E85A8C); }
.selection-card--romance { background: linear-gradient(135deg, #EC4899, #D4347E); }
.selection-card--car { background: linear-gradient(135deg, #4C8DFF, #2E6FE0); }
.selection-card--work { background: linear-gradient(135deg, #A855F7, #8B3FD4); }
.selection-card--night { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.selection-card--hits { background: linear-gradient(135deg, #F59E0B, #D97706); }
.selection-card--dance { background: linear-gradient(135deg, #10B981, #059669); }
.selection-card--morning { background: linear-gradient(135deg, #FB923C, #E67A22); }

/* ---- Arrows ---- */
.selection-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #aab5c3;
  background: #142333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .16s ease, background .16s ease, border-color .16s ease, box-shadow .2s, opacity .2s;
  opacity: 1;
  pointer-events: auto;
}

.selection-arrow--prev {
  left: -10px;
}

.selection-arrow--next {
  right: -10px;
}

.selection-arrow svg {
  width: 24px;
  height: 24px;
  color: currentColor;
}

.selection-arrow:hover,
.selection-arrow:focus-visible {
  color: #111;
  background: #ffa200;
  border-color: #ffa200;
  outline: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.selection-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ============ 5. GENRES TAG CLOUD ============ */
.mzk-lp-genres {
  margin-bottom: 20px;
}

.mzk-lp-genres-header h2 {
  margin-bottom: 24px;
}

.mzk-lp-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.mzk-lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-surface);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  cursor: pointer;
}

.mzk-lp-tag span {
  font-size: 20px;
}

.mzk-lp-tag .mzk-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mzk-lp-tag:hover {
}

.mzk-lp-tag:active {
  background: var(--color-primary);
  color: var(--color-on-primary);
}



/* ============ RESPONSIVE ============ */

/* ============ 6. FEATURES ============ */
.features-section {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: none;
  min-height: 120px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.feature-icon--music {
  color: #ffa200;
}

.feature-icon--play {
  color: #ffa200;
}

.feature-icon--device {
  color: #ffa200;
}

.feature-icon--favorite {
  color: #ff477e;
}

.feature-content {
  flex: 1;
  min-width: 0;
}

.feature-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.feature-description {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .mzk-lp { padding: 16px 16px 40px; }
  .mzk-lp-header h2 { font-size: 19px; }

  .mzk-home-intro { margin: 4px 0 30px; }
  .mzk-home-intro h1 { font-size: 24px; }
  .mzk-home-intro p { margin-top: 10px; font-size: 15px; }
  .mzk-home-section-description{max-width:62ch;font-size:13px;line-height:1.45}

  .mzk-lp-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 20px;
    text-align: center;
  }
  .mzk-lp-hero__text h1 { font-size: 24px; white-space: normal; }
  .mzk-lp-hero__text p { margin-left: auto; margin-right: auto; }
  .mzk-lp-hero-deco { display: none; }

  .releases-carousel .swiper-slide { width: 190px; }
  .releases-prev,
  .releases-next { top: calc(50% - 32px); width: 36px; height: 36px; }
  .releases-prev svg,
  .releases-next svg { width: 18px; height: 18px; }
  .releases-prev { left: 4px; }
  .releases-next { right: 4px; }

  .popular-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 6px; }
  .popular-row { gap: 12px; padding: 10px 8px; }

  .selection-card {
    flex: 0 0 170px;
    width: 170px;
    height: 130px;
  }
  .selection-card .title {
    font-size: 14px;
  }
  .c-i {
    width: 46px;
    height: 46px;
  }
  .selection-arrow {
    width: 40px;
    height: 40px;
  }
  .selection-arrow--prev {
    left: -4px;
  }
  .selection-arrow--next {
    right: -4px;
  }
  .selection-arrow svg {
    width: 20px;
    height: 20px;
  }

  .mzk-lp-tag-cloud { justify-content: flex-start; gap: 10px; }
  .mzk-lp-tag { padding: 10px 18px; font-size: 15px; }

  .features-grid { gap: 12px; }
  .feature-title { font-size: 16px; }
  .feature-description { font-size: 14px; line-height: 1.4; }
  .feature-icon { display: none; }
  .feature-card { background: none; border: none; padding: 12px 0; min-height: 0; }
  .feature-card + .feature-card { border-top: 1px solid var(--color-border); }
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .mzk-lp-hero { padding: 16px 14px; }
  .mzk-lp-hero__text h1 { font-size: 20px; }

  .mzk-home-intro h1 { font-size: 22px; }

  .playlist-selection__header h2 { font-size: 19px; }
  .popular-header h2 { font-size: 19px; }
  .releases-header h2 { font-size: 19px; }
  .popular-artists__header h2 { font-size: 19px; }
  .mzk-lp-header h2 { font-size: 19px; }
  .releases-header,.playlist-selection__header,.popular-artists__header,.mzk-lp-header{gap:14px}
  .mzk-home-section-description{margin-top:5px}
}

@media (max-width: 359px) {
  .features-section { padding-inline: 0; }
  .features-grid { grid-template-columns: minmax(0, 1fr); }
}
