@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #1B1B2F;
  --bg-raised: #232338;
  --card-bg: #24243D;
  --card-border: rgba(255, 255, 255, 0.07);

  --accent: #0D6FFD;
  --accent-hover: #2b83ff;
  --accent-secondary: #5E6ED7;
  --request-purple: #5D3587;
  --request-purple-hover: #6d3e9c;

  --text: #EDEDF6;
  --text-dim: #9797B5;
  --text-faint: #6d6d8c;

  --explicit-tag: #0D6FFD;
  --explicit-tag-bg: rgba(13, 111, 253, 0.14);
  --warning: #F5A623;
  --warning-bg: rgba(245, 166, 35, 0.1);
  --warning-border: rgba(245, 166, 35, 0.35);
  --error: #F0576A;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 68px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1.5px 1.5px at 80% 10%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 30% 85%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 90% 55%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.5px 1.5px at 45% 40%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 15% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 70% 90%, rgba(255,255,255,0.4), transparent);
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: twinkle 6s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .starfield { animation: none; opacity: 0.75; }
}

.page {
  position: relative;
  z-index: 1;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  background: rgba(27, 27, 47, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.navbar .brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.navbar .brand-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
}

.navbar .tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: 999px;
}

.navbar .tabs a {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s ease, background 0.15s ease;
}

.navbar .tabs a:hover { color: var(--text); }

.navbar .tabs a.active {
  color: var(--text);
  background: var(--accent);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.hero {
  text-align: center;
  padding: 64px 20px 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--accent);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.hero .tagline {
  font-size: 16px;
  color: var(--accent-secondary);
  margin: 0 0 10px;
  font-weight: 500;
}

.hero .explicit-note {
  font-size: 13px;
  color: var(--text-faint);
  margin: 0;
}

.hero.playlists-hero { padding-bottom: 24px; }

.hero.page-hero {
  padding-top: 40px;
  padding-bottom: 8px;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
  padding: 12px 0 90px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
}

.request-card {
  background: var(--request-purple);
  border: 1px solid rgba(255,255,255,0.14);
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  min-height: 100%;
  padding: 28px 20px;
}

.request-card:hover { background: var(--request-purple-hover); }

.request-card .plus {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 16px;
  transition: transform 0.18s ease;
}

.request-card:hover .plus { transform: scale(1.08); }

.request-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 8px;
}

.request-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 16px;
  line-height: 1.5;
}

.request-card .request-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--bg-raised);
}

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

.explicit-tag,
.row-explicit {
  flex-shrink: 0;
  background: var(--explicit-tag-bg);
  color: var(--explicit-tag);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.song-card h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.song-card h3 .title-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.song-card .artist {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listen-btn {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 0;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s ease;
  width: 100%;
}

.listen-btn:hover { background: var(--accent-hover); }
.listen-btn img { width: 12px; height: 12px; }

.warning-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 0 0 32px;
  text-align: left;
}

.warning-banner strong {
  color: var(--warning);
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.warning-banner p {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.warning-icon {
  color: var(--warning);
  font-size: 18px;
  line-height: 1.3;
  flex-shrink: 0;
}

.warning-banner-compact {
  align-items: center;
  margin: 0 0 24px;
}

.warning-banner-compact p {
  color: var(--warning);
  font-size: 13.5px;
  font-weight: 500;
}

.playlist-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding-bottom: 90px;
}

.playlist-option-card {
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 32px 24px;
}

.playlist-option-card:hover { border-color: var(--accent); }
.playlist-option-card:hover .playlist-option-icon { transform: scale(1.08); }

.playlist-option-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(13, 111, 253, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
  transition: transform 0.18s ease;
}

.playlist-option-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 8px;
}

.playlist-option-card p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 16px;
  line-height: 1.5;
}

.playlist-option-card .playlist-option-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-hover);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.form-shell {
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 20px 100px;
}

.form-shell .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.form-shell .back-link:hover { color: var(--text); }

.form-shell h1 {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 30px;
  margin: 0 0 8px;
}

.form-shell > p.sub {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0 0 28px;
  line-height: 1.5;
}

.am-search {
  margin-bottom: 28px;
}

.am-search-input {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.15s ease;
}

.am-search-input:focus { border-color: var(--accent); }

.am-results {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 320px;
  overflow-y: auto;
}

.am-empty {
  font-size: 13px;
  color: var(--text-faint);
  margin: 8px 2px 0;
}

.am-result-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.am-result-row:hover {
  background: var(--bg-raised);
  border-color: rgba(255,255,255,0.16);
}

.am-result-art {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--bg-raised);
  flex-shrink: 0;
}

.am-result-text {
  flex: 1;
  min-width: 0;
}

