/* ==========================================================================
   汽水音乐 (Soda Music) — 官方风格落地页
   Design system replicated as production CSS. Self-contained, responsive.
   ========================================================================== */

:root {
  --bg: #060606;
  --bg-soft: #0a0b0c;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .66);
  --muted-2: rgba(255, 255, 255, .56);
  --line: rgba(255, 255, 255, .07);
  --line-2: rgba(255, 255, 255, .12);
  --green: #2FE875;
  --green-hi: #7CFF9E;
  --grad: linear-gradient(135deg, #CBFF45, #12DE66);
  --grad-soft: linear-gradient(180deg, rgba(43,224,110,.08), rgba(255,255,255,.02));
  --on-grad: #08130B;
  --radius: 16px;
  --maxw: 1240px;
  --font-cn: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-latin: 'Space Grotesk', var(--font-cn);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-latin);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-cn); }
a { color: var(--green); text-decoration: none; transition: color .18s ease; }
/* only plain (unclassed) links get the green hover; button-styled anchors keep their own color */
a:not([class]):hover { color: var(--green-hi); }
img { max-width: 100%; }
::selection { background: var(--green); color: var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 8px; }
::-webkit-scrollbar-track { background: transparent; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.eyebrow { font-size: 14px; color: var(--green); letter-spacing: 3px; margin-bottom: 12px; }
.section-title { margin: 0; font-size: 38px; font-weight: 900; }
.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; }
.page { padding-bottom: 96px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes eq { 0% { transform: scaleY(.28); } 100% { transform: scaleY(1); } }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty { 0% { transform: translateY(0) scale(1); opacity: .5; } 50% { opacity: .85; } 100% { transform: translateY(-120px) scale(1.15); opacity: 0; } }
@keyframes glow { 0%, 100% { opacity: .55; } 50% { opacity: .9; } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 40px;
  background: rgba(6,6,6,.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-left { display: flex; align-items: center; gap: 44px; }
.nav-logo { display: block; height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 15px; }
.nav-links a { color: rgba(255,255,255,.72); }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-search {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  font-size: 14px; color: var(--muted-2); background: none; cursor: pointer;
  font-family: inherit; transition: border-color .18s, color .18s;
}
.nav-search:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-download-sm {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 999px; background: var(--grad);
  color: var(--on-grad); font-weight: 700; font-size: 14px; cursor: pointer; border: 0;
  box-shadow: 0 6px 22px rgba(43,224,110,.32); font-family: inherit;
  transition: filter .18s, transform .18s;
}
.btn-download-sm:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; padding: 74px 40px 92px; min-height: 640px; }
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
  background:
    radial-gradient(1200px 700px at 72% 44%, rgba(20,40,26,.7), transparent 60%),
    radial-gradient(900px 600px at 12% 20%, rgba(30,30,34,.6), transparent 55%),
    linear-gradient(180deg, #0b0d0c 0%, #070707 55%, #050505 100%);
}
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,6,.42) 0%, rgba(6,6,6,.72) 45%, rgba(6,6,6,.97) 100%); }
.glow-a { position: absolute; top: -120px; left: 8%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(43,224,110,.5) 0%, rgba(43,224,110,0) 66%); filter: blur(30px); animation: glow 6s ease-in-out infinite; }
.glow-b { position: absolute; bottom: -80px; right: 14%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(198,255,69,.28) 0%, rgba(198,255,69,0) 68%); filter: blur(20px); }
.particle { position: absolute; border-radius: 50%; }
.p1 { left: 20%; bottom: 60px; width: 14px; height: 14px; background: rgba(198,255,69,.6); animation: floaty 5.5s ease-in infinite; }
.p2 { left: 40%; bottom: 20px; width: 9px; height: 9px; background: rgba(43,224,110,.55); animation: floaty 6.8s ease-in .8s infinite; }
.p3 { left: 9%; bottom: 120px; width: 20px; height: 20px; background: rgba(255,255,255,.14); animation: floaty 7.5s ease-in 1.6s infinite; }
.hero-grid { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: minmax(0,42%) minmax(0,58%); gap: 36px; align-items: center; }
.hero-copy { animation: rise .7s ease both; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border: 1px solid rgba(43,224,110,.35); border-radius: 999px; background: rgba(43,224,110,.08); font-size: 13px; color: var(--green-hi); margin-bottom: 26px; }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero-logo { display: block; height: 64px; width: auto; margin-bottom: 20px; filter: drop-shadow(0 8px 26px rgba(43,224,110,.28)); }
.hero-title { margin: 0 0 16px; font-size: 52px; line-height: 1.12; font-weight: 900; letter-spacing: -.5px; text-wrap: balance; }
.hero-title .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { margin: 0 0 34px; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 440px; }
.cta-col { display: flex; flex-direction: column; gap: 14px; max-width: 420px; }
.btn-primary { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: 14px; background: var(--grad); color: var(--on-grad); font-weight: 800; font-size: 17px; cursor: pointer; border: 0; font-family: inherit; box-shadow: 0 12px 34px rgba(43,224,110,.34); transition: filter .18s, transform .18s; }
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-2px); }
.btn-row { display: flex; gap: 14px; }
.btn-light { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px; border-radius: 14px; background: rgba(255,255,255,.92); color: #0A0A0A; font-weight: 700; font-size: 15px; cursor: pointer; border: 0; font-family: inherit; transition: background .18s, transform .18s; }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.hero-links { display: flex; gap: 22px; margin-top: 6px; font-size: 13px; }
.hero-links a { color: rgba(255,255,255,.5); border-bottom: 1px dashed rgba(43,224,110,.5); padding-bottom: 2px; }
.hero-links a:hover { color: var(--green-hi); }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; animation: rise .9s ease both; }
.hero-visual img { width: 100%; max-width: 720px; height: auto; display: block; filter: drop-shadow(0 44px 84px rgba(0,0,0,.6)); }

