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

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

:root {
  --bg: #0D0B1A;
  --bg2: #13112A;
  --bg3: #1A1735;
  --surface: #1E1B3A;
  --surface2: #252248;
  --border: rgba(155,109,255,0.15);
  --border2: rgba(155,109,255,0.3);
  --purple: #9B6DFF;
  --purple-light: #BDA4FF;
  --purple-dark: #6B40E0;
  --pink: #FF6B9D;
  --pink-light: #FF9FC0;
  --teal: #4DFFDB;
  --amber: #FFD166;
  --text: #F0EEFF;
  --text2: #A89FD0;
  --text3: #6B6090;
  --success: #4DFFDB;
  --danger: #FF5C7A;
  --warning: #FFD166;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.2; color: var(--text); }
h1 { font-size: 2.6rem; font-weight: 800; }
h2 { font-size: 1.9rem; font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text2); }
a { color: var(--purple-light); text-decoration: none; }
a:hover { color: var(--pink-light); }

/* ---- LAYOUT ---- */
.app { display: flex; min-height: 100vh; }

/* ---- SIDEBAR ---- */
.sidebar {
  width: 240px;
  min-height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform 0.3s;
}

.sidebar-logo {
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--text); }
.logo-sub { font-size: 11px; color: var(--text3); font-weight: 400; margin-top: 1px; }

.sidebar-nav { padding: 16px 12px; flex: 1; }

.nav-section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--text3); text-transform: uppercase;
  padding: 8px 12px 6px;
  margin-top: 8px;
}

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text2);
  font-size: 14px; font-weight: 500;
  transition: all 0.18s;
  margin-bottom: 2px;
  border: none; background: none; width: 100%; text-align: left;
}
.nav-item:hover { background: var(--surface); color: var(--text); }
.nav-item.active { background: rgba(155,109,255,0.15); color: var(--purple-light); }
.nav-item.active .nav-icon { color: var(--purple); }
.nav-icon { font-size: 18px; width: 20px; flex-shrink: 0; }

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}

.sidebar-badge {
  display: inline-flex; align-items: center;
  background: rgba(77,255,219,0.1);
  color: var(--teal);
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid rgba(77,255,219,0.2);
}

/* ---- MAIN CONTENT ---- */
.main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }

.topbar {
  height: 64px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  display: flex; align-items: center;
  padding: 0 32px;
  gap: 16px;
  position: sticky; top: 0; z-index: 50;
}

.topbar-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.topbar-sub { font-size: 13px; color: var(--text3); }
.topbar-spacer { flex: 1; }

.topbar-actions { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  cursor: pointer; flex-shrink: 0;
}

/* ---- PAGE CONTENT ---- */
.page { display: none; flex: 1; }
.page.active { display: block; }
.page-inner { padding: 32px; max-width: 1100px; }

/* ---- CARDS ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card-sm { padding: 16px 20px; }

/* ---- STAT CARDS ---- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover { border-color: var(--border2); transform: translateY(-2px); }

.stat-label { font-size: 12px; color: var(--text3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.stat-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-sub { font-size: 12px; color: var(--text3); margin-top: 6px; }
.stat-up { color: var(--success); }
.stat-down { color: var(--danger); }

.stat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 12px;
}
.stat-icon.purple { background: rgba(155,109,255,0.15); color: var(--purple); }
.stat-icon.pink { background: rgba(255,107,157,0.15); color: var(--pink); }
.stat-icon.teal { background: rgba(77,255,219,0.15); color: var(--teal); }
.stat-icon.amber { background: rgba(255,209,102,0.15); color: var(--amber); }

/* ---- FORMS ---- */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text2);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(155,109,255,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--bg2); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; border: none; transition: all 0.18s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-pink {
  background: linear-gradient(135deg, var(--pink), #e0527d);
  color: white;
}
.btn-pink:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); color: var(--text); }
.btn-success {
  background: rgba(77,255,219,0.12);
  color: var(--teal);
  border: 1px solid rgba(77,255,219,0.3);
}
.btn-success:hover { background: rgba(77,255,219,0.2); }
.btn-danger {
  background: rgba(255,92,122,0.12);
  color: var(--danger);
  border: 1px solid rgba(255,92,122,0.3);
}
.btn-danger:hover { background: rgba(255,92,122,0.2); }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- BADGES ---- */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.badge-purple { background: rgba(155,109,255,0.15); color: var(--purple-light); border: 1px solid rgba(155,109,255,0.25); }
.badge-pink { background: rgba(255,107,157,0.15); color: var(--pink-light); border: 1px solid rgba(255,107,157,0.25); }
.badge-teal { background: rgba(77,255,219,0.12); color: var(--teal); border: 1px solid rgba(77,255,219,0.25); }
.badge-amber { background: rgba(255,209,102,0.12); color: var(--amber); border: 1px solid rgba(255,209,102,0.25); }
.badge-danger { background: rgba(255,92,122,0.12); color: var(--danger); border: 1px solid rgba(255,92,122,0.3); }
.badge-gray { background: rgba(255,255,255,0.06); color: var(--text2); border: 1px solid var(--border); }