.am-result-title {
  font-size: 13.5px;
  font-weight: 600;
  margin: 0 0 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.am-result-artist {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Selected-song preview */
.am-preview {
  margin-bottom: 24px;
}

.am-preview-label {
  font-size: 12.5px;
  color: var(--text-faint);
  margin: 0 0 8px;
}

.am-preview-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.am-preview-art {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg-raised);
  flex-shrink: 0;
}

.am-preview-text {
  min-width: 0;
  flex: 1;
}

.am-preview-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.am-preview-title {
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.am-preview-artist {
  font-size: 13px;
  color: var(--text-dim);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.field .hint {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 400;
}

.field input,
.field textarea {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.submit-btn {
  background: var(--request-purple);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
  width: 100%;
}

.submit-btn:hover { background: var(--request-purple-hover); }

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-btn:disabled:hover { background: var(--request-purple); }

.d-none { display: none !important; }

.form-success,
.form-error {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
}

.form-success {
  background: rgba(13, 111, 253, 0.12);
  border: 1px solid rgba(13, 111, 253, 0.35);
  color: var(--accent-hover);
}

.form-error {
  background: rgba(240, 87, 106, 0.12);
  border: 1px solid rgba(240, 87, 106, 0.35);
  color: var(--error);
}

.form-success.visible,
.form-error.visible { display: block; }

.player-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0 60px;
}

@media (max-width: 860px) {
  .player-layout { grid-template-columns: 1fr; }
}

.now-playing-card {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.now-playing-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-raised);
  margin-bottom: 18px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.55);
}

.now-playing-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.now-playing-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing-artist {
  font-size: 14px;
  color: var(--accent-secondary);
  margin: 0 0 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-row {
  margin-bottom: 18px;
}

.progress-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
}

.progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  border-radius: 999px;
  background: var(--accent);
}

.progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13,111,253,0.35);
  transform: translate(-50%, -50%);
  cursor: grab;
}

.progress-handle:active { cursor: grabbing; }

.time-row {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-faint);
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
}

.controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ctrl-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, background 0.15s ease;
}

.ctrl-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.ctrl-btn.active {
  color: var(--accent);
}

.ctrl-btn svg { width: 19px; height: 19px; }

.ctrl-btn .icon {
  display: inline-block;
  width: 19px;
  height: 19px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-repeat {
  -webkit-mask-image: url('/assets/img/repeat.svg');
  mask-image: url('/assets/img/repeat.svg');
}

.icon-upload-song {
  -webkit-mask-image: url('/assets/img/upload-song.svg');
  mask-image: url('/assets/img/upload-song.svg');
}

.icon-upload-playlist {
  -webkit-mask-image: url('/assets/img/upload-playlist.svg');
  mask-image: url('/assets/img/upload-playlist.svg');
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.1s ease;
  flex-shrink: 0;
}

.play-btn:hover { background: var(--accent-hover); }
.play-btn:active { transform: scale(0.96); }
.play-btn img { width: 22px; height: 22px; }

.play-btn.buffering {
  opacity: 0.65;
  cursor: wait;
  animation: buffering-pulse 1s ease-in-out infinite;
}

@keyframes buffering-pulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 0.9; }
}

.upload-input { display: none; }

.library-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  min-height: 400px;
}

.library-card h2 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 4px;
}

.library-card .count {
  font-size: 12.5px;
  color: var(--text-faint);
  margin: 0 0 16px;
}

.library-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.library-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.library-row:hover { background: rgba(255,255,255,0.04); }

.library-row.playing {
  background: rgba(13, 111, 253, 0.1);
  border-color: rgba(13, 111, 253, 0.3);
}

.library-row .row-cover {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-raised);
  position: relative;
}

.library-row .row-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.library-row .row-text {
  min-width: 0;
  flex: 1;
}

.library-row .row-title {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.library-row.playing .row-title { color: var(--accent-hover); }

.now-playing-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
}

.now-playing-eq span {
  width: 2.5px;
  background: var(--accent);
  border-radius: 1px;
  animation: eq 0.9s ease-in-out infinite;
}
.now-playing-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.now-playing-eq span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.now-playing-eq span:nth-child(3) { height: 65%; animation-delay: 0.4s; }

@keyframes eq {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.library-row .row-artist {
  font-size: 12.5px;
  color: var(--text-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty-note {
  color: var(--text-faint);
  font-size: 13.5px;
  text-align: center;
  padding: 40px 10px;
}

.editor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 0 0 90px;
}

@media (max-width: 860px) {
  .editor-layout { grid-template-columns: 1fr; }
}

.editor-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.editor-card h2 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 4px;
}

.editor-card .library-list {
  max-height: 420px;
  overflow-y: auto;
  margin-bottom: 4px;
}

.row-add-btn,
.row-remove-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-dim);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.row-add-btn:hover { border-color: var(--accent); color: var(--accent-hover); }
.row-remove-btn:hover { border-color: var(--error); color: var(--error); }

.reorder-btns {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.reorder-btn {
  background: transparent;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 4px;
}

.reorder-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.editor-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 16px 0 0;
  flex-wrap: wrap;
}

.editor-actions .editor-upload-btn,
.editor-actions .submit-btn {
  flex: 1;
  width: auto;
}

.editor-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.editor-upload-btn:hover { border-color: var(--accent); }

.playlist-upload-prompt {
  border: 1px dashed var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
}

.playlist-upload-prompt .plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13, 111, 253, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}

.playlist-upload-prompt h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 6px;
}

.playlist-upload-prompt p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 18px;
}
