/* Creator section — inherits the publisher dashboard layout, overrides
   identity to cyan/violet to differentiate the creator persona. */
@import url('../../dashboard/css/dashboard.css');

.sidebar .logo {
  background: linear-gradient(135deg, #22d3ee, #22d3ee, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar nav a:hover, .sidebar nav a.active {
  border-left-color: #22d3ee;
}

.main h2 {
  background: linear-gradient(135deg, #22d3ee, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Creator-specific bits */
.wallet-pill {
  font-family: 'SF Mono', monospace;
  font-size: 0.8rem;
  color: #22d3ee;
  background: #0d2d3a;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

.badge-row { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'SF Mono', monospace;
  font-size: 0.8rem;
}
.badge.twitch  { background: #1a1226; border: 1px solid #9146ff; color: #c9b1ff; }
.badge.discord { background: #1a2440; border: 1px solid #5865f2; color: #b3bfff; }
.badge.empty   { background: #1a1a2e; border: 1px dashed #444; color: #666; }

.drop-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #1f1f2e;
}
.drop-row:last-child { border-bottom: none; }
.drop-row .id   { font-family: 'SF Mono', monospace; color: #555; font-size: 0.85rem; }
.drop-row .name { color: #ddd; }
.drop-row .name .meta { font-size: 0.75rem; color: #666; }

.platform-select {
  background: #1a1a2e;
  color: #ddd;
  border: 1px solid #2a2a3e;
  padding: 6px;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-right: 6px;
}

.btn-copy {
  background: linear-gradient(135deg, #22d3ee, #22d3ee);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: 'SF Mono', monospace;
}
.btn-copy:hover { opacity: 0.9; }
.btn-copy.copied { background: #22c55e; }

.empty-state { color: #666; font-size: 0.9rem; padding: 12px 0; }

/* Login overlay (shown when no session) */
.login-card {
  max-width: 420px;
  margin: 80px auto;
  text-align: center;
  background: #131320;
  border: 1px solid #2a2a3e;
  border-radius: 12px;
  padding: 32px;
}
.login-card h2 { margin-bottom: 8px; }
.login-card p { color: #888; margin-bottom: 24px; font-size: 0.95rem; }
.login-card button {
  padding: 10px 22px;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #22d3ee, #22d3ee);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.login-status { font-size: 0.85rem; padding: 8px; border-radius: 6px; margin-top: 12px; }
.login-status.error { background: #2e0b0b; color: #f87171; }

.summary-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.summary-item {
  background: #131320;
  border: 1px solid #2a2a3e;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.summary-item .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #22d3ee;
}
.summary-item .lbl {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table { width: 100%; border-collapse: collapse; }
th, td {
  text-align: left;
  padding: 8px 4px;
  border-bottom: 1px solid #1f1f2e;
  font-size: 0.85rem;
}
th { color: #666; font-weight: normal; font-size: 0.75rem; text-transform: uppercase; }
td.mono { font-family: 'SF Mono', monospace; color: #888; }

.placeholder-panel {
  background: #131320;
  border: 1px dashed #2a2a3e;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  color: #888;
}
.placeholder-panel h3 { color: #ccc; margin-bottom: 12px; }
.placeholder-panel p { font-size: 0.9rem; line-height: 1.6; max-width: 600px; margin: 0 auto; }
.placeholder-panel code {
  background: #0a0a0f;
  padding: 2px 6px;
  border-radius: 4px;
  color: #22d3ee;
  font-size: 0.85rem;
}

/* ── HUD override (layered last) — token-align creator-specific bits ──── */
.summary-item, .login-card {
  background: var(--bg-card); border: none; border-radius: 0;
  box-shadow: inset 0 0 0 1px var(--border);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.placeholder-panel {
  background: var(--bg-card); border: 1px dashed var(--border-bright); border-radius: 0;
}
.summary-item .num { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }
.summary-item .lbl, .empty-state, .placeholder-panel p { color: var(--text-muted); }
.placeholder-panel h3 { color: var(--text); }
.placeholder-panel code { background: var(--bg); color: var(--accent); border-radius: 0; }
.wallet-pill, .platform-select { font-family: var(--font); border-radius: 0; }
.wallet-pill {
  color: var(--accent); background: var(--accent-dim);
  box-shadow: inset 0 0 0 1px var(--accent); padding: 6px 12px;
}
.platform-select { background: var(--bg-surface); color: var(--text); border: 1px solid var(--border); }
.badge { border-radius: 0; font-family: var(--font); }
.btn-copy, .login-card button {
  background: transparent; color: var(--accent); border: none; border-radius: 0;
  box-shadow: inset 0 0 0 1px var(--accent); font-family: var(--font);
  text-shadow: 0 0 8px var(--accent-glow);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}
.btn-copy:hover, .login-card button:hover { background: var(--accent); color: #04161a; text-shadow: none; opacity: 1; }
.btn-copy.copied { background: var(--success); color: #04161a; box-shadow: inset 0 0 0 1px var(--success); }
.drop-row { border-bottom: 1px solid var(--border); }
th, td { border-bottom: 1px solid var(--border); }
.sidebar .logo, .sidebar .cli-brand { background: none; -webkit-text-fill-color: initial; }