/* ============ MARQUEE ============ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(43,224,110,.04); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; width: max-content; animation: marq 40s linear infinite; }
.marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; gap: 14px; align-items: center; padding-right: 14px; }
.marquee-tag { display: flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 999px; background: var(--grad); color: var(--on-grad); font-weight: 800; font-size: 14px; white-space: nowrap; font-family: var(--font-cn); flex: none; }
.bub { display: flex; align-items: center; gap: 11px; padding: 7px 18px 7px 7px; border-radius: 14px; cursor: pointer; flex: none; background: none; border: 0; color: inherit; font-family: inherit; transition: background .18s; }
.bub:hover { background: rgba(255,255,255,.06); }
.cover { position: relative; overflow: hidden; display: block; flex: none; background: #14201a; }
.cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bub .cover { width: 50px; height: 50px; border-radius: 10px; box-shadow: 0 6px 16px rgba(0,0,0,.45); }
.bub-meta { min-width: 0; text-align: left; }
.bub-title { font-size: 14px; font-weight: 700; font-family: var(--font-cn); white-space: nowrap; }
.bub-artist { font-size: 12px; color: var(--muted-2); white-space: nowrap; }

/* ============ FEATURES ============ */
.features { max-width: var(--maxw); margin: 0 auto; padding: 96px 40px 40px; }
.center-head { text-align: center; margin-bottom: 52px; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card { padding: 28px 24px; border-radius: 18px; background: var(--grad-soft); border: 1px solid rgba(255,255,255,.08); transition: border-color .2s, transform .2s; }
.feat-card:hover { border-color: rgba(43,224,110,.45); transform: translateY(-6px); }
.feat-icon { width: 48px; height: 48px; border-radius: 13px; background: rgba(43,224,110,.14); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--green); }
.feat-card h3 { margin: 0 0 9px; font-size: 19px; font-weight: 800; }
.feat-card p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.55); }