/* ---- TABLES ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--bg3);
  padding: 12px 16px;
  font-size: 12px; font-weight: 600; color: var(--text3);
  text-align: left; text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid rgba(155,109,255,0.07); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(155,109,255,0.04); }
tbody td { padding: 14px 16px; font-size: 14px; color: var(--text2); }
tbody td strong { color: var(--text); }

/* ---- SONG QUEUE BAR ---- */
.song-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.2s;
}
.song-card:hover { border-color: var(--border2); }

.song-rank {
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--text3); width: 32px; text-align: right; flex-shrink: 0;
}
.song-rank.top { color: var(--amber); }

.song-thumb {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.song-info { flex: 1; min-width: 0; }
.song-title { font-weight: 600; color: var(--text); font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-artist { font-size: 13px; color: var(--text3); }
.song-votes { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--purple-light); font-size: 1.1rem; }
.song-votes-label { font-size: 11px; color: var(--text3); text-align: right; }

/* ---- SUBMISSION CARD ---- */
.submission-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color 0.2s;
  margin-bottom: 12px;
}
.submission-item:hover { border-color: var(--border2); }

/* ---- ALERT / TOAST ---- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.alert-info { background: rgba(155,109,255,0.1); border: 1px solid rgba(155,109,255,0.25); color: var(--purple-light); }
.alert-success { background: rgba(77,255,219,0.08); border: 1px solid rgba(77,255,219,0.25); color: var(--teal); }
.alert-warning { background: rgba(255,209,102,0.1); border: 1px solid rgba(255,209,102,0.25); color: var(--amber); }
.alert-danger { background: rgba(255,92,122,0.1); border: 1px solid rgba(255,92,122,0.3); color: var(--danger); }

/* ---- PROGRESS ---- */
.progress-bar { height: 6px; background: var(--bg3); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--purple), var(--pink)); }

/* ---- MODAL ---- */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.65);
  align-items: center; justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 90%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
}
.modal-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }

/* ---- HAMBURGER ---- */
.hamburger { display: none; }

/* ---- HERO (landing) ---- */
.hero-section {
  padding: 60px 32px 40px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -80px; left: -60px;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(155,109,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; top: -20px; right: -40px;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,157,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(155,109,255,0.1);
  border: 1px solid rgba(155,109,255,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--purple-light);
  margin-bottom: 20px;
}
.hero-title span { color: var(--purple); }
.hero-desc { font-size: 16px; color: var(--text2); max-width: 520px; margin: 16px 0 28px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.mic-icon { font-size: 1.5rem; animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }

/* ---- TOP SONGS SPARKLINE ---- */
.sparkline { display: flex; align-items: flex-end; gap: 3px; height: 32px; }
.sparkbar { width: 5px; border-radius: 3px; background: linear-gradient(var(--purple), var(--pink)); opacity: 0.7; }

/* ---- STAFF PANEL ---- */
.staff-action-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}
.staff-action-card:hover { border-color: var(--border2); background: var(--surface2); transform: translateY(-2px); }
.staff-action-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 22px;
}

/* ---- COOLDOWN VISUAL ---- */
.cooldown-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--purple) 0%, var(--pink) 45%, var(--bg3) 45%);
  display: flex; align-items: center; justify-content: center;
}
.cooldown-inner {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px; color: var(--purple-light);
}

/* ---- DIVIDER ---- */
.divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ---- SECTION HEADER ---- */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-header h3 { color: var(--text); }

/* ---- TOGGLE ---- */
.toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: var(--bg3); border-radius: 24px;
  cursor: pointer; transition: 0.2s;
  border: 1px solid var(--border);
}
.toggle-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--text3); bottom: 2px; left: 2px;
  transition: 0.2s;
}
.toggle input:checked + .toggle-slider { background: rgba(155,109,255,0.25); border-color: var(--purple); }
.toggle input:checked + .toggle-slider::before { background: var(--purple); transform: translateX(20px); }

