/* Bio & blog — static page, no build */
:root {
  --bg: #0c0e12;
  --bg-alt: #11141b;
  --surface: #161a24;
  --text: #e8eaef;
  --muted: #9aa3b2;
  --accent: #7cf0c6;
  --accent-dim: rgba(124, 240, 198, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --font: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1080px;
  /* Header sticky: chừa khoảng trống khi bấm menu #nhac, #gioi-thieu, … */
  --scroll-anchor-offset: 5.75rem;
}

[data-theme="light"] {
  --bg: #f6f4ef;
  --bg-alt: #ebe6dc;
  --surface: #ffffff;
  --text: #1a1d24;
  --muted: #5c6474;
  --accent: #0d6b52;
  --accent-dim: rgba(13, 107, 82, 0.12);
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(26, 29, 36, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main > section[id] {
  scroll-margin-top: var(--scroll-anchor-offset);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  transition: background 0.35s ease, color 0.35s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 100;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

code {
  font-size: 0.88em;
  padding: 0.12em 0.35em;
  border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent);
}

[data-theme="light"] code {
  color: var(--text);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.site-brand:hover .site-brand__name,
.site-brand:focus-visible .site-brand__name {
  color: var(--accent);
}

.site-brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 12px;
}

.site-brand__name {
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
}

.logo {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.nav-list {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  box-shadow: 0 -6px 0 var(--text), 0 6px 0 var(--text);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    right: 1.25rem;
    top: calc(100% + 8px);
    flex-direction: column;
    gap: 0;
    min-width: 200px;
    padding: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list li a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
  }

  .nav-list li a:hover {
    background: var(--accent-dim);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% 20% auto;
  height: 60%;
  background: radial-gradient(ellipse at center, var(--accent-dim), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.eyebrow {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.25rem;
  font-family: var(--font);
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-line {
  display: block;
}

.hero-line:first-child {
  text-align: left;
}

.hero-line--accent {
  margin-top: 0.35rem;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  color: var(--accent);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Lượt xem + like (api/stats.php) */
.site-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.site-stats__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
}

.site-stats__num {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.site-stats__ic {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  opacity: 0.88;
}

.site-stats__like {
  cursor: pointer;
  font: inherit;
  margin: 0;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.08s ease, color 0.2s ease;
}

.site-stats__like:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  background: var(--accent-dim);
}

.site-stats__like:active:not(:disabled) {
  transform: scale(0.98);
}

.site-stats__like.is-liked {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  color: var(--accent);
  background: var(--accent-dim);
}

.site-stats__like.is-liked .site-stats__heart {
  opacity: 1;
}

.site-stats__like:disabled {
  cursor: default;
}

[data-theme="light"] .site-stats__pill {
  box-shadow: 0 4px 20px rgba(26, 29, 36, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--surface);
}

.hero-card {
  border-radius: calc(var(--radius) + 4px);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent 55%, var(--border));
}

.hero-card-inner {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-avatar {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-alt);
}

.hero-card-tag {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.hero-card-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  letter-spacing: 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  text-align: center;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 60ch;
  
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
  max-width: 60ch;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose li:last-child {
  margin-bottom: 0;
}

.prose a {
  color: var(--accent);
  word-break: break-word;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose .intro-sep {
  margin: 1.35rem 0;
  text-align: left;
  letter-spacing: 0.06em;
  opacity: 0.65;
}

.prose .donate-qr {
  margin: 1.5rem auto 1.75rem;
  max-width: 350px;
}

.prose .donate-qr img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  background: #fff;
  box-shadow: 0 8px 32px rgba(124, 240, 198, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prose .donate-qr img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(124, 240, 198, 0.3);
}

.prose .donate-qr figcaption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
}

/* Donate section enhancement */
.section--alt .prose p strong {
  color: var(--accent);
}

.section--alt .prose p:first-of-type strong,
.section--alt .prose p:nth-of-type(2) strong,
.section--alt .prose p:nth-of-type(3) strong {
  font-size: 1.1rem;
}

/* Center donate section content */
#donate .prose p {
  text-align: center;
}

.prose ul.intro-support {
  list-style: none;
  padding-left: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.pill-list li {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* Blog grid */
.blog-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  transform: translateY(-2px);
}

.blog-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card-title {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.65rem;
  font-weight: 600;
  line-height: 1.35;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  margin: 0 0 1rem;
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* CTA */
.section--cta {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.cta-inner {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
}

.cta-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.cta-text {
  margin: 0 auto 1.75rem;
  max-width: 42ch;
  color: var(--muted);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social a {
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--bg);
  transition: border-color 0.2s, color 0.2s;
}

.social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.social a.social-copy {
  cursor: copy;
}

/* Nút liên hệ nổi — gọi / Zalo */
.fab-contact {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 300;
  font-family: var(--font);
}

.fab-contact__btn {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(145deg, #0d6b52, #0a5544);
  color: #fff;
  box-shadow: 0 8px 28px rgba(13, 107, 82, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="light"] .fab-contact__btn {
  background: linear-gradient(145deg, var(--accent), #0a8f6e);
  box-shadow: 0 8px 28px rgba(13, 107, 82, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.fab-contact__btn:hover {
  transform: scale(1.06);
}

.fab-contact__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.fab-contact__btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent) 55%, transparent);
  animation: fab-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.fab-contact.is-open .fab-contact__btn::after {
  animation-duration: 1.4s;
}

@keyframes fab-ping {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70%,
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.fab-contact__icon-wrap {
  position: relative;
  width: 28px;
  height: 28px;
}

.fab-contact__layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.fab-contact__layer svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.fab-contact__layer--facebook {
  animation: fab-icon-swap-a 2.8s ease-in-out infinite;
}

.fab-contact__layer--discord {
  animation: fab-icon-swap-b 2.8s ease-in-out infinite;
}

@keyframes fab-icon-swap-a {
  0%,
  42% {
    opacity: 1;
    transform: scale(1);
  }
  50%,
  92% {
    opacity: 0;
    transform: scale(0.88);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fab-icon-swap-b {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.88);
  }
  50%,
  92% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fab-contact__btn::after {
    animation: none;
    opacity: 0.35;
  }

  .fab-contact__layer--facebook,
  .fab-contact__layer--discord {
    animation: none;
  }

  .fab-contact__layer--facebook {
    opacity: 1;
  }

  .fab-contact__layer--discord {
    opacity: 0;
  }
}

.fab-contact__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  min-width: 200px;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform-origin: bottom right;
  animation: fab-panel-in 0.22s ease-out;
}

@keyframes fab-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fab-contact__panel[hidden] {
  display: none !important;
}

.fab-contact__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.fab-contact__link:hover {
  background: var(--accent-dim);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.fab-contact__link svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.fab-contact__link:not(.fab-contact__link--discord) svg path {
  fill: currentColor;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 200;
  transform: translate(-50%, 120%);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 70%, var(--text));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.copy-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 1.1rem;
  transition: border-color 0.2s;
}

.theme-toggle:hover {
  border-color: var(--accent);
}

.theme-toggle-sun {
  display: none;
}

[data-theme="light"] .theme-toggle-moon {
  display: none;
}

[data-theme="light"] .theme-toggle-sun {
  display: inline;
}

/* Music player + scrubber */
.section-music {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.music-wrap {
  max-width: 34rem;
  margin-inline: auto;
}

.music-card {
  margin-inline: auto;
  padding: clamp(1.1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.35rem);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.music-card audio {
  display: none;
}

.music-layout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.music-main {
  flex: 1;
  min-width: 0;
}

.music-play {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 65%, transparent);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s, border-color 0.2s, background 0.2s;
}

.music-play:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.music-play:active {
  transform: scale(0.96);
}

.music-play:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Một ô cố định: chỉ hiện play HOẶC pause (không xếp 2 icon cạnh nhau) */
.music-play-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.music-play-slot .music-icon {
  grid-area: 1 / 1;
  display: block;
  width: 22px;
  height: 22px;
}

.music-play .music-icon--pause {
  display: none;
}

.music-play.is-playing .music-icon--play {
  display: none;
}

.music-play.is-playing .music-icon--pause {
  display: block;
}

.music-track {
  margin: 0 0 0.65rem;
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.music-scrub-label {
  display: block;
  width: 100%;
  margin: 0 0 0.35rem;
  cursor: pointer;
}

.music-scrub {
  display: block;
  width: 100%;
  height: 1.35rem;
  margin: 0;
  padding: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.music-scrub:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.music-time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  color: color-mix(in srgb, var(--muted) 92%, transparent);
}

@media (max-width: 520px) {
  .music-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .music-main {
    width: 100%;
  }

  .music-track {
    text-align: center;
  }
}
