/* ── LedgerLife ICP Engage v1.2.0 ── */
:root {
  --ll-pink:    #e91e8c;
  --ll-pink-d:  #c41677;
  --ll-icp:     #29abe2;
  --ll-dark:    #111;
  --ll-mid:     #555;
  --ll-light:   #f5f5f5;
  --ll-border:  #e0e0e0;
  --ll-up:      #27ae60;
  --ll-down:    #e74c3c;
  --ll-radius:  8px;
}

/* ═══════════════════════════════════════════════════
   ENGAGE WRAP (injected below each post)
══════════════════════════════════════════════════════ */
.llice-engage-wrap {
  margin-top: 36px;
  border-top: 2px solid var(--ll-border);
  padding-top: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Vote bar ──────────────────────────────────────── */
.llice-vote-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: var(--ll-light);
  border-radius: var(--ll-radius);
}

.llice-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--ll-border);
  border-radius: 50px;
  background: #fff;
  color: var(--ll-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.llice-btn:hover { border-color: var(--ll-pink); color: var(--ll-pink); }

.llice-upvote   { color: var(--ll-up);   border-color: transparent; }
.llice-downvote { color: var(--ll-down); border-color: transparent; }

.llice-upvote:hover   { background: #eafaf1; border-color: var(--ll-up); }
.llice-downvote:hover { background: #fdedec; border-color: var(--ll-down); }

.llice-upvote.llice-voted   { background: #eafaf1; border-color: var(--ll-up);   color: var(--ll-up);   }
.llice-downvote.llice-voted { background: #fdedec; border-color: var(--ll-down); color: var(--ll-down); }

.llice-score {
  font-size: 18px;
  font-weight: 800;
  color: var(--ll-dark);
  min-width: 32px;
  text-align: center;
}

/* ── Auth zone ─────────────────────────────────────── */
.llice-auth-zone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.llice-login-btn {
  background: var(--ll-icp);
  border-color: var(--ll-icp);
  color: #fff;
  font-size: 13px;
}
.llice-login-btn:hover { background: #1a95c8; border-color: #1a95c8; color: #fff; }

.llice-user-info {
  font-size: 13px;
  color: var(--ll-mid);
}
.llice-user-info strong { color: var(--ll-dark); }
.llice-dash-link { color: var(--ll-pink); text-decoration: none; font-weight: 600; }
.llice-dash-link:hover { text-decoration: underline; }

.llice-btn-text {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: var(--ll-mid);
  cursor: pointer;
  text-decoration: underline;
}
.llice-btn-text:hover { color: var(--ll-dark); }

.llice-auth-loading { font-size: 13px; color: var(--ll-mid); }

/* ═══════════════════════════════════════════════════
   COMMENTS
══════════════════════════════════════════════════════ */
.llice-comments-section { margin-top: 8px; }

.llice-comments-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ll-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ll-border);
}

/* Comment form */
.llice-comment-form { margin-bottom: 20px; }

.llice-comment-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ll-border);
  border-radius: var(--ll-radius);
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.llice-comment-input:focus {
  outline: none;
  border-color: var(--ll-pink);
}

.llice-comment-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.llice-char-count { font-size: 12px; color: var(--ll-mid); }

.llice-submit-comment {
  background: var(--ll-pink);
  border-color: var(--ll-pink);
  color: #fff;
}
.llice-submit-comment:hover { background: var(--ll-pink-d); border-color: var(--ll-pink-d); color: #fff; }

.llice-comment-cta {
  font-size: 14px;
  color: var(--ll-mid);
  margin-bottom: 20px;
}
.llice-comment-cta .llice-btn-text { font-size: 14px; color: var(--ll-icp); font-weight: 600; }

/* Comment list */
.llice-comments-loading,
.llice-comments-empty {
  font-size: 14px;
  color: var(--ll-mid);
  padding: 12px 0;
}

.llice-comment {
  padding: 14px 0;
  border-bottom: 1px solid var(--ll-border);
}
.llice-comment:last-child { border-bottom: none; }

.llice-reply {
  margin-left: 28px;
  padding-left: 14px;
  border-left: 3px solid var(--ll-border);
  border-bottom: none;
}

.llice-comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.llice-comment-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--ll-dark);
  font-family: 'Courier New', monospace;
}

.llice-comment-date {
  font-size: 12px;
  color: #aaa;
}

.llice-reply-btn {
  font-size: 12px;
  color: var(--ll-icp);
  margin-left: auto;
}

.llice-comment-body {
  font-size: 14px;
  color: var(--ll-mid);
  line-height: 1.6;
}

/* Inline reply box */
.llice-inline-reply {
  margin: 10px 0 10px 28px;
  padding: 12px;
  background: var(--ll-light);
  border-radius: var(--ll-radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.llice-inline-reply .llice-comment-input { background: #fff; }
.llice-submit-reply {
  background: var(--ll-pink);
  border-color: var(--ll-pink);
  color: #fff;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════
   LEDGERLOVE DASHBOARD
══════════════════════════════════════════════════════ */
#llice-dashboard {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  max-width: 780px;
  margin: 0 auto;
  padding: 8px 0 48px;
}

.llice-dash-loading {
  text-align: center;
  padding: 60px;
  color: var(--ll-mid);
}

/* ── Login / Hero ─────────────────────────────────── */
.ll-dash-login-hero {
  text-align: center;
  padding: 60px 24px 48px;
  max-width: 560px;
  margin: 0 auto;
}

.ll-dash-login-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.ll-dash-login-logo { flex-shrink: 0; }

.ll-dash-login-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--ll-dark);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.5px;
}

.ll-dash-login-tag {
  display: inline-block;
  background: var(--ll-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 6px;
}

.ll-dash-login-sub {
  font-size: 16px;
  color: var(--ll-mid);
  line-height: 1.7;
  margin: 0 0 32px;
}

.ll-dash-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ll-icp);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 48px;
}
.ll-dash-login-btn:hover { background: #1a95c8; }

.ll-dash-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.ll-dash-feature {
  background: var(--ll-light);
  border-radius: var(--ll-radius);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ll-dash-feat-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.ll-dash-feature strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ll-dark);
}

.ll-dash-feature span {
  font-size: 12px;
  color: var(--ll-mid);
  line-height: 1.5;
}

/* ── Wrap ─────────────────────────────────────────── */
.ll-dash-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Page header ──────────────────────────────────── */
.ll-dash-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 4px;
}

.ll-dash-page-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--ll-dark);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.5px;
}

