:root {
  --dash-bg: #08080c;
  --dash-surface: #111118;
  --dash-elevated: #1a1a24;
  --dash-accent: #e8913a;
  --dash-accent-glow: rgba(232, 145, 58, 0.15);
  --dash-text: #f0ece6;
  --dash-text-sec: #8a8694;
  --dash-text-muted: #5a5666;
  --dash-border: #1e1e2a;
  --dash-success: #4ade80;
  --dash-border-radius: 14px;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--dash-bg);
  color: var(--dash-text);
  min-height: 100vh;
  line-height: 1.6;
}

.dash-container { max-width: 900px; margin: 0 auto; padding: 0 24px 80px; }

/* Nav */
.dash-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--dash-border);
  margin-bottom: 48px;
}
.dash-logo { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; }
.dash-logo span { color: var(--dash-accent); }
.dash-nav-links { display: flex; align-items: center; gap: 28px; }
.dash-nav-links a {
  color: var(--dash-text-sec);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.dash-nav-links a:hover, .dash-nav-links a.active { color: var(--dash-text); }
.dash-signout {
  background: transparent;
  border: 1px solid var(--dash-border);
  color: var(--dash-text-muted);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.dash-signout:hover { border-color: var(--dash-text-muted); color: var(--dash-text); }

/* Header */
.dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.dash-welcome h1 { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; margin-bottom: 4px; }
.dash-welcome p { color: var(--dash-text-muted); font-size: 14px; }
.dash-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dash-accent);
  color: #08080c;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: filter 0.2s;
  white-space: nowrap;
}
.dash-cta:hover { filter: brightness(1.1); }

/* Sections */
.dash-section { margin-bottom: 48px; }
.dash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.dash-section-icon { font-size: 20px; }
.dash-section-link { color: var(--dash-accent); text-decoration: none; font-size: 14px; font-weight: 500; }
.dash-section-link:hover { text-decoration: underline; }

/* Checklist */
.dash-checklist {
  background: var(--dash-surface);
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-border-radius);
  overflow: hidden;
}

.dash-check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--dash-border);
  transition: background 0.2s;
}
.dash-check-item:last-child { border-bottom: none; }
.dash-check-item:hover { background: var(--dash-elevated); }
.dash-check-item.done { opacity: 0.7; }

.dash-check-icon { font-size: 28px; flex-shrink: 0; }
.dash-check-content { flex: 1; }
.dash-check-label { font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.dash-check-badge { font-size: 12px; background: rgba(74, 222, 128, 0.15); color: var(--dash-success); padding: 2px 8px; border-radius: 100px; font-weight: 500; }
.dash-check-desc { color: var(--dash-text-muted); font-size: 13px; margin-top: 3px; }
.dash-check-action {
  background: transparent;
  border: 1px solid var(--dash-border);
  color: var(--dash-text);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.dash-check-action:hover { border-color: var(--dash-accent); color: var(--dash-accent); }

.dash-checklist-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.dash-prog-bar { flex: 1; height: 4px; background: var(--dash-border); border-radius: 2px; overflow: hidden; }
.dash-prog-fill { height: 100%; background: var(--dash-accent); border-radius: 2px; transition: width 0.6s ease; }
.dash-prog-label { font-size: 13px; color: var(--dash-text-muted); white-space: nowrap; }

/* Episode cards */
.dash-episodes { display: flex; flex-direction: column; gap: 12px; }
.dash-episode-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dash-surface);
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-border-radius);
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.dash-episode-card:hover { border-color: var(--dash-accent); }
.dash-ep-icon { font-size: 28px; flex-shrink: 0; }
.dash-ep-info { flex: 1; }
.dash-ep-title { font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.dash-ep-meta { color: var(--dash-text-muted); font-size: 13px; }

.dash-btn-outline {
  border: 1px solid var(--dash-border);
  color: var(--dash-text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.dash-btn-outline:hover { border-color: var(--dash-accent); color: var(--dash-accent); }

/* Channel cards */
.dash-channels { display: flex; flex-direction: column; gap: 8px; }
.dash-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dash-surface);
  border: 1px solid var(--dash-border);
  border-radius: 12px;
  padding: 16px 20px;
}
.dash-channel-card.disabled { opacity: 0.5; }
.dash-ch-provider { font-size: 24px; flex-shrink: 0; }
.dash-ch-info { flex: 1; }
.dash-ch-name { font-weight: 600; font-size: 14px; }
.dash-ch-meta { color: var(--dash-text-muted); font-size: 12px; display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.dash-ch-badge { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.dash-ch-badge.on { background: rgba(74, 222, 128, 0.15); color: var(--dash-success); }
.dash-ch-badge.off { background: rgba(90, 86, 102, 0.2); color: var(--dash-text-muted); }

/* Empty state */
.dash-empty {
  background: var(--dash-surface);
  border: 1px dashed var(--dash-border);
  border-radius: var(--dash-border-radius);
  padding: 48px 32px;
  text-align: center;
}
.dash-empty-icon { font-size: 40px; margin-bottom: 16px; }
.dash-empty p { color: var(--dash-text-muted); font-size: 14px; margin-bottom: 24px; }

.dash-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dash-accent);
  color: #08080c;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: filter 0.2s;
}
.dash-btn-primary:hover { filter: brightness(1.1); }

@media (max-width: 600px) {
  .dash-header { flex-direction: column; gap: 16px; }
  .dash-nav-links { gap: 16px; }
  .dash-check-item { flex-wrap: wrap; }
  .dash-episode-card { flex-direction: column; align-items: flex-start; }
}