/* Creator Profile Page */
.cp-back {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--text-muted); text-decoration: none;
  transition: color .2s;
}
.cp-back:hover { color: var(--text); }

.cp-header-card { padding: 20px; }

.cp-hero {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px;
}
.cp-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border);
}
.cp-avatar-ph {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-glow); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: var(--accent);
}
.cp-hero-info { flex: 1; min-width: 0; }
.cp-hero-title {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.cp-platform-badge {
  padding: 2px 8px; border-radius: 5px;
  font-size: 11px; font-weight: 600;
}
.cp-badge-aff {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 5px;
  font-size: 10px; font-weight: 600;
  background: rgba(251,191,36,0.1); color: #fbbf24;
}
.cp-hero-sub { margin-bottom: 6px; }
.cp-ext-link {
  font-size: 12px; color: var(--accent); text-decoration: none;
}
.cp-ext-link:hover { text-decoration: underline; }
.cp-hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--text-sec);
}
.cp-desc {
  font-size: 12px; color: var(--text-sec); line-height: 1.5;
  border-top: 1px solid var(--border); padding-top: 12px;
  white-space: pre-wrap; word-break: break-word;
}

/* Info grid (contact section) */
.cp-info-grid { display: flex; flex-direction: column; gap: 0; padding: 4px 0; }
.cp-info-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid rgba(30,30,46,0.5);
}
.cp-info-row:last-child { border-bottom: none; }
.cp-info-label {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .3px;
  min-width: 72px; padding-top: 1px; flex-shrink: 0;
}
.cp-email { color: var(--accent); text-decoration: none; font-size: 13px; }
.cp-email:hover { text-decoration: underline; }
.cp-no { color: var(--text-muted); font-size: 13px; }

/* Social links */
.cp-socials { display: flex; flex-wrap: wrap; gap: 6px; }
.cp-social-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 5px;
  border: 1px solid var(--border);
  font-size: 12px; color: var(--text-sec); text-decoration: none;
  transition: all .2s;
}
.cp-social-link:hover { border-color: var(--accent); color: var(--accent); }

/* Meta list (right side card) */
.cp-meta-list { display: flex; flex-direction: column; }
.cp-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 5px 0; border-bottom: 1px solid rgba(30,30,46,0.4);
  font-size: 12px;
}
.cp-meta-row:last-child { border-bottom: none; }
.cp-meta-row span:first-child { color: var(--text-muted); }
.cp-meta-row span:last-child { color: var(--text); font-weight: 500; text-align: right; max-width: 55%; word-break: break-word; }

/* Channel link as profile link */
.creator-profile-link {
  color: var(--accent); text-decoration: none; font-weight: 600;
}
.creator-profile-link:hover { text-decoration: underline; }

/* External link (small arrow next to profile link in table) */
.cp-ext-sm {
  color: var(--text-muted); text-decoration: none;
  font-size: 11px; opacity: 0.6; transition: opacity .2s;
}
.cp-ext-sm:hover { opacity: 1; color: var(--accent); }