.ll-dash-proof-tag {
  display: inline-block;
  background: var(--ll-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
}

.ll-dash-signout-btn {
  background: none;
  border: 1.5px solid var(--ll-border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ll-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.ll-dash-signout-btn:hover { border-color: var(--ll-down); color: var(--ll-down); }

/* ── Identity card ────────────────────────────────── */
.ll-dash-identity-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  padding: 20px 24px;
  color: #fff;
  flex-wrap: wrap;
}

.ll-dash-id-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.ll-dash-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ll-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.ll-dash-id-info { min-width: 0; }

.ll-dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.ll-dash-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27ae60;
  flex-shrink: 0;
}

.ll-dash-principal-short {
  font-size: 17px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: #fff;
  line-height: 1.2;
}

.ll-dash-principal-full {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: 'Courier New', monospace;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 320px;
}

.ll-dash-copy-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ll-dash-copy-btn:hover { background: rgba(255,255,255,0.22); color: #fff; }

.ll-dash-copied-msg {
  font-size: 12px;
  color: #27ae60;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Stats row ────────────────────────────────────── */
.ll-dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ll-dash-stat-card {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ll-dash-stat-card strong {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.ll-dash-stat-card span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0.75;
  text-transform: uppercase;
}

.ll-stat-up       { background: #eafaf1; color: var(--ll-up); }
.ll-stat-comments { background: #eaf4fb; color: var(--ll-icp); }
.ll-stat-score    { background: #fde8f3; color: var(--ll-pink); }

/* ── Sections ─────────────────────────────────────── */
.ll-dash-section { display: flex; flex-direction: column; gap: 0; }

.ll-dash-section-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ll-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ll-pink);
  display: inline-block;
}

/* Activity cards */
.ll-dash-activity-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--ll-radius);
  border: 1.5px solid var(--ll-border);
  text-decoration: none;
  color: inherit;
  margin-bottom: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
.ll-dash-activity-card:hover {
  border-color: var(--ll-pink);
  box-shadow: 0 2px 12px rgba(233,30,140,0.08);
}
.ll-dash-activity-card:last-child { margin-bottom: 0; }

.ll-dash-act-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.ll-dash-act-icon.up      { background: #eafaf1; color: var(--ll-up); }
.ll-dash-act-icon.comment { background: #eaf4fb; color: var(--ll-icp); }

.ll-dash-act-body { flex: 1; min-width: 0; }

.ll-dash-act-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ll-dark);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ll-dash-act-comment-text {
  font-size: 12px;
  color: var(--ll-mid);
  font-style: italic;
  margin-top: 3px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ll-dash-act-meta {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

.ll-dash-act-arrow {
  font-size: 20px;
  color: #ccc;
  flex-shrink: 0;
}

/* Empty state */
.ll-dash-empty-state {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--ll-radius);
  background: var(--ll-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ll-dash-empty-icon {
  font-size: 28px;
  opacity: 0.35;
}

.ll-dash-empty-state p {
  font-size: 14px;
  color: var(--ll-mid);
  margin: 0;
}

.ll-dash-empty-state a {
  font-size: 13px;
  color: var(--ll-pink);
  font-weight: 600;
  text-decoration: none;
}
.ll-dash-empty-state a:hover { text-decoration: underline; }

/* ── ICP Price Ticker ─────────────────────────────────────── */
.ll-dash-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0a0a1a 0%, #111827 100%);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}

.ll-ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27ae60;
  flex-shrink: 0;
  animation: ll-pulse 2s infinite;
}

@keyframes ll-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.ll-ticker-label {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.ll-ticker-price {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
}

.ll-ticker-change { font-weight: 700; font-size: 12px; }
.ll-ticker-up     { color: #27ae60; }
.ll-ticker-down   { color: #e74c3c; }

.ll-ticker-sep  { color: rgba(255,255,255,0.2); }
.ll-ticker-live { font-size: 11px; color: rgba(255,255,255,0.35); margin-left: auto; }

/* ── Streak badge ─────────────────────────────────────────── */
.ll-dash-streak-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin-left: auto;
}

.ll-streak-cold { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); }
.ll-streak-warm { border-color: rgba(255,180,0,0.4);   background: rgba(255,180,0,0.1);    }
.ll-streak-hot  { border-color: rgba(255,80,0,0.5);    background: rgba(255,80,0,0.12);    }

.ll-streak-flame {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.ll-streak-info { display: flex; flex-direction: column; gap: 2px; }

.ll-streak-current {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.ll-streak-best {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

/* ── Async loading placeholder ───────────────────────────── */
.ll-dash-async-loading {
  font-size: 13px;
  color: var(--ll-mid);
  padding: 12px 0;
}

/* ── Trending cards ───────────────────────────────────────── */
.ll-dash-trending-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--ll-radius);
  border: 1.5px solid var(--ll-border);
  text-decoration: none;
  color: inherit;
  margin-bottom: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
.ll-dash-trending-card:hover {
  border-color: var(--ll-pink);
  box-shadow: 0 2px 12px rgba(233,30,140,0.08);
}
.ll-dash-trending-card:last-child { margin-bottom: 0; }

.ll-trend-rank {
  font-size: 18px;
  font-weight: 900;
  color: var(--ll-mid);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}

.ll-trend-body { flex: 1; min-width: 0; }

.ll-trend-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ll-dark);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ll-trend-votes {
  font-size: 13px;
  font-weight: 700;
  color: var(--ll-up);
  white-space: nowrap;
  flex-shrink: 0;
  background: #eafaf1;
  border-radius: 50px;
  padding: 4px 10px;
}

/* ── Leaderboard ──────────────────────────────────────────── */
.ll-leaderboard { display: flex; flex-direction: column; gap: 6px; }

.ll-lb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--ll-radius);
  background: var(--ll-light);
  border: 1.5px solid transparent;
  transition: border-color 0.15s;
}

.ll-lb-row.ll-lb-me {
  background: #fde8f3;
  border-color: var(--ll-pink);
}

.ll-lb-rank {
  font-size: 18px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.ll-lb-name {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--ll-dark);
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ll-lb-you {
  background: var(--ll-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  font-family: -apple-system, sans-serif;
  letter-spacing: 0.3px;
}

.ll-lb-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--ll-mid);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 600px) {
  .llice-vote-bar { flex-direction: column; align-items: flex-start; }
  .llice-auth-zone { margin-left: 0; }

  .ll-dash-features { grid-template-columns: 1fr; }
  .ll-dash-stats-row { grid-template-columns: 1fr; }
  .ll-dash-page-header { flex-direction: column; align-items: flex-start; }
  .ll-dash-identity-card { flex-direction: column; align-items: flex-start; }
  .ll-dash-principal-full { max-width: 100%; }
  .ll-dash-login-brand { flex-direction: column; text-align: center; align-items: center; }
  .ll-dash-streak-badge { margin-left: 0; width: 100%; box-sizing: border-box; }
  .ll-ticker-live { display: none; }
  .ll-trend-title { white-space: normal; }
}

/* ══════════════════════════════════════════════════════════
   v1.3.0 — Nickname, Tip Identity, Beta Disclaimer
   ══════════════════════════════════════════════════════════ */

/* ── Identity card display name ──────────────────────────── */
.ll-dash-display-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ll-dark);
  line-height: 1.2;
  margin-bottom: 2px;
}
.ll-no-nickname {
  font-style: italic;
  color: var(--ll-mid);
  font-weight: 400;
  font-size: 14px;
}

/* ── Nickname section ─────────────────────────────────────── */
.ll-nickname-section {}

.ll-nickname-card {
  background: var(--ll-surface);
  border: 1px solid var(--ll-border);
  border-radius: 10px;
  padding: 16px 18px;
}

.ll-nickname-display {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ll-nick-current {
  font-size: 20px;
  font-weight: 700;
  color: var(--ll-dark);
}

.ll-nick-edit-btn {
  background: none;
  border: 1px solid var(--ll-border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 13px;
  cursor: pointer;
  color: var(--ll-mid);
  transition: all 0.15s;
}
.ll-nick-edit-btn:hover {
  background: var(--ll-accent);
  border-color: var(--ll-accent);
  color: #fff;
}

.ll-nick-limit-msg {
  font-size: 12px;
  color: #e67e22;
  font-style: italic;
}

.ll-nickname-editor {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ll-nick-input {
  width: 100%;
  max-width: 320px;
  padding: 8px 12px;
  border: 1.5px solid var(--ll-border);
  border-radius: 7px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.ll-nick-input:focus { border-color: var(--ll-accent); }

.ll-nick-actions {
  display: flex;
  gap: 8px;
}

.ll-nick-save-btn {
  background: var(--ll-accent);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
.ll-nick-save-btn:disabled { opacity: 0.6; cursor: default; }
.ll-nick-save-btn:hover:not(:disabled) { opacity: 0.85; }

.ll-nick-cancel-btn {
  background: none;
  border: 1px solid var(--ll-border);
  border-radius: 7px;
  padding: 7px 16px;
  font-size: 14px;
  cursor: pointer;
  color: var(--ll-mid);
}
.ll-nick-cancel-btn:hover { background: var(--ll-border); }

.ll-nick-feedback {
  font-size: 13px;
  min-height: 18px;
}
.ll-nick-feedback.error { color: #e74c3c; }

.ll-nick-meta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ll-nick-changes-left {
  font-size: 12px;
  color: var(--ll-mid);
  font-weight: 500;
}
.ll-nick-changes-none { color: #e67e22; }

.ll-nick-hint {
  font-size: 12px;
  color: #aaa;
}

/* ── Tip Identity section ────────────────────────────────── */
.ll-tip-identity-section {}

.ll-tip-identity-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border: 1px solid #d0d8f0;
  border-radius: 10px;
  padding: 16px 18px;
}

.ll-tip-identity-intro {
  font-size: 14px;
  color: var(--ll-mid);
  margin: 0 0 12px 0;
}

.ll-tip-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ll-tip-address {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  background: rgba(255,255,255,0.7);
  border: 1px solid #d0d8f0;
  border-radius: 5px;
  padding: 5px 10px;
  color: #333;
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

.ll-tip-copy-btn {
  background: var(--ll-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.ll-tip-copy-btn:hover { opacity: 0.85; }

.ll-tip-copied-msg {
  font-size: 13px;
  color: var(--ll-accent);
  font-weight: 600;
}

.ll-tip-identity-note {
  font-size: 12px;
  color: #e67e22;
  margin: 0;
  font-style: italic;
}

.ll-beta-tag {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  vertical-align: middle;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Beta disclaimer banner ──────────────────────────────── */
.ll-beta-disclaimer {
  margin-top: 32px;
  border-top: 1px solid var(--ll-border);
  padding-top: 20px;
}

.ll-beta-disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8f0;
  border: 1px solid #f0d9b5;
  border-radius: 8px;
  padding: 14px 16px;
}

.ll-beta-disclaimer-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

.ll-beta-disclaimer-text {
  font-size: 12px;
  color: #7a5500;
  line-height: 1.6;
}
.ll-beta-disclaimer-text strong {
  display: block;
  margin-bottom: 2px;
  color: #5a3a00;
}

@media (max-width: 600px) {
  .ll-nickname-display { flex-direction: column; align-items: flex-start; }
  .ll-tip-address-row { flex-direction: column; align-items: flex-start; }
  .ll-tip-address { width: 100%; }
}