/* ---- TOAST NOTIFICATION ---- */
.toast {
  position: fixed; top: 24px; right: 24px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px; color: var(--text);
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateX(120%);
  transition: transform 0.35s;
  max-width: 340px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 18px; flex-shrink: 0; }

/* ---- SEARCH BAR ---- */
.search-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  max-width: 320px;
}
.search-bar input {
  background: none; border: none; outline: none;
  color: var(--text); font-size: 14px; font-family: 'Inter', sans-serif;
  width: 100%;
}
.search-bar input::placeholder { color: var(--text3); }
.search-icon { color: var(--text3); font-size: 16px; flex-shrink: 0; }

/* ---- TABS ---- */
.tabs { display: flex; gap: 4px; background: var(--bg3); border-radius: 10px; padding: 4px; margin-bottom: 24px; width: fit-content; }
.tab {
  padding: 8px 18px; border-radius: 8px; border: none; background: none;
  font-size: 14px; font-weight: 500; color: var(--text3);
  cursor: pointer; transition: all 0.18s;
}
.tab.active { background: var(--surface); color: var(--text); }

/* ---- PLAYER PROFILE ---- */
.player-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.player-card:hover { border-color: var(--border2); }
.player-avatar {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800;
  color: white;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; }
  .hamburger { display: flex; align-items: center; padding: 8px; background: none; border: none; color: var(--text2); font-size: 22px; cursor: pointer; }
  .page-inner { padding: 20px 16px; }
  h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-section { padding: 40px 16px 32px; }
}

/* ---- MOBILE OVERLAY ---- */
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 99;
}
.sidebar-overlay.open { display: block; }

/* ---- DISCORD LOG ---- */
.discord-log {
  background: #2B2D31;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 0; overflow: hidden;
}
.discord-log-header {
  background: #1E1F22; padding: 12px 18px;
  font-size: 13px; font-weight: 600; color: #DBDEE1;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.discord-channel { color: #DBDEE1; font-size: 14px; }
.discord-msg {
  padding: 14px 18px;
  display: flex; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.discord-msg:last-child { border-bottom: none; }
.discord-msg-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: white;
}
.discord-msg-content { flex: 1; }
.discord-msg-name { font-size: 14px; font-weight: 600; color: #DBDEE1; }
.discord-msg-time { font-size: 11px; color: #87898C; margin-left: 8px; }
.discord-msg-text { font-size: 14px; color: #DBDEE1; margin-top: 4px; line-height: 1.5; }
.discord-embed {
  background: #1E1F22; border-left: 4px solid var(--purple);
  border-radius: 0 6px 6px 0; padding: 12px 14px;
  margin-top: 8px;
}
.discord-embed-title { font-size: 14px; font-weight: 600; color: var(--purple-light); margin-bottom: 4px; }
.discord-embed-text { font-size: 13px; color: #B5BAC1; }

/* ---- NEON ACCENT LINE ---- */
.neon-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--pink), transparent);
  margin: 0;
}

/* ---- ROBLOX ID SEARCH ---- */
.roblox-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.roblox-avatar-placeholder {
  width: 80px; height: 80px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 32px;
  border: 1px solid var(--border);
}
.roblox-username { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.roblox-id { font-size: 12px; color: var(--text3); margin-top: 4px; }

/* ---- LEADERBOARD ---- */
.lb-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.lb-row:last-child { border-bottom: none; }
.lb-pos { width: 28px; font-family: 'Syne', sans-serif; font-weight: 800; text-align: right; flex-shrink: 0; }
.lb-pos.gold { color: var(--amber); }
.lb-pos.silver { color: #C0C0C0; }
.lb-pos.bronze { color: #CD7F32; }
.lb-bar-wrap { flex: 1; }
.lb-name { font-weight: 600; color: var(--text); font-size: 14px; margin-bottom: 5px; }
.lb-meta { font-size: 12px; color: var(--text3); }
.lb-score { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--purple-light); font-size: 1.1rem; flex-shrink: 0; }

/* ---- ACTIVITY FEED ---- */
.activity-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(155,109,255,0.07);
}
.activity-item:last-child { border-bottom: none; }
.activity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.activity-text { font-size: 14px; color: var(--text2); }
.activity-text strong { color: var(--text); }
.activity-time { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* ---- SETTINGS ROW ---- */
.settings-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.settings-row:last-child { border-bottom: none; }
.settings-label { font-weight: 600; color: var(--text); font-size: 14px; }
.settings-desc { font-size: 13px; color: var(--text3); margin-top: 2px; }
