:root {
  --bg-base: #0b0e14;
  --bg-card: #1a1e26;
  --bg-deep: #13171f;
  --bg-elevated: #262c36;
  --bg-elevated-hover: #2f3542;
  --border-subtle: #2f3540;
  --border-muted: #262c36;
  --text-primary: #e4e9f2;
  --text-secondary: #b9c2d4;
  --text-muted: #8b95a9;
  --text-dim: #5a6270;
  --text-label: #6e7681;
  --status-online: #3fb950;
  --status-idle: #d29922;
  --status-dnd: #f85149;
  --status-offline: #6e7681;
  --spotify: #1db954;
  --radius-card: 20px;
  --radius-inner: 12px;
  --radius-pill: 30px;
  --radius-sm: 8px;
  --shadow: 0 12px 40px rgba(0,0,0,.6);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

.dot_9a5683 {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  transition: background .2s;
}
.online_9a5683  { background: var(--status-online); }
.idle_9a5683    { background: var(--status-idle); }
.dnd_9a5683     { background: var(--status-dnd); }
.offline_9a5683 { background: var(--status-offline); }

.list_5d3a31 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.item_5d3a31 {
  background: var(--bg-elevated);
  border-radius: var(--radius-pill);
  padding: 4px 10px 4px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  transition: background .15s;
  cursor: default;
}
.item_5d3a31:hover { background: var(--bg-elevated-hover); }
.label_5d3a31 { white-space: nowrap; }
.empty_5d3a31 { font-size: .8rem; color: var(--text-dim); }

.link_cd9a09 { display: block; margin-bottom: 10px; }
.card_cd9a09 {
  background: var(--bg-deep);
  border-radius: var(--radius-inner);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-muted);
  transition: border-color .15s;
}
.link_cd9a09:hover .card_cd9a09 { border-color: var(--spotify); }
.art_cd9a09 img { border-radius: 4px; object-fit: cover; background: var(--bg-elevated); }
.meta_cd9a09 { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.label_cd9a09 {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text-label);
  font-weight: 600;
}
.song_cd9a09 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2px 0 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artist_cd9a09 {
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.progress_cd9a09 { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.time_cd9a09 {
  font-size: .65rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
}
.bar_cd9a09 {
  flex: 1;
  height: 4px;
  background: var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}
.fill_cd9a09 {
  height: 100%;
  background: var(--spotify);
  border-radius: 4px;
  transition: width .2s linear;
}

.card_8151fe {
  background: var(--bg-deep);
  border-radius: var(--radius-inner);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-muted);
  margin-bottom: 10px;
}
.card_8151fe:last-child { margin-bottom: 0; }
.art_8151fe { flex-shrink: 0; position: relative; }
.art_8151fe img:first-child {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-elevated);
}
.smallImg_8151fe {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--bg-deep);
  background: var(--bg-elevated);
}
.meta_8151fe { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.label_8151fe {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text-label);
  font-weight: 600;
}
.name_8151fe {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2px 0 1px;
}
.line_8151fe {
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dim_8151fe { color: var(--text-dim); }
.elapsed_8151fe { font-size: .7rem; color: var(--text-dim); margin-top: 4px; }

.card_ea7d77 {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-subtle);
}
.header_ea7d77 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.avatarWrap_ea7d77 { position: relative; flex-shrink: 0; }
.avatar_ea7d77 {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border-subtle);
  object-fit: cover;
}
.userInfo_ea7d77 { flex: 1; min-width: 0; }
.name_ea7d77 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.2px;
  color: #fff;
  margin-bottom: 2px;
}
.tag_ea7d77 { font-size: .85rem; color: var(--text-muted); }
.customStatus_ea7d77 {
  margin: 0 0 16px;
  padding: 8px 14px;
  background: var(--bg-deep);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-muted);
  font-size: .85rem;
  color: var(--text-secondary);
  display: inline-block;
}
.section_ea7d77 { margin-bottom: 18px; }
.sectionLabel_ea7d77 {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-label);
  font-weight: 600;
  margin-bottom: 8px;
}
.footer_ea7d77 {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-muted);
  font-size: .7rem;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
}

.card_3306af {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-subtle);
  opacity: .6;
}
@keyframes pulse_3306af {
  0%,100% { opacity: .4; }
  50% { opacity: .8; }
}
.pulse_3306af { background: var(--bg-elevated); animation: pulse_3306af 1.4s ease-in-out infinite; }
.header_3306af { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.avatar_3306af { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; }
.lines_3306af { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.line_3306af { height: 14px; border-radius: 6px; }
.w60_3306af { width: 60%; }
.w40_3306af { width: 40%; }
.statusBar_3306af { height: 36px; border-radius: var(--radius-pill); width: 60%; margin-bottom: 18px; }
.badges_3306af { display: flex; gap: 6px; margin-bottom: 18px; }
.badgePill_3306af { width: 80px; height: 28px; border-radius: var(--radius-pill); }
.activityBox_3306af { height: 80px; border-radius: var(--radius-inner); }
.gap_3306af { height: 10px; }

.center_8e0d8d {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  width: 100%;
}
.errorCard_8e0d8d {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-subtle);
}
.errorMsg_8e0d8d {
  color: #f87171;
  background: rgba(248,113,113,.08);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .85rem;
  border-left: 3px solid #f87171;
  margin-bottom: 16px;
}
.retryBtn_8e0d8d {
  background: var(--bg-elevated);
  border: none;
  color: var(--text-primary);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}
.retryBtn_8e0d8d:hover { background: var(--bg-elevated-hover); }
.retryBtn_8e0d8d:active { transform: scale(.97); }

