:root {
  --bg: #050505;
  --panel: #0f0f0f;
  --panel2: #181818;
  --border: #262626;
  --text: #f5f5f5;
  --muted: #8a8a8a;
  --w: #ffffff;
  --grad: linear-gradient(135deg, #ffffff, #7a7a7a);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; width: 100%; }
main { flex: 1; }
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; letter-spacing: 1.5px; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand a { color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 12px; }
nav .links a { color: var(--muted); text-decoration: none; margin-left: 24px; font-size: 15px; }
nav .links a:hover { color: var(--w); }
nav .links a.active { color: var(--w); border-bottom: 1px solid var(--w); padding-bottom: 2px; }

.page-head { text-align: center; padding: 54px 0 34px; }
.page-head h1 { font-size: 46px; font-weight: 900; letter-spacing: 2px; color: var(--w); }
.page-head p { color: var(--muted); font-size: 16px; max-width: 560px; margin: 10px auto 0; }
.breadcrumb { text-align: center; padding-top: 20px; font-size: 13px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--w); }
.breadcrumb span { color: var(--muted); margin: 0 8px; }

.hero { text-align: center; padding: 70px 0 40px; }
.hero .logo-wrap {
  width: 190px; height: 190px; margin: 0 auto 26px; border-radius: 50%; position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 0 0 12px var(--panel), 0 0 0 13px var(--border), 0 30px 70px rgba(0,0,0,.8);
}
.hero .logo-wrap img { width: 100%; height: 100%; border-radius: 50%; display: block; animation: spin 24s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero h1 { font-size: 62px; font-weight: 900; letter-spacing: 3px; line-height: 1.1; color: var(--w); }
.hero .tag { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--muted); letter-spacing: 4px; text-transform: uppercase; }
.hero p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 12px auto 30px; }
.hero .cta {
  display: inline-flex; gap: 10px; background: var(--w); color: #050505; font-weight: 800;
  padding: 15px 36px; border-radius: 999px; text-decoration: none; font-size: 16px; letter-spacing: .5px;
  box-shadow: 0 12px 40px rgba(255,255,255,.12); transition: transform .15s;
}
.hero .cta:hover { transform: translateY(-2px); }
.hero .cta.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); box-shadow: none; }

.section-title { font-size: 28px; font-weight: 800; text-align: center; margin: 64px 0 8px; letter-spacing: 1px; color: var(--w); }
.section-sub { text-align: center; color: var(--muted); font-size: 15px; margin-bottom: 30px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding-bottom: 40px; }

.artist {
  background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 24px;
  text-align: center; transition: border-color .15s; text-decoration: none; color: inherit; display: block;
}
.artist:hover { border-color: #6b6b6b; }
.artist .avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 26px; color: #050505;
}
.artist h3 { font-size: 16px; }
.artist p { font-size: 13px; color: var(--muted); }