/* ============ DISCOVER / PLAYLISTS ============ */
.discover { max-width: var(--maxw); margin: 0 auto; padding: 70px 40px 40px; }
.disc-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; flex-wrap: wrap; gap: 16px; }
.disc-head h2 { margin: 0; font-size: 36px; font-weight: 900; }
.cats { display: flex; gap: 10px; flex-wrap: wrap; }
.cat { padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-cn); background: rgba(255,255,255,.05); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.12); transition: all .18s; }
.cat:hover { color: #fff; border-color: rgba(43,224,110,.5); }
.cat.active { background: var(--grad); color: var(--on-grad); border-color: transparent; }
.pl-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.pl-card { cursor: pointer; background: none; border: 0; padding: 0; color: inherit; font-family: inherit; text-align: left; transition: transform .2s; }
.pl-card:hover { transform: translateY(-6px); }
.pl-cover { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1; margin-bottom: 11px; box-shadow: 0 12px 30px rgba(0,0,0,.4); }
.pl-cover .cover-img { position: absolute; inset: 0; z-index: 1; }
.pl-cover .shade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55)); }
.pl-badge { position: absolute; top: 9px; left: 9px; z-index: 3; display: flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 999px; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); font-size: 11px; color: #fff; font-family: var(--font-latin); }
.pl-play { position: absolute; bottom: 9px; right: 9px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(43,224,110,.5); transition: transform .18s; }
.pl-card:hover .pl-play { transform: scale(1.12); }
.pl-name { font-size: 14px; font-weight: 700; font-family: var(--font-cn); line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-desc { font-size: 12px; color: var(--muted-2); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============ CHARTS + ARTISTS ============ */
.cluster { max-width: var(--maxw); margin: 0 auto; padding: 70px 40px 40px; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: 44px; }
.sec-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.sec-head .bar { width: 5px; height: 30px; border-radius: 3px; background: linear-gradient(#CBFF45, #12DE66); }
.sec-head h2 { margin: 0; font-size: 30px; font-weight: 900; }
.sec-head .note { font-size: 12px; color: rgba(255,255,255,.56); align-self: flex-end; margin-bottom: 4px; }
.chart-list { border-radius: 18px; background: rgba(255,255,255,.03); border: 1px solid var(--line); overflow: hidden; }
.chart-row { display: flex; align-items: center; gap: 16px; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,.05); cursor: pointer; background: none; width: 100%; border-left: 0; border-right: 0; border-top: 0; color: inherit; font-family: inherit; text-align: left; transition: background .18s; }
.chart-row:last-child { border-bottom: 0; }
.chart-row:hover { background: rgba(43,224,110,.07); }
.rank { width: 26px; text-align: center; font-weight: 800; font-size: 17px; font-family: var(--font-latin); color: var(--muted-2); }
.chart-row.top .rank { color: var(--green); }
.row-cover { position: relative; width: 46px; height: 46px; border-radius: 9px; flex: none; }
.eq { position: absolute; inset: 0; z-index: 2; background: rgba(0,0,0,.45); display: none; align-items: center; justify-content: center; }
.chart-row.playing .eq { display: flex; }
.eq span { width: 3px; height: 16px; background: var(--green); border-radius: 2px; transform-origin: bottom; animation: eq .7s ease-in-out infinite alternate; }
.eq span:nth-child(2) { animation-delay: .2s; }
.eq span:nth-child(3) { animation-delay: .4s; }
.row-main { flex: 1; min-width: 0; }
.row-title { font-size: 15px; font-weight: 700; font-family: var(--font-cn); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chart-row.playing .row-title { color: var(--green); }
.row-artist { font-size: 12px; color: var(--muted-2); margin-top: 2px; }
.trend { font-size: 14px; font-weight: 700; font-family: var(--font-latin); }
.trend.up { color: var(--green); }
.trend.down { color: #ff6b6b; }
.trend.flat { color: rgba(255,255,255,.56); }
.dur { font-size: 12px; color: rgba(255,255,255,.56); width: 42px; text-align: right; font-family: var(--font-latin); }
.artist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 14px; }
.artist { text-align: center; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; font-family: inherit; transition: transform .2s; }
.artist:hover { transform: translateY(-4px); }
.artist .cover { width: 100%; aspect-ratio: 1; border-radius: 50%; margin-bottom: 10px; border: 2px solid rgba(43,224,110,.4); }
.artist-name { font-size: 14px; font-weight: 700; font-family: var(--font-cn); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.artist-fans { font-size: 11px; color: rgba(255,255,255,.56); margin-top: 2px; }

/* ============ STATS ============ */
.stats { max-width: var(--maxw); margin: 44px auto 0; padding: 0 40px; }
.stats-card { border-radius: 24px; background: linear-gradient(135deg, rgba(43,224,110,.14), rgba(198,255,69,.06)); border: 1px solid rgba(43,224,110,.2); padding: 46px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 44px; font-weight: 800; font-family: var(--font-latin); background: linear-gradient(135deg, #CBFF45, #2FE875); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 6px; font-family: var(--font-cn); }

/* ============ TESTIMONIALS ============ */
.tst { padding: 80px 0 40px; overflow: hidden; }
.tst-track { display: flex; gap: 18px; width: max-content; animation: marq 46s linear infinite; padding: 0 9px; }
.tst:focus-within .tst-track { animation-play-state: paused; }
.tst-dup { display: contents; }
.tst-card { width: 320px; padding: 24px; border-radius: 18px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.tst-head { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.tst-avatar { width: 42px; height: 42px; border-radius: 50%; }
.tst-name { font-size: 14px; font-weight: 700; font-family: var(--font-cn); }
.tst-tag { font-size: 12px; color: rgba(255,255,255,.56); }
.tst-text { margin: 0; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.72); font-family: var(--font-cn); }

/* ============ DOWNLOAD CTA ============ */
.download { max-width: var(--maxw); margin: 60px auto 0; padding: 0 40px; }
.dl-card { position: relative; overflow: hidden; border-radius: 28px; background: linear-gradient(120deg, #0d1a10, #0a0f0b); border: 1px solid rgba(43,224,110,.2); padding: 60px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.dl-glow { position: absolute; top: -60px; right: 30%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(43,224,110,.35), rgba(43,224,110,0) 68%); filter: blur(20px); }
.dl-copy { position: relative; }
.dl-copy h2 { margin: 0 0 16px; font-size: 40px; font-weight: 900; line-height: 1.2; }
.dl-copy p { margin: 0 0 30px; font-size: 16px; color: rgba(255,255,255,.6); max-width: 420px; }
.dl-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.dl-btn { display: flex; align-items: center; gap: 9px; padding: 14px 22px; border-radius: 13px; font-weight: 700; font-size: 15px; cursor: pointer; border: 0; font-family: inherit; transition: transform .18s, background .18s; }
.dl-btn.primary { background: var(--grad); color: var(--on-grad); font-weight: 800; }
.dl-btn.primary:hover { transform: translateY(-2px); }
.dl-btn.ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); color: #fff; }
.dl-btn.ghost:hover { background: rgba(255,255,255,.16); }
.qr-wrap { position: relative; text-align: center; }
.qr { width: 150px; height: 150px; border-radius: 18px; background: #fff; padding: 12px; display: grid; grid-template-columns: repeat(9, 1fr); grid-template-rows: repeat(9, 1fr); gap: 2px; }
.qr-cell { border-radius: 1px; }
.qr-cap { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.6); font-family: var(--font-cn); }

/* ============ FAQ ============ */
.faq { max-width: 900px; margin: 90px auto 0; padding: 0 40px; }
.faq-list { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.02); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-size: 17px; font-weight: 700; font-family: var(--font-cn); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--green); font-weight: 400; transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; font-size: 15px; line-height: 1.7; color: var(--muted); font-family: var(--font-cn); }

/* ============ FOOTER ============ */
.footer { margin-top: 80px; border-top: 1px solid var(--line); padding: 56px 40px 30px; }
.foot-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.foot-logo { display: block; height: 30px; width: auto; margin-bottom: 14px; }
.foot-brand p { margin: 0; font-size: 13px; color: rgba(255,255,255,.56); line-height: 1.7; max-width: 280px; }
.foot-col h3 { font-size: 14px; font-weight: 700; margin: 0 0 16px; font-family: var(--font-cn); }
.foot-col .links { display: flex; flex-direction: column; gap: 11px; font-size: 13px; }
.foot-col .links a { color: rgba(255,255,255,.62); }
.foot-col .links a:hover { color: var(--green-hi); }
.foot-bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.9; text-align: center; }
.foot-bottom a { color: rgba(255,255,255,.72); }
.foot-links-inline { margin-top: 8px; }
.foot-links-inline a { margin: 0 6px; }

/* ============ STICKY PLAYER ============ */
.player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; height: 80px;
  background: rgba(10,11,12,.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); align-items: center; padding: 0 24px; gap: 20px;
}
.np { display: flex; align-items: center; gap: 14px; min-width: 0; }
.np-cover { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex: none; border: 2px solid rgba(43,224,110,.35); position: relative; }
.np-cover.spin .cover-img { animation: spin 9s linear infinite; }
.np-meta { min-width: 0; }
.np-title { font-size: 14px; font-weight: 700; font-family: var(--font-cn); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-artist { font-size: 12px; color: rgba(255,255,255,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.like { cursor: pointer; flex: none; margin-left: 6px; background: none; border: 0; padding: 0; display: flex; }
.transport { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 440px; max-width: 42vw; }
.tp-btns { display: flex; align-items: center; gap: 22px; }
.tp-btn { cursor: pointer; color: rgba(255,255,255,.75); background: none; border: 0; padding: 0; display: flex; transition: color .18s; }
.tp-btn:hover { color: #fff; }
.play-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; cursor: pointer; border: 0; box-shadow: 0 6px 20px rgba(43,224,110,.4); transition: transform .18s; }
.play-btn:hover { transform: scale(1.06); }
.seek-row { display: flex; align-items: center; gap: 10px; width: 100%; }
.time { font-size: 11px; color: var(--muted-2); font-family: var(--font-latin); width: 34px; }
.time.l { text-align: right; }
.seek { flex: 1; height: 5px; border-radius: 5px; background: rgba(255,255,255,.14); cursor: pointer; position: relative; }
.seek-fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, #CBFF45, #2FE875); width: 30%; position: relative; }
.seek-fill span { position: absolute; right: -5px; top: 50%; transform: translateY(-50%); width: 11px; height: 11px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px rgba(43,224,110,.8); }
.right-ctrl { display: flex; align-items: center; justify-content: flex-end; gap: 18px; color: rgba(255,255,255,.6); }
.eq-mini { display: flex; gap: 2px; align-items: flex-end; height: 18px; }
.eq-mini span { width: 3px; background: var(--green); border-radius: 2px; transform-origin: bottom; animation: eq .6s ease-in-out infinite alternate; animation-play-state: paused; }
.eq-mini span:nth-child(1) { height: 60%; }
.eq-mini span:nth-child(2) { height: 100%; animation-delay: .15s; }
.eq-mini span:nth-child(3) { height: 75%; animation-delay: .3s; }
.eq-mini span:nth-child(4) { height: 45%; animation-delay: .45s; }
.player.is-playing .eq-mini span { animation-play-state: running; }
.vol { display: flex; align-items: center; gap: 8px; }
.vol-track { width: 70px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.14); }
.vol-fill { height: 100%; width: 70%; border-radius: 4px; background: rgba(255,255,255,.55); }

/* ============ TOAST ============ */
.toast { position: fixed; bottom: 104px; left: 50%; transform: translateX(-50%) translateY(12px); z-index: 90; padding: 12px 22px; border-radius: 12px; background: var(--grad); color: var(--on-grad); font-weight: 700; font-size: 14px; font-family: var(--font-cn); box-shadow: 0 12px 34px rgba(43,224,110,.4); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ ACCESSIBILITY ============ */
/* Skip link: off-screen until keyboard-focused, then revealed top-left */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; width: auto; height: auto; padding: 10px 18px; background: var(--green); color: var(--bg); border-radius: 10px; font-weight: 700; font-family: var(--font-cn); box-shadow: 0 8px 24px rgba(43,224,110,.4); }
/* Visible keyboard focus indicator for all custom controls */
:focus-visible { outline: 2px solid var(--green-hi); outline-offset: 2px; border-radius: 8px; }
/* Pause auto-scrolling rows on keyboard focus (declared above) and, only on hover-capable
   pointing devices, on hover — avoids sticky pause after a tap on touchscreens */
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track,
  .tst:hover .tst-track { animation-play-state: paused; }
}

/* ============ LAYOUT FIXES: blockify spans used as block content ============ */
.hidden { display: none !important; }
.pl-card { display: block; width: 100%; }
.pl-cover { display: block; }
.pl-name, .pl-desc { display: block; }
.bub-meta, .bub-title, .bub-artist { display: block; }
.row-main, .row-title, .row-artist { display: block; }
.np-meta, .np-title, .np-artist { display: block; }
.artist-name, .artist-fans { display: block; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .pl-grid { grid-template-columns: repeat(4, 1fr); }
  .cluster { grid-template-columns: 1fr; gap: 54px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .hero-title { font-size: 40px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-card { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .dl-card { grid-template-columns: 1fr; }
  .qr-wrap { justify-self: start; }
  .section-title, .disc-head h2 { font-size: 30px; }
}
@media (max-width: 640px) {
  .container, .hero, .features, .discover, .cluster, .stats, .download, .faq, .footer, .nav { padding-left: 20px; padding-right: 20px; }
  .nav { padding-top: 12px; padding-bottom: 12px; }
  .nav-search { display: none; }
  .hero { padding-top: 48px; padding-bottom: 60px; min-height: 0; }
  .hero-title { font-size: 32px; }
  .pl-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .dl-card { padding: 36px 24px; }
  .dl-copy h2 { font-size: 30px; }
  .stats-card { grid-template-columns: 1fr 1fr; padding: 32px 22px; }
  .stat-num { font-size: 34px; }
  .foot-grid { grid-template-columns: 1fr; }
  /* Slim the player on phones but KEEP prev/play/next usable; drop only the seek bar + extras.
     Use flex (not grid) here for predictable shrink behavior on narrow viewports. */
  .player { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 12px; gap: 12px; }
  .np { flex: 1 1 auto; min-width: 0; }
  .transport { flex: 0 0 auto; width: auto; max-width: none; }
  .seek-row { display: none; }
  .right-ctrl { display: none; }
  .np-cover { width: 44px; height: 44px; }
  .tp-btns { gap: 16px; }
  .page { padding-bottom: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .marquee-track, .tst-track { animation: none; }
}
