:root {
  --bg: #0c1a27;
  --surf: rgba(255, 255, 255, 0.06);
  --surf-hi: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --ink: #dceaf5;
  --muted: #6a90b0;
  --accent: #f5a623;
  --accent-d: #c47d0a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 5%, rgba(245, 166, 35, 0.12), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(52, 196, 124, 0.08), transparent 40%),
    linear-gradient(160deg, #0c1a27, #07111b);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: rgba(7, 17, 27, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.top-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}

a.top-brand {
  text-decoration: none;
}
a.top-brand:hover .brand-name {
  color: var(--accent);
}

.top-page-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.shell {
  width: min(880px, 94vw);
  margin: 1rem auto 2.2rem;
  display: grid;
  gap: 0.85rem;
}

.card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.card-label {
  font: 700 0.72rem/1 "Sora", sans-serif;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.hero-card {
  padding: 1rem;
}

.np-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.art-wrap {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.art-wrap.has-image img {
  display: block;
}

.art-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 2rem;
  background: linear-gradient(140deg, rgba(245, 166, 35, 0.15), rgba(106, 144, 176, 0.12));
}

.art-wrap.has-image .art-fallback {
  display: none;
}

.np-title {
  margin: 0;
  font: 700 clamp(1.35rem, 4.6vw, 2rem)/1.15 "Sora", sans-serif;
  color: var(--ink);
}

.np-meta {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.track-title {
  font-weight: 600;
  color: var(--ink);
}

.track-meta {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.btn-accent,
.btn-ghost {
  text-decoration: none;
  border-radius: 10px;
  padding: 0.62rem 0.9rem;
  font: 600 0.95rem "Outfit", sans-serif;
}

.btn-accent {
  color: #fff;
  border: none;
  background: linear-gradient(140deg, var(--accent), var(--accent-d));
}

.btn-ghost {
  color: var(--muted);
  border: 1px solid var(--border);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

@media (max-width: 620px) {
  .np-grid {
    grid-template-columns: 1fr;
  }

  .art-wrap {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