.album {
  background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 18px;
  transition: border-color .15s; text-decoration: none; color: inherit; display: block;
}
.album:hover { border-color: #6b6b6b; }
.album .cover {
  aspect-ratio: 1; border-radius: 14px; margin-bottom: 14px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #2a2a2a, #0d0d0d);
  display: flex; align-items: center; justify-content: center;
}
.album .cover img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.album h3 { font-size: 16px; }
.album p { font-size: 13px; color: var(--muted); }

.tracks { display: grid; gap: 10px; padding-bottom: 40px; }
.track {
  display: flex; align-items: center; gap: 16px; background: var(--panel); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 18px; transition: border-color .15s;
}
.track:hover { border-color: #6b6b6b; }
.track .num { color: var(--muted); font-size: 14px; width: 24px; text-align: center; }
.track .play { color: var(--w); font-size: 18px; background: none; border: none; cursor: pointer; font-family: inherit; }
.track .play:hover { color: #c9c9c9; }
.track .play:disabled { opacity: .4; cursor: default; }
.track .t-title { font-weight: 600; }
.track .t-meta { font-size: 13px; color: var(--muted); }
.track .dur { color: var(--muted); font-size: 13px; }
.track .alb { font-size: 12px; color: var(--muted); border: 1px solid var(--border); padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.track .soon {
  margin-left: auto; font-size: 11px; color: var(--muted); border: 1px dashed var(--border);
  padding: 3px 10px; border-radius: 999px; letter-spacing: 1px; white-space: nowrap;
}
.track .dl { color: var(--muted); text-decoration: none; font-size: 16px; }
.track .dl:hover { color: var(--w); }

.player {
  max-width: 560px; margin: 46px auto 40px; background: var(--panel); border: 1px solid var(--border);
  border-radius: 22px; padding: 26px; box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.player .disc {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 0 0 8px var(--panel2);
}
.player .disc img { width: 100%; height: 100%; animation: spin 12s linear infinite; }
.player .now { text-align: center; font-weight: 700; }
.player .now span { display: block; font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 1px; }
.trackbar { height: 6px; background: var(--panel2); border-radius: 99px; margin: 20px 0 14px; position: relative; overflow: hidden; }
.trackbar i { display: block; width: 0%; height: 100%; background: var(--grad); border-radius: 99px; }
.times { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.player .controls { display: flex; justify-content: center; gap: 28px; margin-top: 14px; align-items: center; }
.player .controls button {
  background: none; border: none; color: var(--w); font-size: 22px; cursor: pointer; font-family: inherit; line-height: 1;
}
.player .controls button:hover { color: #c9c9c9; }
.player .controls button:disabled { opacity: .35; cursor: default; }
.player .controls button.play { font-size: 30px; }

.album-featured {
  display: flex; gap: 26px; align-items: stretch; background: var(--panel);
  border: 1px solid var(--border); border-radius: 22px; padding: 26px; margin-bottom: 20px; flex-wrap: wrap;
}
.album-featured .cover {
  width: 230px; max-width: 100%; aspect-ratio: 1; border-radius: 16px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, #2a2a2a, #0d0d0d); display: flex; align-items: center; justify-content: center;
}
.album-featured .cover img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.badge {
  display: inline-block; font-size: 12px; color: #050505; background: var(--w); font-weight: 800;
  letter-spacing: 1px; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.album-list li {
  counter-increment: tr; display: flex; gap: 12px; font-size: 15px;
  border-bottom: 1px dashed var(--border); padding-bottom: 8px;
}
.album-list li:last-child { border-bottom: none; padding-bottom: 0; }
.album-list { list-style: none; counter-reset: tr; display: grid; gap: 8px; margin: 16px 0; }
.album-list .tnum { color: var(--muted); width: 20px; }
.album-list .tag { color: var(--muted); font-size: 12px; align-self: center; }
.btn {
  display: inline-block; background: var(--w); color: #050505; font-weight: 800; font-size: 15px;
  padding: 13px 30px; border-radius: 999px; text-decoration: none; letter-spacing: .5px;
  box-shadow: 0 12px 40px rgba(255,255,255,.12); transition: transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); box-shadow: none; }

.disc-section { margin: 44px 0; }
.disc-section h2 { font-size: 24px; font-weight: 800; letter-spacing: 1px; color: var(--w); margin-bottom: 4px; }
.disc-section .sub { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.avatar-big {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 0 14px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 32px; color: #050505;
}

.about { max-width: 760px; margin: 0 auto; text-align: center; padding-bottom: 50px; }
.about p { color: var(--muted); font-size: 16px; margin-bottom: 14px; }
.about p b { color: var(--text); }

.profile-head { text-align: center; padding: 56px 0 34px; }
.profile-head .avatar {
  width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 46px; color: #050505;
  border: 1px solid var(--border); box-shadow: 0 0 0 10px var(--panel), 0 0 0 11px var(--border);
}
.profile-head h1 { font-size: 44px; font-weight: 900; letter-spacing: 1px; color: var(--w); }
.profile-head .aka {
  display: inline-block; margin-top: 10px; font-size: 14px; color: var(--muted);
  border: 1px solid var(--border); padding: 5px 16px; border-radius: 999px; letter-spacing: .5px;
}
.profile-head .aka b { color: var(--w); }
.profile-head .role {
  display: inline-block; margin-top: 12px; font-size: 12px; color: #050505;
  background: var(--w); font-weight: 800; letter-spacing: 1px; padding: 4px 14px; border-radius: 999px;
}
.profile-head p { color: var(--muted); font-size: 16px; max-width: 560px; margin: 14px auto 0; }
.origin {
  margin: 10px 0 60px; background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 26px; text-align: center;
}
.origin a { color: var(--w); text-decoration: none; font-weight: 600; border-bottom: 1px solid #555; }

.app-section { text-align: left; }
.app-section .app-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.app-section .btn.ghost { color: var(--w); }

footer { border-top: 1px solid var(--border); padding: 24px 0 40px; text-align: center; color: var(--muted); font-size: 14px; }
@media (max-width: 900px) {
  nav { flex-wrap: wrap; gap: 10px; }
  nav .links a { margin-left: 14px; }
}
@media (max-width: 640px) {
  .app-section .app-links { flex-direction: column; }
  .app-section .btn { text-align: center; }
  .wrap { padding: 0 16px; }
  nav { flex-direction: column; gap: 10px; padding: 14px 0; }
  nav .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px 10px; }
  nav .links a { margin-left: 0; font-size: 13px; }
  .brand { font-size: 17px; }
  .hero h1 { font-size: 36px; }
  .hero .logo-wrap { width: 140px; height: 140px; }
  .hero { padding: 46px 0 28px; }
  .hero p { font-size: 15px; }
  .hero .cta { padding: 13px 26px; font-size: 15px; }
  .section-title { font-size: 24px; margin-top: 44px; }
  .page-head { padding: 40px 0 24px; }
  .page-head h1 { font-size: 30px; }
  .album-featured .cover { width: 100%; }
  .album-featured { padding: 18px; gap: 18px; }
  .player { padding: 20px; margin: 30px auto 28px; }
  .track { gap: 10px; padding: 12px 12px; flex-wrap: wrap; }
  .track .t-title { font-size: 15px; }
  .track .alb { display: none; }
  .track .dur { margin-left: auto; }
  .disc-section h2 { font-size: 20px; }
  .profile-head { padding: 40px 0 24px; }
  .profile-head h1 { font-size: 32px; }
  .profile-head .avatar { width: 104px; height: 104px; font-size: 36px; }
  .about p { font-size: 15px; }
  .origin { padding: 18px 16px; }
}
