/* apps/web/css/admin-dashboard.css */
/* EVIL EN LUCIFER — ADMIN DASHBOARD THEME (isolated) */
/* Fix: uniform “catalog gray” on Identity/Lore/Directory/Metadata cards */

:root{
  --admin-bg: #050505;

  /* Base glass */
  --admin-panel: rgba(10,10,12,0.62);
  --admin-panel-2: rgba(0,0,0,0.55);

  --admin-border: rgba(255,255,255,0.10);
  --admin-border-soft: rgba(255,255,255,0.06);

  --admin-cyan: rgba(0,229,255,0.95);
  --admin-cyan-soft: rgba(0,229,255,0.18);

  --admin-shadow: 0 20px 60px -40px rgba(0,0,0,0.85);
  --admin-radius: 16px;

  /* >>> O CINZA “CATÁLOGO” (uniforme, sem degradê) <<< */
  --admin-catalog: rgba(18,20,24,0.74);
  --admin-catalog-border: rgba(255,255,255,0.10);
}

/* Root isolation: evita briga com artist.html */
.admin-shell{
  background: transparent !important;
}

/* Fix: selects com “Windows 97” */
.admin-shell select,
.admin-shell option{
  color-scheme: dark;
}

/* Glass Panel base (default) */
.admin-shell .glass-panel{
  background: var(--admin-panel) !important;
  border: 1px solid var(--admin-border-soft) !important;
  border-radius: var(--admin-radius);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: var(--admin-shadow);
  background-image: none !important; /* mata qualquer “degradê” herdado */
}

/* Inputs / textarea / select */
.admin-shell .admin-input,
.admin-shell .admin-input-glass{
  background: var(--admin-panel-2) !important;
  border: 1px solid var(--admin-border);
  color: #f3f4f6;
  border-radius: 12px;
  outline: none;
  transition: all 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.admin-shell .admin-input:focus,
.admin-shell .admin-input-glass:focus{
  background: var(--admin-panel-2) !important;
  border-color: rgba(0,229,255,0.55);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.10);
}

.admin-shell select.admin-input-glass,
.admin-shell select.admin-input,
.admin-shell .admin-select{
  background: rgba(10,10,14,0.85) !important;
  color: rgba(255,255,255,0.92) !important;
}

.admin-shell select.admin-input-glass option,
.admin-shell select.admin-input option,
.admin-shell .admin-select option,
.admin-shell select option{
  background: #0b0b10 !important;
  color: rgba(255,255,255,0.92) !important;
}

.admin-shell #inp-name,
.admin-shell #inp-name:focus,
.admin-shell #inp-name:active{
  background: var(--admin-panel-2) !important;
  color: #f8fafc !important;
  -webkit-text-fill-color: #f8fafc;
}

.admin-shell #inp-name:-webkit-autofill,
.admin-shell #inp-name:-webkit-autofill:hover,
.admin-shell #inp-name:-webkit-autofill:focus{
  box-shadow: 0 0 0 1000px rgba(0,0,0,0.72) inset !important;
  -webkit-text-fill-color: #f8fafc !important;
  caret-color: #f8fafc;
}

.admin-shell .curator-guide-card{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-left-color: rgba(0,229,255,0.42);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0,229,255,0.075), rgba(168,85,247,0.045) 44%, rgba(0,0,0,0.34)),
    rgba(10,10,12,0.62);
  margin: 0;
  box-shadow: 0 20px 55px -42px rgba(0,0,0,0.95);
}

.admin-shell .curator-guide-card--primary{
  border-left-color: rgba(168,85,247,0.55);
}

.admin-shell .curator-guide-stack{
  margin-bottom: 24px;
}

.admin-shell .curator-guide-stack--compact{
  margin-bottom: 18px;
}

.admin-shell #view-discography > .curator-guide-card,
.admin-shell #view-visuals > .curator-guide-card{
  margin-bottom: 24px;
}

.admin-shell #view-submissions > .curator-guide-card,
.admin-shell #view-claims > .curator-guide-card{
  margin-bottom: 36px;
}

.admin-shell #view-rights .curator-guide-card{
  margin-bottom: 24px;
}

.admin-shell .curator-guide-summary{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

.admin-shell .curator-guide-summary::-webkit-details-marker{
  display: none;
}

.admin-shell .curator-guide-kicker,
.curator-guide-modal .curator-guide-kicker{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0,229,255,0.84);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.curator-guide-modal .curator-guide-kicker{
  margin-bottom: 8px;
}

.admin-shell .curator-guide-title-wrap{
  min-width: 0;
  display: grid;
  gap: 3px;
}

.admin-shell .curator-guide-title{
  color: rgba(255,255,255,0.94);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.admin-shell .curator-guide-teaser{
  color: rgba(156,163,175,0.9);
  font-size: 11px;
  line-height: 1.45;
}

.admin-shell .curator-guide-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.68);
  background: rgba(0,0,0,0.18);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.admin-shell .curator-guide-card[open] .curator-guide-toggle{
  transform: rotate(180deg);
  border-color: rgba(0,229,255,0.32);
  color: rgba(103,232,249,0.95);
}

.admin-shell .curator-guide-card:not([open]) .curator-guide-body{
  display: none;
}

.admin-shell .curator-guide-body{
  padding: 0 16px 16px;
}

.admin-shell .curator-guide-card-steps{
  display: grid;
  gap: 10px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.admin-shell .curator-guide-card-step{
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.admin-shell .curator-guide-card-step__number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(0,229,255,0.28);
  background: rgba(0,229,255,0.09);
  color: rgba(103,232,249,0.94);
  font-size: 10px;
  font-weight: 900;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.admin-shell .curator-guide-card-step__text{
  color: rgba(229,231,235,0.9);
  font-size: 12px;
  line-height: 1.55;
  text-wrap: pretty;
}

.admin-shell .curator-guide-card p{
  margin: 0;
  color: rgba(209,213,219,0.86);
  font-size: 12px;
  line-height: 1.65;
  text-align: justify;
  text-wrap: pretty;
}

.admin-shell .curator-guide-card p + p{
  margin-top: 10px;
}

.admin-shell .curator-guide-note{
  color: rgba(165,180,252,0.9) !important;
}

.admin-shell .curator-guide-button{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(168,85,247,0.32);
  border-radius: 999px;
  background: rgba(168,85,247,0.12);
  color: rgba(221,214,254,0.95);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.admin-shell .curator-guide-button:hover{
  border-color: rgba(168,85,247,0.55);
  background: rgba(168,85,247,0.22);
  color: #fff;
}

.curator-guide-modal{
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.curator-guide-modal.hidden{
  display: none !important;
}

.curator-guide-modal__panel{
  width: min(92vw, 760px);
  max-height: min(82vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0,229,255,0.08), rgba(168,85,247,0.08) 42%, rgba(0,0,0,0.24)),
    #0a0a0f;
  box-shadow: 0 30px 100px -45px rgba(0,0,0,0.95);
}

.curator-guide-modal__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.curator-guide-modal__header h2{
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.curator-guide-modal__close{
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.86);
}

.curator-guide-modal__close:hover{
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.curator-guide-modal__body{
  max-height: calc(min(82vh, 760px) - 96px);
  overflow-y: auto;
  padding: 22px 24px 26px;
}

.curator-guide-steps{
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.curator-guide-step{
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(0,0,0,0.24);
}

.curator-guide-step__number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0,229,255,0.28);
  background: rgba(0,229,255,0.10);
  color: rgba(103,232,249,0.95);
  font-size: 11px;
  font-weight: 900;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.curator-guide-step__content p{
  margin: 0;
  color: rgba(229,231,235,0.9);
  font-size: 13px;
  line-height: 1.65;
}

/* Labels */
.admin-shell .form-group label,
.admin-shell .admin-label{
  display:block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(0,229,255,0.80);
  margin-bottom: 8px;
}

/* Section titles */
.admin-shell .section-title{
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--admin-cyan);
  text-shadow: 0 0 12px var(--admin-cyan-soft);
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Small hero buttons */
.admin-shell .admin-mini-btn{
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid var(--admin-border);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.85);
  transition: all .15s ease;
}
.admin-shell .admin-mini-btn:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

/* Icon buttons */
.admin-shell .icon-btn{
  width: 42px;
  height: 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  border: 1px solid var(--admin-border);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .18s ease;
}
.admin-shell .icon-btn:hover{
  background: rgba(0,229,255,0.08);
  border-color: rgba(0,229,255,0.30);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}

/* Drop zone */
.admin-shell #drop-zone-global{
  transition: all 0.25s ease;
  background: rgba(6,7,10,0.55);
  border: 2px dashed rgba(255,255,255,0.14);
}
.admin-shell #drop-zone-global.dragover{
  background: rgba(0,229,255,0.07);
  border-color: rgba(0,229,255,0.60);
  transform: scale(1.01);
}

/* No scrollbar */
.admin-shell .no-scrollbar{ scrollbar-width: none; }
.admin-shell .no-scrollbar::-webkit-scrollbar{ display:none; }

/* AI panel styles */
.admin-shell .admin-ai__header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-shell .admin-ai__title{
  display:flex;
  gap: 10px;
  align-items:center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(168, 85, 247, 0.95);
}
.admin-shell .admin-ai__meta{ display:flex; gap: 8px; }
.admin-shell .admin-pill{
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.70);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.admin-shell .admin-ai__card{
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--admin-panel) !important;
  background-image: none !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.admin-shell .admin-ai__subhead{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 10px;
}

.admin-shell .admin-kicker{
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.admin-shell .admin-kicker-muted{
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.admin-shell .admin-ai__list{
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}

.admin-shell .admin-ai__row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.32);
  transition: all .15s ease;
}
.admin-shell .admin-ai__row:hover{
  border-color: rgba(0,229,255,0.25);
  background: rgba(0,229,255,0.05);
}
.admin-shell .admin-ai__rowTitle{
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.admin-shell .admin-ai__rowMeta{
  font-size: 10px;
  color: rgba(255,255,255,0.40);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.admin-shell .admin-ai__ok{
  font-size: 12px;
  color: rgba(16, 185, 129, 0.9);
  opacity: 0.25;
}
.admin-shell .admin-ai__row:hover .admin-ai__ok{ opacity: 1; }

.admin-shell .admin-json-editor{
  width: 100%;
  min-height: 320px;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  line-height: 1.5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  outline: none;
}

.admin-shell .admin-ai__hint{
  margin-top: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.40);
}

.admin-shell .admin-ai__notice{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.10);
  color: rgba(167,243,208,0.95);
  font-size: 11px;
}

/* =========================================================
   Public Profile v2: Museum Grid + Neo MySpace VK
   Scoped to avoid Admin/Curator/Dashboard spillover.
========================================================= */

@keyframes eel-profile-enter{
  from{ opacity:0; transform:translateY(14px); }
  to  { opacity:1; transform:translateY(0);    }
}

.eel-profile-v2.public-profile-shell{
  --eel-v2-ink: rgba(255,255,255,0.94);
  --eel-v2-muted: rgba(210,218,232,0.58);
  --eel-v2-cyan: #00e5ff;
  --eel-v2-purple: #b45cff;
  --eel-v2-magenta: #ff4fd8;
  --eel-v2-panel: rgba(2,4,10,0.54);
  --eel-v2-border: rgba(138,158,190,0.16);
  color: var(--eel-v2-ink);
  animation: eel-profile-enter 280ms cubic-bezier(0.22,1,0.36,1) both;
}

.eel-profile-v2 .public-profile-frame{
  border: 1px solid rgba(160,175,205,0.14);
  border-radius: 18px;
  background: rgba(0,0,0,0.08);
  box-shadow: 0 36px 90px -72px rgba(0,0,0,0.96);
}

.eel-profile-v2 .eel-profile-v2-hero{
  min-height: clamp(360px, 27vw, 460px);
  background: #02040a !important;
}

.eel-profile-v2 .eel-profile-v2-hero > img{
  opacity: 0.92;
  mix-blend-mode: normal;
  filter: saturate(1.08) contrast(1.02);
}

.eel-profile-v2 .eel-profile-v2-hero-shade,
.eel-profile-v2 .eel-profile-v2-hero-rim{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.eel-profile-v2 .eel-profile-v2-hero-shade{
  background:
    linear-gradient(90deg, rgba(2,4,10,0.94) 0%, rgba(2,4,10,0.64) 34%, rgba(2,4,10,0.18) 62%, rgba(2,4,10,0.78) 100%),
    linear-gradient(180deg, rgba(2,4,10,0.28) 0%, rgba(2,4,10,0.18) 48%, rgba(2,4,10,0.9) 100%);
}

.eel-profile-v2 .eel-profile-v2-hero-rim{
  border-bottom: 1px solid rgba(0,229,255,0.14);
  background:
    radial-gradient(circle at 12% 28%, rgba(180,92,255,0.18), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(255,79,216,0.14), transparent 28%);
}

.eel-profile-v2 .public-profile-hero-card{
  width: 100%;
  max-width: none;
  padding: clamp(24px, 3vw, 46px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eel-profile-v2 .public-profile-hero-card > .flex{
  align-items: center;
  min-height: 260px;
}

.eel-profile-v2 .public-profile-hero-card .relative.shrink-0{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.eel-profile-v2 .public-profile-hero-card img[alt]{
  width: clamp(118px, 11vw, 172px) !important;
  height: clamp(118px, 11vw, 172px) !important;
  border: 3px solid rgba(255,255,255,0.86) !important;
  /* box-shadow without !important so JS inline role ring wins */
  box-shadow:
      0 0 0 2px rgba(180,92,255,0.32),
      0 0 18px rgba(180,92,255,0.22),
      0 0 28px rgba(0,229,255,0.08);
}

.eel-profile-v2 .eel-profile-v2-online{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.92);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0,0,0,0.8);
}

.eel-profile-v2 .eel-profile-v2-online span{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #00ff78;
  box-shadow: 0 0 14px rgba(0,255,120,0.9);
}

.eel-profile-v2 .eel-profile-v2-online.is-offline{
  color: rgba(255,255,255,0.56);
}

.eel-profile-v2 .eel-profile-v2-online.is-offline span{
  background: rgba(255,255,255,0.32);
  box-shadow: 0 0 10px rgba(255,255,255,0.16);
}

.eel-profile-v2 .eel-profile-v2-online.is-private{
  color: rgba(180,92,255,0.72);
}

.eel-profile-v2 .eel-profile-v2-online.is-private span{
  background: rgba(180,92,255,0.72);
  box-shadow: 0 0 12px rgba(180,92,255,0.36);
}

.eel-profile-v2 .public-profile-rank-pill,
.eel-profile-v2 .public-profile-verified{
  border-color: rgba(180,92,255,0.38);
  background: rgba(25,8,38,0.72);
  color: rgba(246,222,255,0.94);
}

.eel-profile-v2 .public-profile-rank-pill.muted{
  border-color: rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.48);
  color: rgba(255,255,255,0.72);
}

.eel-profile-v2 .public-profile-name{
  font-size: clamp(2.45rem, 4.2vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(0,0,0,0.78);
}

.eel-profile-v2 .public-profile-handle{
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--eel-v2-cyan);
}

.eel-profile-v2 .eel-profile-v2-tagline{
  margin-top: 12px;
  color: var(--eel-v2-cyan);
  font: 800 0.95rem/1.35 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.eel-profile-v2 .eel-profile-v2-description{
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255,128,235,0.9);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.55;
  text-transform: uppercase;
}

.eel-profile-v2 .public-profile-hero-stats{
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.eel-profile-v2 .public-profile-hero-stat{
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.eel-profile-v2 .public-profile-hero-stat span{
  font-size: clamp(1.2rem, 1.55vw, 1.85rem);
  color: #fff;
}

.eel-profile-v2 .public-profile-hero-stat small{
  margin-top: 5px;
  color: rgba(255,255,255,0.64);
}

.eel-profile-v2 .public-profile-medal-preview{
  display: none;
}

.eel-profile-v2 .public-profile-hero-actions{
  min-width: 170px;
  align-self: center;
}

.eel-profile-v2 .public-profile-primary-action,
.eel-profile-v2 .public-profile-secondary-action{
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  border-radius: 8px;
  border: 1px solid rgba(255,79,216,0.38);
  background: rgba(6,8,16,0.7);
  color: rgba(255,214,250,0.94);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.eel-profile-v2 .public-profile-secondary-action:hover,
.eel-profile-v2 .public-profile-primary-action:hover{
  border-color: rgba(0,229,255,0.58);
  background: rgba(0,229,255,0.08);
  box-shadow: 0 0 22px rgba(180,92,255,0.24);
  transform: translateY(-1px);
}

.eel-profile-v2 .public-profile-nav{
  background: rgba(1,3,9,0.74);
  border-top: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.eel-profile-v2 .public-profile-tabs{
  gap: clamp(22px, 3vw, 52px);
}

.eel-profile-v2 .public-profile-tabs .tab-link{
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.eel-profile-v2 .public-profile-content{
  padding: clamp(18px, 2vw, 28px);
  background: rgba(1,3,8,0.14);
}

.eel-profile-v2 .eel-profile-v2-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.eel-profile-v2 .public-profile-card{
  min-width: 0;
  min-height: 226px;
  border-color: var(--eel-v2-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(5,8,18,0.74), rgba(5,3,12,0.58)),
    radial-gradient(circle at 18% 0%, rgba(0,229,255,0.12), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(255,79,216,0.09), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 28px 70px -60px rgba(0,0,0,0.92);
}

.eel-profile-v2 .public-profile-card:hover{
  border-color: rgba(255,79,216,0.28);
  transform: translateY(-1px);
}

.eel-profile-v2 .public-profile-card .section-title{
  color: rgba(0,229,255,0.96);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.eel-profile-v2 .public-profile-empty{
  min-height: 118px;
  border-radius: 8px;
  background: rgba(1,3,8,0.42);
}

.eel-profile-v2 .eel-profile-v2-card--scraps,
.eel-profile-v2 .eel-profile-v2-card--badges{
  grid-column: span 2;
  min-height: 260px;
}

.eel-profile-v2 .eel-profile-v2-meta-bar{
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.eel-profile-v2 .eel-profile-v2-meta-item{
  min-width: 0;
  padding: 22px 26px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.eel-profile-v2 .eel-profile-v2-meta-item:last-child{
  border-right: 0;
}

.eel-profile-v2 .eel-profile-v2-meta-item span{
  display: block;
  color: rgba(188,198,218,0.62);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eel-profile-v2 .eel-profile-v2-meta-item strong{
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.eel-profile-v2 .eel-profile-v2-progress{
  margin-top: 13px;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(180,92,255,0.18);
}

.eel-profile-v2 .eel-profile-v2-progress i{
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--eel-v2-purple), var(--eel-v2-magenta));
  box-shadow: 0 0 16px rgba(255,79,216,0.48);
}

.eel-profile-v2 .eel-profile-v2-now{
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.eel-profile-v2 .eel-profile-v2-now img{
  width: 96px;
  height: 96px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  object-fit: cover;
}

.eel-profile-v2 .eel-profile-v2-now-copy strong,
.eel-profile-v2 .eel-profile-v2-now-copy span,
.eel-profile-v2 .eel-profile-v2-now-copy small{
  display: block;
}

.eel-profile-v2 .eel-profile-v2-now-copy strong{
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eel-profile-v2 .eel-profile-v2-now-copy span{
  margin-top: 5px;
  color: rgba(255,255,255,0.58);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.eel-profile-v2 .eel-profile-v2-now-copy small{
  margin-top: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.eel-profile-v2 .eel-profile-v2-wave{
  height: 34px;
  margin-top: 14px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(180,92,255,0.95) 0 3px, transparent 3px 8px),
    linear-gradient(90deg, rgba(180,92,255,0.2), rgba(0,229,255,0.48));
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  opacity: 0.78;
}

/* ------------------------------------------------------------------
   ADMIN OVERLAY FRAME
------------------------------------------------------------------ */

#dashboard-shell,
#admin-shell{
  background: transparent !important;
}

.admin-overlay{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 28px 60px;
}

@media (max-width: 768px){
  .admin-overlay{ padding: 18px 16px 48px; }
}

/* Card base (shell) */
.admin-shell{
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(6, 7, 10, 0.92),
    rgba(4, 5, 7, 0.97)
  ) !important;

  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 30px 90px -60px rgba(0,0,0,0.95);
}

body.admin-mode .admin-shell{
  background: linear-gradient(
    to bottom,
    rgba(6, 7, 10, 0.92),
    rgba(4, 5, 7, 0.97)
  ) !important;
}

/* Hero / Nav borders */
.admin-shell .artist-hero{
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}
.admin-shell .artist-nav{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Public profile uses admin typography/cards, but not the admin console shell. */
.public-profile-shell,
.admin-shell.public-profile-shell{
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.public-profile-shell{
  font-family: 'Inter', system-ui, sans-serif;
}

.public-profile-shell .section-title{
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--admin-cyan);
  text-shadow: 0 0 12px var(--admin-cyan-soft);
}

.public-profile-shell .public-profile-frame{
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.78);
  box-shadow:
    inset 0 0 0 1px rgba(0,229,255,0.055),
    0 24px 70px rgba(0,0,0,0.24);
}

.public-profile-shell .public-profile-nav{
  background: rgba(3,5,9,0.48);
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
}

.public-profile-shell .public-profile-content{
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.public-profile-overview-grid{
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.public-profile-main-column,
.public-profile-side-column{
  min-width: 0;
}

.public-profile-shell .public-profile-hero-card{
  width: min(980px, 100%);
  border: 1px solid rgba(0,229,255,0.10);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 10%, rgba(0,229,255,0.10), transparent 32%),
    rgba(5,7,11,0.66);
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  padding: clamp(18px, 2.4vw, 28px);
}

.public-profile-shell .public-profile-name{
  margin: 0;
  color: rgba(255,255,255,0.96);
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0,0,0,0.58);
}

.public-profile-shell .public-profile-handle{
  margin-top: 7px;
  color: rgba(0,229,255,0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.public-profile-rank-pill,
.public-profile-verified,
.public-profile-mini-medal,
.public-profile-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  border: 1px solid rgba(0,229,255,0.22);
  background: rgba(0,229,255,0.09);
  color: rgba(194,250,255,0.92);
  padding: 5px 8px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.public-profile-rank-pill.muted,
.public-profile-mini-medal{
  border-color: rgba(255,255,255,0.09);
  background: rgba(0,0,0,0.24);
  color: rgba(255,255,255,0.58);
}

.public-profile-verified{
  border-color: rgba(16,185,129,0.24);
  background: rgba(16,185,129,0.10);
  color: rgba(167,243,208,0.94);
}

.public-profile-hero-stats{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.public-profile-hero-stat{
  min-width: 92px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  background: rgba(0,0,0,0.30);
  padding: 10px 12px;
}

.public-profile-hero-stat span{
  display: block;
  color: rgba(255,255,255,0.94);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.88rem;
  font-weight: 900;
}

.public-profile-hero-stat small{
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.42);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.public-profile-medal-preview{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.public-profile-hero-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: min(220px, 100%);
}

.public-profile-primary-action,
.public-profile-secondary-action{
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.public-profile-primary-action:hover,
.public-profile-secondary-action:hover{
  transform: translateY(-1px);
}

.public-profile-secondary-action{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.34);
  color: rgba(255,255,255,0.78);
}

.public-profile-secondary-action:hover{
  border-color: rgba(0,229,255,0.26);
  background: rgba(0,229,255,0.07);
  color: rgba(255,255,255,0.96);
}

.public-profile-identity-strip{
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(4, minmax(160px, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px) 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0,229,255,0.08), transparent 36%),
    rgba(255,255,255,0.045);
  overflow: hidden;
  box-shadow: 0 18px 58px rgba(0,0,0,0.24);
}

.public-profile-identity-tile{
  min-width: 0;
  background: rgba(4,7,12,0.68);
  padding: 18px 20px;
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.public-profile-identity-tile-wide{
  background:
    radial-gradient(circle at 0 0, rgba(0,229,255,0.12), transparent 42%),
    rgba(4,7,12,0.72);
}

.public-profile-identity-label,
.public-profile-level-label{
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.40);
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.public-profile-identity-value{
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 0;
}

.public-profile-identity-sub{
  margin-top: 4px;
  color: rgba(255,255,255,0.42);
  font-size: 0.72rem;
  line-height: 1.45;
}

.public-profile-band-shelf{
  display: flex;
  align-items: center;
  min-width: 0;
}

.public-profile-band-orb{
  display: block;
  width: 38px;
  height: 38px;
  margin-right: -8px;
  border-radius: 999px;
  border: 1px solid rgba(0,229,255,0.18);
  background: #05070b;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.public-profile-band-orb:hover{
  transform: translateY(-2px);
  border-color: rgba(0,229,255,0.45);
  z-index: 2;
}

.public-profile-band-orb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-profile-band-shelf-empty{
  color: rgba(255,255,255,0.42);
  font-size: 0.72rem;
  line-height: 1.5;
}

.public-profile-shell .public-profile-card{
  border-color: rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,229,255,0.055), transparent 28%),
    rgba(5,7,11,0.64);
  box-shadow: 0 18px 58px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.public-profile-shell .public-profile-card:hover{
  border-color: rgba(0,229,255,0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,229,255,0.07), transparent 30%),
    rgba(6,8,13,0.72);
}

.public-profile-empty{
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.public-profile-level strong{
  display: block;
  color: rgba(255,255,255,0.96);
  font-family: 'Cinzel', serif;
  font-size: 2.3rem;
  line-height: 0.95;
}

.public-profile-level-meter{
  height: 7px;
  margin: 16px 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.public-profile-level-meter span{
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0,229,255,0.95), rgba(168,85,247,0.72));
}

.public-profile-level p{
  margin: 0;
  color: rgba(255,255,255,0.46);
  font-size: 0.76rem;
  line-height: 1.55;
}

.public-profile-track-row{
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  padding: 10px 12px;
}

.public-profile-track-row img{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
}

.public-profile-playlist-teaser{
  display: grid;
  gap: 6px;
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0 0, rgba(0,229,255,0.10), transparent 34%),
    rgba(0,0,0,0.20);
  padding: 16px;
}

.public-profile-playlist-teaser strong{
  color: rgba(255,255,255,0.90);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.public-profile-playlist-teaser span{
  color: rgba(255,255,255,0.46);
  font-size: 0.78rem;
  line-height: 1.55;
}

.public-profile-rank-number{
  color: rgba(255,255,255,0.30);
  font-size: 0.72rem;
  font-weight: 950;
  min-width: 18px;
  text-align: center;
}

/* Track row v2 (overview + top tab) */
.eel-profile-v2-track{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
  transition: border-color 0.18s, background 0.18s;
}
.eel-profile-v2-track:hover{
  background: rgba(255,255,255,0.042);
  border-color: rgba(168,85,247,0.28);
}
.eel-profile-v2-track img{
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.eel-profile-v2-track-rank{
  color: rgba(255,255,255,0.22);
  font-size: 0.66rem;
  font-weight: 950;
  min-width: 14px;
  text-align: center;
  flex-shrink: 0;
}
.eel-profile-v2-track-count{
  color: rgba(168,85,247,0.80);
  font-size: 0.66rem;
  font-weight: 900;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 28px;
  text-align: right;
}
.eel-profile-v2-track-bar-wrap{
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.eel-profile-v2-track-bar{
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(168,85,247,0.88), rgba(0,229,255,0.62));
  transition: width 0.55s ease;
}

/* Now Playing — last-played sub label */
.eel-profile-v2-now-sub{
  margin-top: 7px;
  color: rgba(255,255,255,0.36);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 720px){
  .public-profile-shell .max-w-\[1480px\]{
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 92px;
  }

  .public-profile-shell .user-public-hero{
    min-height: 0;
  }

  .public-profile-shell .public-profile-hero-card{
    padding: 18px;
  }

  .public-profile-hero-stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-profile-hero-stat{
    min-width: 0;
  }

  .public-profile-hero-actions{
    width: 100%;
  }

  .public-profile-identity-strip{
    display: flex;
    margin: 0 14px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .public-profile-identity-tile{
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .public-profile-shell .public-profile-nav{
    position: sticky;
    top: 76px;
  }

  .public-profile-shell .public-profile-content{
    padding: 16px;
  }

  .public-profile-shell .public-profile-card{
    padding: 18px;
  }
}

/* ------------------------------------------------------------------
   CATÁLOGO (albums) – mantém o cinza sólido de referência
------------------------------------------------------------------ */
/* Public profile v2 final overrides after legacy public-profile rules. */
.eel-profile-v2.public-profile-shell .public-profile-frame{
  border: 1px solid rgba(160,175,205,0.14);
  border-radius: 18px;
  background: rgba(0,0,0,0.08);
}

.eel-profile-v2.public-profile-shell .public-profile-hero-card{
  width: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eel-profile-v2.public-profile-shell .public-profile-name{
  font-size: clamp(2.45rem, 4.2vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.eel-profile-v2.public-profile-shell .public-profile-content{
  background: rgba(1,3,8,0.14);
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-hero{
  min-height: clamp(310px, 22vw, 385px);
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-hero > img{
  opacity: 1;
  object-position: center right;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-hero-shade{
  background:
    linear-gradient(90deg, rgba(2,4,10,0.88) 0%, rgba(2,4,10,0.54) 28%, rgba(2,4,10,0.10) 62%, rgba(2,4,10,0.34) 100%),
    linear-gradient(180deg, rgba(2,4,10,0.08) 0%, rgba(2,4,10,0.20) 58%, rgba(2,4,10,0.82) 100%);
}

.eel-profile-v2.public-profile-shell .public-profile-hero-card{
  padding: clamp(22px, 2.4vw, 34px);
}

.eel-profile-v2.public-profile-shell .public-profile-hero-card > .flex{
  min-height: 215px;
  align-items: center;
}

.eel-profile-v2.public-profile-shell .public-profile-hero-card .relative.shrink-0{
  align-self: center;
}

.eel-profile-v2.public-profile-shell .public-profile-hero-actions{
  min-width: 146px;
  gap: 10px;
  align-self: center;
}

.eel-profile-v2.public-profile-shell .public-profile-primary-action,
.eel-profile-v2.public-profile-shell .public-profile-secondary-action{
  min-height: 34px;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 0.66rem;
  background: linear-gradient(180deg, rgba(16,7,28,0.62), rgba(1,5,10,0.82));
}

.eel-profile-v2.public-profile-shell .public-profile-card{
  min-height: 190px;
  padding: 16px !important;
}

.eel-profile-v2.public-profile-shell .public-profile-card > .mb-5{
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-card--now,
.eel-profile-v2.public-profile-shell .eel-profile-v2-card--artists,
.eel-profile-v2.public-profile-shell .eel-profile-v2-card--tracks,
.eel-profile-v2.public-profile-shell .eel-profile-v2-card--playlists{
  min-height: 198px;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-card--scraps,
.eel-profile-v2.public-profile-shell .eel-profile-v2-card--badges{
  min-height: 230px;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now{
  grid-template-columns: 96px minmax(0, 1fr);
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now img{
  width: 96px;
  height: 96px;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-wave{
  height: 26px;
  margin-top: 10px;
}

/* ── Now Playing: live glow ring ───────────────────── */
.eel-profile-v2 .eel-profile-v2-now.is-live img{
  box-shadow: 0 0 0 2px rgba(0,229,255,0.55), 0 0 22px rgba(0,229,255,0.28);
  animation: eel-now-pulse 2.2s ease-in-out infinite;
}
@keyframes eel-now-pulse{
  0%, 100%{ box-shadow: 0 0 0 2px rgba(0,229,255,0.55), 0 0 18px rgba(0,229,255,0.22); }
  50%     { box-shadow: 0 0 0 3px rgba(0,229,255,0.90), 0 0 32px rgba(0,229,255,0.48); }
}
.eel-profile-v2-now-cover-link{
  display: block;
  flex-shrink: 0;
}
.eel-profile-v2-now-artist-link{
  display: contents;
  text-decoration: none;
}
.eel-profile-v2-now-artist-link:hover span{
  color: rgba(0,229,255,0.88);
}

/* ── Track card enrichments ────────────────────────── */
.eel-profile-v2-track img{
  width: 44px;
  height: 44px;
}
.eel-profile-v2-track-bar-wrap{
  height: 4px;
}
.eel-profile-v2-track-bar{
  transform-origin: left center;
  animation: eel-bar-reveal 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes eel-bar-reveal{
  from{ transform: scaleX(0); }
  to  { transform: scaleX(1); }
}

/* ── Dead space: empty playlist card collapses ─────── */
.eel-profile-v2.public-profile-shell .eel-profile-v2-card--playlists:has(.eel-profile-v2-empty-playlists){
  min-height: 0;
}

/* ── Avatar card ────────────────────────────────────── */
.eel-profile-v2.public-profile-shell .eel-profile-v2-card--avatar{
  min-height: 198px;
}

/* Recent Activity: fecha as 3 colunas ao lado do Avatar na fila 2 */
.eel-profile-v2.public-profile-shell .eel-profile-v2-card--activity{
  grid-column: span 3;
  min-height: 198px;
}
.eel-avatar-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.eel-avatar-card__frame{
  width: 160px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eel-avatar-card__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}
.eel-avatar-card__label{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.eel-profile-v2 .eel-profile-v2-empty{
  min-height: 104px;
  border-radius: 8px;
}

.eel-profile-v2 .eel-profile-v2-empty-player{
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.eel-profile-v2 .eel-profile-v2-empty-cover{
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background:
    radial-gradient(circle at 45% 35%, rgba(180,92,255,0.16), transparent 48%),
    rgba(0,0,0,0.38);
  color: rgba(255,255,255,0.42);
}

.eel-profile-v2 .eel-profile-v2-empty-copy strong,
.eel-profile-v2 .eel-profile-v2-empty-copy span{
  display: block;
}

.eel-profile-v2 .eel-profile-v2-empty-copy strong{
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eel-profile-v2 .eel-profile-v2-empty-copy span{
  margin-top: 8px;
  color: rgba(214,222,238,0.46);
  font-size: 0.72rem;
  line-height: 1.35;
}

.eel-profile-v2 .eel-profile-v2-empty-wave{
  width: min(170px, 100%);
  height: 18px;
  margin-top: 10px;
  opacity: 0.32;
  background: repeating-linear-gradient(90deg, rgba(180,92,255,0.95) 0 2px, transparent 2px 7px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}

.eel-profile-v2 .eel-profile-v2-empty-artists{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
}

.eel-profile-v2 .eel-profile-v2-empty-artists span{
  width: clamp(42px, 4vw, 62px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(180,92,255,0.24);
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(145deg, rgba(180,92,255,0.16), rgba(0,229,255,0.08));
  box-shadow: 0 0 18px rgba(180,92,255,0.08);
  opacity: calc(0.85 - (var(--i) * 0.08));
}

.eel-profile-v2 .eel-profile-v2-empty-tracks{
  display: grid;
  gap: 9px;
}

.eel-profile-v2 .eel-profile-v2-empty-tracks div{
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
}

.eel-profile-v2 .eel-profile-v2-empty-tracks em{
  color: rgba(0,229,255,0.64);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 900;
}

.eel-profile-v2 .eel-profile-v2-empty-tracks span,
.eel-profile-v2 .eel-profile-v2-empty-tracks small{
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
}

.eel-profile-v2 .eel-profile-v2-empty-playlists{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.eel-profile-v2 .eel-profile-v2-empty-playlists span{
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(135deg, rgba(255,79,216,0.18), transparent 46%),
    radial-gradient(circle at 70% 25%, rgba(0,229,255,0.18), transparent 34%),
    rgba(0,0,0,0.36);
  opacity: calc(0.95 - (var(--i) * 0.12));
}

.eel-profile-v2 .eel-profile-v2-empty-scraps{
  display: grid;
  gap: 12px;
}

.eel-profile-v2 .eel-profile-v2-scrap-fake-row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  gap: 10px;
}

.eel-profile-v2 .eel-profile-v2-scrap-fake-row span{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 11px 12px;
  color: rgba(255,255,255,0.46);
  background: rgba(0,0,0,0.34);
  font-size: 0.74rem;
}

.eel-profile-v2 .eel-profile-v2-scrap-fake-row button{
  border: 1px solid rgba(180,92,255,0.32);
  border-radius: 6px;
  background: rgba(180,92,255,0.18);
  color: rgba(255,255,255,0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eel-profile-v2 .eel-profile-v2-empty-scraps p{
  margin: 0;
  color: rgba(214,222,238,0.48);
  font-size: 0.75rem;
}

.eel-profile-v2 .eel-profile-v2-empty-medals{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.eel-profile-v2 .eel-profile-v2-empty-medals span{
  display: grid;
  place-items: center;
  width: clamp(44px, 4.2vw, 68px);
  aspect-ratio: 1;
  clip-path: polygon(50% 0,61% 24%,88% 12%,76% 39%,100% 50%,76% 61%,88% 88%,61% 76%,50% 100%,39% 76%,12% 88%,24% 61%,0 50%,24% 39%,12% 12%,39% 24%);
  background:
    radial-gradient(circle, rgba(255,255,255,0.16), transparent 32%),
    linear-gradient(145deg, rgba(180,92,255,0.32), rgba(0,229,255,0.12));
  color: rgba(255,255,255,0.34);
  box-shadow: 0 0 24px rgba(180,92,255,0.14);
  opacity: calc(0.72 - (var(--i) * 0.05));
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-meta-bar{
  background:
    linear-gradient(90deg, rgba(0,229,255,0.055), rgba(180,92,255,0.055), rgba(255,79,216,0.045)),
    rgba(1,4,10,0.76);
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-meta-item{
  position: relative;
  padding: 18px 22px 18px 54px;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-meta-item > i{
  position: absolute;
  left: 22px;
  top: 22px;
  color: var(--eel-v2-cyan);
  text-shadow: 0 0 16px rgba(0,229,255,0.48);
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-meta-item:nth-child(2) > i{ color: #e7ff5c; }
.eel-profile-v2.public-profile-shell .eel-profile-v2-meta-item:nth-child(3) > i{ color: #5d8dff; }
.eel-profile-v2.public-profile-shell .eel-profile-v2-meta-item:nth-child(4) > i{ color: #ff8b5c; }
.eel-profile-v2.public-profile-shell .eel-profile-v2-meta-item:nth-child(5) > i{ color: var(--eel-v2-purple); }

.eel-profile-v2.public-profile-shell .eel-profile-v2-meta-item strong{
  font-size: 1.04rem;
}

@media (max-width: 760px){
  .eel-profile-v2 .public-profile-frame{
    border-radius: 14px;
  }

  .eel-profile-v2 .public-profile-hero-card{
    padding: 24px 18px;
  }

  .eel-profile-v2 .public-profile-hero-card > .flex{
    min-height: 0;
    align-items: flex-start;
  }

  .eel-profile-v2 .public-profile-hero-actions{
    width: 100%;
  }

  .eel-profile-v2 .public-profile-hero-stats{
    gap: 18px;
  }

  .eel-profile-v2 .eel-profile-v2-grid,
  .eel-profile-v2 .eel-profile-v2-meta-bar{
    grid-template-columns: 1fr;
  }

  .eel-profile-v2 .eel-profile-v2-card--scraps,
  .eel-profile-v2 .eel-profile-v2-card--badges,
  .eel-profile-v2 .eel-profile-v2-card--activity,
  .eel-profile-v2 .eel-profile-v2-meta-level{
    grid-column: auto;
  }

  .eel-profile-v2 .public-profile-card{
    min-height: 0;
  }

  .eel-profile-v2 .eel-profile-v2-meta-item{
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .eel-profile-v2 .eel-profile-v2-meta-item:last-child{
    border-bottom: 0;
  }

  .eel-profile-v2.public-profile-shell .eel-profile-v2-grid{
    grid-template-columns: 1fr;
  }

  .eel-profile-v2.public-profile-shell .eel-profile-v2-hero{
    min-height: 0;
  }

  .eel-profile-v2.public-profile-shell .public-profile-hero-card > .flex{
    min-height: 0;
  }

  .eel-profile-v2.public-profile-shell .eel-profile-v2-meta-item{
    padding-left: 52px;
  }
}

.admin-shell #albums-container .glass-panel{
  background: var(--admin-catalog) !important;
  border-color: var(--admin-catalog-border) !important;
  background-image: none !important;
}

/* ------------------------------------------------------------------
   >>> O QUE VOCÊ QUER: deixar 4 cards com o MESMO cinza do catálogo <<<
   Core Identity + Lore & Tags + Artist Directory + Metadata Preview
   (força vencer Tailwind bg-black/20 e bg-white/[0.02])
------------------------------------------------------------------ */

/* 1) Core Identity + Lore & Tags (lado esquerdo) */
.admin-shell #view-identity .glass-panel{
  background: var(--admin-catalog) !important;
  border-color: var(--admin-catalog-border) !important;
  background-image: none !important;
}

/* 2) Sidebar (lado direito): Artist Directory + Metadata Preview */
.admin-shell .lg\:col-span-4 .glass-panel,
.admin-shell .lg\:col-span-4 aside .glass-panel{
  background: var(--admin-catalog) !important;
  border-color: var(--admin-catalog-border) !important;
  background-image: none !important;
}

/* Extra: se algum desses vier com bg-black/20 no HTML, garante que não “ganha” */
.admin-shell .glass-panel[class*="bg-black"],
.admin-shell .glass-panel[class*="bg-white/"]{
  background-image: none !important;
}

/* Se quiser um pouquinho mais “vivo”, descomente:
.admin-shell #view-identity .glass-panel,
.admin-shell .lg\:col-span-4 .glass-panel{
  box-shadow: 0 24px 70px -55px rgba(0,0,0,0.95) !important;
}
*/
/* =========================================================
   FIXES: BIO FULL-WIDTH + INPUT PADDING (no text clipping)
   Cole no FINAL do admin-dashboard.css
========================================================= */

/* 1) BIO: força o textarea a expandir horizontalmente */
.admin-shell #view-identity #inp-bio{
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;

  /* opcional: deixa mais “respirável” */
  padding: 12px 14px !important;
}

/* garante que o wrapper não esteja limitando largura */
.admin-shell #view-identity .form-group{
  width: 100%;
  max-width: none;
  min-width: 0;
}

/* 2) INPUTS: mais padding + line-height pra não cortar letras */
.admin-shell .admin-input,
.admin-shell .admin-input-glass,
.admin-shell textarea.admin-input-glass,
.admin-shell select.admin-input-glass{
  box-sizing: border-box !important;
  padding: 10px 14px !important;     /* <- isso resolve “DERAIL”, “Japan”, “Teste” colando na borda */
  line-height: 1.2 !important;
}

/* campo grande (Artist Name) costuma precisar de um pouco mais */
.admin-shell #inp-name{
  padding: 12px 16px !important;
  line-height: 1.15 !important;
}

/* opcional: dá um micro “inset” pra parecer mais premium e afastar visualmente */
.admin-shell .admin-input,
.admin-shell .admin-input-glass{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(0,0,0,0.22) !important;
}

/* Admin select: legível no glass */
.admin-select,
#video-grid select[data-field="kind"]{
  background: rgba(10,10,14,0.85) !important;
  color: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 6px 10px;
  outline: none;
}

#video-grid select[data-field="kind"] option{
  background: #0b0b10 !important;
  color: rgba(255,255,255,0.92) !important;
}

/* =========================================================
   Dashboard local Tailwind compatibility polish
   ========================================================= */

.admin-shell {
  font-family: 'Inter', system-ui, sans-serif !important;
}

/* HERO RESTORE */
.admin-shell .artist-hero {
  height: 430px !important;
  min-height: 430px !important;
  padding-top: 18px !important;
}

.admin-shell .artist-hero__bg img,
.admin-shell #admin-bg-preview {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.admin-shell .artist-avatar-large {
  width: 160px !important;
  height: 160px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    transform 0.22s ease;
}

/* Avatar mode: new artist draft / empty workspace */
.admin-shell .artist-avatar-large[data-avatar-mode="draft"],
.admin-shell [data-avatar-mode="draft"] .artist-avatar-large,
.admin-shell #admin-avatar-preview[data-avatar-mode="draft"] {
  border: 3px solid rgba(148, 163, 184, 0.72) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 20px 3px rgba(148, 163, 184, 0.20),
    0 0 46px 8px rgba(0, 229, 255, 0.08) !important;
  filter: saturate(0.92) contrast(1.02);
}

/* Avatar mode: real artist/band loaded for editing */
.admin-shell .artist-avatar-large[data-avatar-mode="artist"],
.admin-shell [data-avatar-mode="artist"] .artist-avatar-large,
.admin-shell #admin-avatar-preview[data-avatar-mode="artist"] {
  border: 3px solid rgba(8, 10, 14, 0.98) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 14px 3px rgba(0, 0, 0, 0.82),
    0 0 42px 8px rgba(0, 0, 0, 0.72) !important;
  filter: saturate(0.96) contrast(1.05);
}

/* Reserved mode: personal/admin profile, if used later */
.admin-shell .artist-avatar-large[data-avatar-mode="profile"],
.admin-shell [data-avatar-mode="profile"] .artist-avatar-large,
.admin-shell #admin-avatar-preview[data-avatar-mode="profile"] {
  border: 3px solid rgba(192, 132, 252, 0.85) !important;
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.25),
    0 0 28px 4px rgba(192, 132, 252, 0.35),
    0 0 60px 8px rgba(0, 229, 255, 0.15) !important;
  filter: saturate(1) contrast(1);
}

.admin-shell .artist-avatar-large img {
  object-position: center center !important;
  object-fit: cover !important;
}

/* Hero band avatar must always FILL the circle, regardless of the source image's
   aspect or any global `img { height:auto }` rule that could otherwise leave the
   image at natural height (black void at top/bottom, not filling the circle). */
#admin-avatar-wrap {
  width: 160px !important;
  height: 160px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 9999px !important;
  overflow: hidden !important;
}
#admin-avatar-wrap > #admin-avatar-preview,
#admin-avatar-preview {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  border-radius: inherit !important;
}

.admin-shell .artist-info h1,
.admin-shell .hero-title,
.admin-shell #artist-hero-name {
  font-family: 'Cinzel', serif !important;
  font-size: clamp(2.7rem, 3.8vw, 4.8rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

/* DIRECTORY LIST */
.admin-shell #artist-list,
.admin-shell #artist-list *,
.admin-shell #artist-list *::before,
.admin-shell #artist-list *::after {
  box-sizing: border-box !important;
}

.admin-shell #artist-list {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

.admin-shell #artist-list > * {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 78px !important;
  padding: 12px 16px !important;
  border-radius: 18px !important;
}

.admin-shell #artist-list h3,
.admin-shell #artist-list strong,
.admin-shell #artist-list .artist-name {
  font-size: 0.9rem !important;
  line-height: 1.08 !important;
}

.admin-shell #artist-list small,
.admin-shell #artist-list .artist-slug,
.admin-shell #artist-list .text-gray-500 {
  font-size: 0.72rem !important;
  line-height: 1.25 !important;
  opacity: 0.82 !important;
}

.admin-shell #artist-list .museum-badge,
.admin-shell #artist-list [class*="museum"] {
  font-size: 0.64rem !important;
}

/* LETTER KEYBOARD */
.admin-shell #artist-letter-strip,
.admin-shell #curator-letter-strip {
  display: grid !important;
  grid-template-columns: repeat(13, minmax(0, 1fr)) !important;
  gap: 6px !important;
  justify-content: stretch !important;
  align-items: center !important;
}

.admin-shell #artist-letter-strip button,
.admin-shell #curator-letter-strip button {
  width: 100% !important;
  min-width: 0 !important;
  height: 24px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px !important;
  line-height: 1 !important;
  border-radius: 6px !important;
}

/* =========================================================
   Admin identity + directory compact alignment
   ========================================================= */

.admin-shell #artist-list > button {
  width: 100% !important;
}

.admin-shell #artist-list > button > div {
  min-height: 46px !important;
}

.admin-shell #artist-list {
  gap: 6px !important;
}

.admin-shell #inp-band-status,
.admin-shell select#inp-band-status {
  min-width: 128px !important;
  width: 100% !important;
  white-space: nowrap !important;
}

.admin-shell .admin-input-glass,
.admin-shell select,
.admin-shell input {
  min-width: 0;
}

.admin-shell select.admin-input-glass {
  text-overflow: clip;
}

/* ========================================================
   PUBLIC PROFILE v2 — feature enrichments
   ======================================================== */

/* ── Animated equalizer (Now Playing live) ─────────────── */
.eel-profile-v2-equalizer{
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-top: 10px;
}
.eel-profile-v2-equalizer span{
  display: block;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(0,229,255,0.85), rgba(168,85,247,0.65));
  animation: eel-eq-bar 0.75s ease-in-out infinite alternate;
}
.eel-profile-v2-equalizer span:nth-child(1){ animation-duration: 0.68s; animation-delay: 0ms; }
.eel-profile-v2-equalizer span:nth-child(2){ animation-duration: 0.52s; animation-delay: 90ms; }
.eel-profile-v2-equalizer span:nth-child(3){ animation-duration: 0.88s; animation-delay: 30ms; }
.eel-profile-v2-equalizer span:nth-child(4){ animation-duration: 0.60s; animation-delay: 140ms; }
.eel-profile-v2-equalizer span:nth-child(5){ animation-duration: 0.74s; animation-delay: 60ms; }
@keyframes eel-eq-bar{
  from{ height: 4px; opacity: 0.45; }
  to  { height: 20px; opacity: 1; }
}

/* ── Listening filter pills ────────────────────────────── */
.eel-listen-filter-pill{
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(200,215,240,0.55);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.eel-listen-filter-pill:hover{
  border-color: rgba(0,229,255,0.35);
  color: rgba(0,229,255,0.85);
  background: rgba(0,229,255,0.07);
}
.eel-listen-filter-pill.is-active{
  border-color: rgba(0,229,255,0.55);
  background: rgba(0,229,255,0.12);
  color: #00e5ff;
  box-shadow: 0 0 14px rgba(0,229,255,0.18);
}

/* ── Playlist full-view card ───────────────────────────── */
.eel-playlist-card .aspect-square img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Music graph (graph tab) ───────────────────────────── */
.eel-mgraph-root{
  max-width: 680px;
}
.eel-mgraph-section{
  /* intentionally unstyled — children use their own spacing */
}
.eel-mgraph-label{
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.eel-mgraph-row{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.eel-mgraph-img{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.eel-mgraph-bar-wrap{
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.eel-mgraph-bar{
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0,229,255,0.75), rgba(168,85,247,0.55));
  transform-origin: left center;
  animation: eel-bar-reveal 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
.eel-mgraph-genre{
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,0.25);
  background: rgba(168,85,247,0.08);
  color: rgba(196,164,255,0.85);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eel-mgraph-heatmap{
  display: flex;
  gap: 3px;
  align-items: flex-end;
}
.eel-mgraph-heat-cell{
  flex: 1;
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(to top, rgba(0,229,255,0.9), rgba(168,85,247,0.6));
  min-width: 0;
}

/* ========================================================
   Public profile — Now Playing / Playlist polish
   Fixes alignment, clipping and stale-looking card jumps.
   ======================================================== */

.eel-profile-v2.public-profile-shell .eel-profile-v2-card--now .relative.z-10{
  min-width: 0;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now{
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now-cover-link{
  display: block;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now-cover-link img{
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now-copy{
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now-copy strong,
.eel-profile-v2.public-profile-shell .eel-profile-v2-now-copy span,
.eel-profile-v2.public-profile-shell .eel-profile-v2-now-copy small,
.eel-profile-v2.public-profile-shell .eel-profile-v2-now-sub{
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now-copy strong{
  display: block;
  line-height: 1.2;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-now-artist-link{
  display: block;
  max-width: 100%;
  min-width: 0;
  text-decoration: none;
}

.eel-profile-v2.public-profile-shell .eel-profile-v2-equalizer{
  width: 64px;
  margin-top: 10px;
}

.eel-profile-v2.public-profile-shell .eel-public-playlist-grid.is-compact{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

/* Compact cards: same vertical layout as non-compact */
.eel-profile-v2.public-profile-shell .eel-public-playlist-grid.is-compact .eel-public-playlist-card-v2{
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.eel-profile-v2.public-profile-shell .eel-public-playlist-grid.is-compact .eel-public-playlist-cover-v2{
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.eel-profile-v2.public-profile-shell .eel-public-playlist-grid.is-compact .eel-public-playlist-body-v2{
  padding: 8px 10px 4px;
  justify-content: flex-start;
}

.eel-profile-v2.public-profile-shell .eel-public-playlist-grid.is-compact .eel-public-playlist-play-v2{
  align-self: flex-end;
  margin: 0 10px 10px auto;
  padding-left: 0;
}

.eel-profile-v2.public-profile-shell .eel-public-playlist-card-v2{
  min-width: 0;
  overflow: hidden;
}

.eel-profile-v2.public-profile-shell .eel-public-playlist-body-v2{
  min-width: 0;
}

.eel-profile-v2.public-profile-shell .eel-public-playlist-title-v2,
.eel-profile-v2.public-profile-shell .eel-public-playlist-meta-v2,
.eel-profile-v2.public-profile-shell .eel-public-playlist-kicker-v2{
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1180px){
  .eel-profile-v2 .eel-profile-v2-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eel-profile-v2 .eel-profile-v2-meta-bar{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eel-profile-v2 .eel-profile-v2-meta-level{
    grid-column: 1 / -1;
  }

  .public-profile-overview-grid{
    grid-template-columns: 1fr;
  }

  .public-profile-identity-strip{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eel-profile-v2.public-profile-shell .eel-profile-v2-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eel-profile-v2.public-profile-shell .eel-profile-v2-card--activity{
    grid-column: span 1;
  }

  .eel-profile-v2.public-profile-shell .eel-public-playlist-grid.is-compact{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px){
  .eel-profile-v2.public-profile-shell .eel-profile-v2-now{
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }

  .eel-profile-v2.public-profile-shell .eel-profile-v2-now-cover-link,
  .eel-profile-v2.public-profile-shell .eel-profile-v2-now-cover-link img{
    width: 74px;
    height: 74px;
  }
}

/* ------------------------------------------------------------------
   NOW PLAYING — HISTORY SECTION
------------------------------------------------------------------ */

.eel-profile-v2-now-hist{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.eel-profile-v2-now-hist-label{
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}

.eel-profile-v2-now-hist-row{
  display: grid;
  grid-template-columns: 28px minmax(0,1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.eel-profile-v2-now-hist-row:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.eel-profile-v2-now-hist-row img{
  width: 28px;
  height: 28px;
  border-radius: 5px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}

.eel-profile-v2-now-hist-text{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eel-profile-v2-now-hist-title{
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eel-profile-v2-now-hist-artist{
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eel-profile-v2-now-hist-time{
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

/* =========================================================
   Admin Identity Guides: stable accordion sizing
   Fixes uneven guide cards in Band Info / Identity tab.
========================================================= */

.admin-shell #view-identity .curator-guide-card,
.admin-shell #view-band-info .curator-guide-card {
  height: 92px;
  min-height: 92px;
  max-height: 92px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  transition:
    height 220ms ease,
    min-height 220ms ease,
    max-height 220ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.admin-shell #view-identity .curator-guide-card[open],
.admin-shell #view-band-info .curator-guide-card[open] {
  height: 322px;
  min-height: 322px;
  max-height: 322px;
}

/* =========================================================
   ARTIST DASHBOARD — tab buttons (console-style)
   ========================================================= */

.artist-dash__tab-btn {
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 2px solid transparent;
  color: rgba(156, 163, 175, 1);
  transition: color 0.2s ease, border-color 0.2s ease;
  padding: 20px 0 16px;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-dash__tab-btn:hover {
  color: #fff;
}

.artist-dash__tab-btn.active {
  color: #fff;
  border-bottom-color: #00e5ff;
}

.artist-dash-select {
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 11px;
  font-family: var(--font-sans, sans-serif);
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

/* Artist Console — catalogue search dropdown */
.artist-band-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  max-height: 320px;
  overflow-y: auto;
  background: rgba(10,10,14,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  padding: 6px;
}
.artist-band-results__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  color: #e6e6ea;
  transition: background 0.15s ease;
}
.artist-band-results__row:hover { background: rgba(0,229,255,0.1); }
.artist-band-results__name { font-size: 0.85rem; font-weight: 600; }
.artist-band-results__slug { font-size: 0.68rem; color: #7a7a82; font-family: var(--font-mono, monospace); }
.artist-band-results__empty { padding: 14px; text-align: center; color: #777; font-size: 0.78rem; }

/* Social Hub tab buttons — inherit nav font + active state */
.eel-hub-tab {
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-sans, sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.eel-hub-tab-active {
  color: #fff !important;
  border-bottom-color: #00e5ff !important;
}

/* =========================================================
   ARTIST DASHBOARD — legacy (pre-console layout, kept for compat)
   ========================================================= */

.artist-dash {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  font-family: var(--font-sans, sans-serif);
}

.artist-dash__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.artist-dash__kicker {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c084fc;
  margin-bottom: 6px;
}

.artist-dash__title {
  font-family: var(--font-serif, serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-dash__band-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(192,132,252,0.3);
  color: #e0e0e0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.artist-dash__tab-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.artist-dash__tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  font-family: var(--font-sans, sans-serif);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.artist-dash__tab-btn:hover { color: rgba(255,255,255,0.75); }
.artist-dash__tab-btn.active {
  color: #fff;
  border-bottom-color: #00e5ff;
}

.artist-dash__loading {
  padding: 40px;
  text-align: center;
  color: #555;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artist-dash__empty {
  padding: 80px 24px;
  text-align: center;
}
.artist-dash__empty-icon {
  font-size: 2rem;
  color: #333;
  margin-bottom: 16px;
}
.artist-dash__empty-title {
  font-size: 1rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 8px;
}
.artist-dash__empty-sub {
  font-size: 0.8rem;
  color: #444;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.6;
}

.artist-dash__coming-soon {
  padding: 44px 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 16px;
}
.artist-dash__coming-soon-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}
.artist-dash__coming-soon-sub {
  font-size: 0.78rem;
  color: #444;
  line-height: 1.6;
}
.artist-dash__coming-soon-sub code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.72rem;
  color: #aaa;
}

.artist-dash__tab-error {
  padding: 40px;
  text-align: center;
  color: #e05555;
  font-size: 0.8rem;
}

/* Overview */
.artist-dash__overview {}
.artist-dash__band-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.artist-dash__band-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background: #111;
}
.artist-dash__band-img-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #333;
}
.artist-dash__band-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-serif, serif);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.artist-dash__band-slug {
  font-size: 0.72rem;
  color: #555;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.artist-dash__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.artist-dash__stat-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.22));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 18px 20px;
  text-align: left;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, transform 0.18s ease;
}
.artist-dash__stat-card:hover {
  border-color: rgba(0,229,255,0.3);
  transform: translateY(-2px);
}
.artist-dash__stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-serif, serif);
  line-height: 1;
}
.artist-dash__stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8a90;
  margin-top: 10px;
  font-family: var(--font-mono, ui-monospace, monospace);
}

.artist-dash__overview-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.artist-dash__action-btn {
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.3);
  color: #67e8f9;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.artist-dash__action-btn:hover { background: rgba(0,229,255,0.18); border-color: rgba(0,229,255,0.5); }

/* Tables */
.artist-dash__table-wrap {
  overflow-x: auto;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 4px 8px;
}
.artist-dash__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.artist-dash__table-th {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  white-space: nowrap;
}
.artist-dash__table-row:hover { background: rgba(255,255,255,0.025); }
.artist-dash__table-cell {
  padding: 10px 12px;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.artist-dash__status-badge {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid currentColor;
}
.artist-dash__status-badge--published { color: #00ff88; }
.artist-dash__status-badge--draft     { color: #888; }
.artist-dash__status-badge--approved  { color: #00ff88; }
.artist-dash__status-badge--pending   { color: #fbbf24; }
.artist-dash__status-badge--denied    { color: #e05555; }
.artist-dash__status-badge--active    { color: #00e5ff; }
.artist-dash__status-badge--inactive  { color: #555; }

.artist-dash__link {
  color: #67e8f9;
  text-decoration: none;
}
.artist-dash__link:hover { text-decoration: underline; }

/* Biography */
.artist-dash__bio { max-width: 720px; }
.artist-dash__bio-field { margin-bottom: 20px; }
.artist-dash__bio-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
  display: block;
}
.artist-dash__bio-text {
  color: #bbb;
  font-size: 0.85rem;
  line-height: 1.7;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 18px;
  white-space: pre-wrap;
}
.artist-dash__bio-meta {
  display: flex;
  gap: 20px;
  font-size: 0.72rem;
  color: #555;
  flex-wrap: wrap;
}

/* Photos */
.artist-dash__photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.artist-dash__photo-item {
  background: rgba(0,0,0,0.2);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.18s ease;
}
.artist-dash__photo-item:hover { border-color: rgba(0,229,255,0.3); }
.artist-dash__photo-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.artist-dash__photo-caption {
  font-size: 0.65rem;
  color: #666;
  padding: 6px 8px;
}

/* ═══════════════════════════════════════════════════════════
   Social Hub Console — /social-hub
   Full-page console matching Admin / Curator aesthetic
═══════════════════════════════════════════════════════════ */

.eel-social-console {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #07040f;
  font-family: var(--font-sans, sans-serif);
}

/* ── Hero ─────────────────────────────────────────────────── */

.eel-social-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 5vw, 64px) 44px;
  flex-shrink: 0;
}

/* Grid texture overlay */
.eel-social-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 132, 252, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 132, 252, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Gradient glows */
.eel-social-hero__glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.eel-social-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.eel-social-hero__glow--1 {
  width: 500px; height: 400px;
  left: -80px; top: -100px;
  background: rgba(192, 132, 252, 0.22);
}

.eel-social-hero__glow--2 {
  width: 400px; height: 300px;
  right: 5%; top: -60px;
  background: rgba(71, 246, 255, 0.1);
}

.eel-social-hero__glow--3 {
  width: 300px; height: 250px;
  left: 40%; bottom: -60px;
  background: rgba(212, 32, 106, 0.1);
}

/* Bottom fade into page background */
.eel-social-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #07040f);
  pointer-events: none;
}

.eel-social-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
}

.eel-social-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(192, 132, 252, 0.3);
  border-radius: 999px;
  background: rgba(192, 132, 252, 0.07);
  color: #c084fc;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eel-social-hero__dot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c084fc;
  box-shadow: 0 0 8px #c084fc;
  animation: eel-hub-pulse 2.2s ease-in-out infinite;
}

@keyframes eel-hub-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.eel-social-hero__title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1;
  text-shadow:
    0 0 80px rgba(192, 132, 252, 0.55),
    0 0 30px rgba(192, 132, 252, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.5);
}

.eel-social-hero__sub {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  text-transform: uppercase;
}

/* ── Nav bar ──────────────────────────────────────────────── */

.eel-social-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 54px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  flex-shrink: 0;
}

.eel-social-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans, sans-serif);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.eel-social-nav__btn:hover {
  border-color: rgba(192, 132, 252, 0.45);
  color: #c084fc;
  background: rgba(192, 132, 252, 0.07);
}

.eel-social-nav__btn--active {
  border-color: rgba(192, 132, 252, 0.5) !important;
  color: #c084fc !important;
  background: rgba(192, 132, 252, 0.09) !important;
}

.eel-social-nav__icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.eel-social-nav__spacer {
  flex: 1;
}

.eel-social-nav__status {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Stage ────────────────────────────────────────────────── */

.eel-social-stage {
  flex: 1;
  position: relative;
  min-height: 560px;
}

/* Night Hall fills stage when mounted */
.eel-social-stage .night-shell--embedded {
  height: 100%;
  min-height: 560px;
  border-radius: 0;
}

/* Editor fills stage */
.eel-social-stage .eel-hub-editor-wrap {
  height: 100%;
  min-height: 560px;
}

/* Error state */
.eel-social-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 90, 90, 0.55);
  font-family: var(--font-sans, sans-serif);
}

/* ── Idle CTA cards ───────────────────────────────────────── */

.eel-social-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: clamp(28px, 5vw, 56px) clamp(24px, 5vw, 64px);
  align-items: stretch;
  min-height: 400px;
  align-content: center;
}

.eel-social-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.18s, box-shadow 0.2s;
  text-align: left;
  width: 100%;
  font-family: var(--font-sans, sans-serif);
  color: inherit;
}

.eel-social-cta:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.eel-social-cta--hub {
  border-color: rgba(71, 246, 255, 0.12);
  background: rgba(71, 246, 255, 0.025);
}

.eel-social-cta--hub:hover {
  border-color: rgba(71, 246, 255, 0.4);
  background: rgba(71, 246, 255, 0.06);
  box-shadow: 0 12px 40px rgba(71, 246, 255, 0.1);
}

.eel-social-cta--avatar {
  border-color: rgba(192, 132, 252, 0.12);
  background: rgba(192, 132, 252, 0.025);
}

.eel-social-cta--avatar:hover {
  border-color: rgba(192, 132, 252, 0.4);
  background: rgba(192, 132, 252, 0.06);
  box-shadow: 0 12px 40px rgba(192, 132, 252, 0.1);
}

.eel-social-cta__icon {
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.18s;
}

.eel-social-cta:hover .eel-social-cta__icon { opacity: 1; }

.eel-social-cta__body {
  flex: 1;
  min-width: 0;
}

.eel-social-cta__title {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}

.eel-social-cta--hub .eel-social-cta__title  { color: #47f6ff; }
.eel-social-cta--avatar .eel-social-cta__title { color: #c084fc; }

.eel-social-cta__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
  line-height: 1.55;
}

.eel-social-cta__arrow {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.18s, transform 0.18s;
}

.eel-social-cta:hover .eel-social-cta__arrow {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .eel-social-hero { height: 240px; padding: 0 24px 32px; }
  .eel-social-cta-grid { grid-template-columns: 1fr; gap: 16px; padding: 28px 24px; }
  .eel-social-cta { padding: 28px 24px; gap: 20px; }
}

@media (max-width: 560px) {
  .eel-social-cta { flex-direction: column; align-items: flex-start; }
  .eel-social-cta__arrow { display: none; }
}

.admin-shell #view-identity .curator-guide-summary,
.admin-shell #view-band-info .curator-guide-summary {
  height: 92px;
  min-height: 92px;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.admin-shell #view-identity .curator-guide-title-wrap,
.admin-shell #view-band-info .curator-guide-title-wrap {
  min-width: 0;
}

.admin-shell #view-identity .curator-guide-title,
.admin-shell #view-band-info .curator-guide-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.admin-shell #view-identity .curator-guide-teaser,
.admin-shell #view-band-info .curator-guide-teaser {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
}

.admin-shell #view-identity .curator-guide-body,
.admin-shell #view-band-info .curator-guide-body {
  flex: 1;
  min-height: 0;
  max-height: 218px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  scrollbar-width: thin;
}

.admin-shell #view-identity .curator-guide-body::-webkit-scrollbar,
.admin-shell #view-band-info .curator-guide-body::-webkit-scrollbar {
  width: 6px;
}

.admin-shell #view-identity .curator-guide-body::-webkit-scrollbar-thumb,
.admin-shell #view-band-info .curator-guide-body::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.24);
  border-radius: 999px;
}

.admin-shell #view-identity .curator-guide-body::-webkit-scrollbar-track,
.admin-shell #view-band-info .curator-guide-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

@media (max-width: 768px) {
  .admin-shell #view-identity .curator-guide-card,
  .admin-shell #view-band-info .curator-guide-card {
    height: 104px;
    min-height: 104px;
    max-height: 104px;
  }

  .admin-shell #view-identity .curator-guide-card[open],
  .admin-shell #view-band-info .curator-guide-card[open] {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
  }

  .admin-shell #view-identity .curator-guide-summary,
  .admin-shell #view-band-info .curator-guide-summary {
    height: 104px;
    min-height: 104px;
  }

  .admin-shell #view-identity .curator-guide-body,
  .admin-shell #view-band-info .curator-guide-body {
    max-height: 250px;
  }
}

/* ========================================================
   Artist Directory cards — stable paint, no transition flash
   Cards use .admin-artist-card instead of .glass-panel to
   avoid backdrop-filter repaints and transition-on-insert.
   Hover transitions are enabled after first paint via JS rAF.
   ======================================================== */

.admin-shell .admin-artist-card {
  background: var(--admin-catalog);
  border-radius: 0.75rem;
  /* No transition property here: prevents background/border animating
     from transparent on every innerHTML swap (the "flash" bug). */
}

.admin-shell .admin-artist-card--live:hover {
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.05);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

/* Loading state: dim the list in-place, lock interactions */
.admin-shell #artist-list.is-loading {
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 0.1s ease;
}

/* ========================================================
   Admin AI Helper + Band Directory alignment
   ======================================================== */

@media (min-width: 1024px) {
  .admin-shell .admin-body {
    padding-top: 28px !important;
  }

  .admin-shell .admin-workspace-grid {
    grid-template-columns: minmax(0, 1fr) clamp(320px, 28vw, 420px) !important;
    align-items: start !important;
    gap: clamp(20px, 2vw, 36px) !important;
  }

  .admin-shell .admin-primary-workspace,
  .admin-shell .admin-sidebar-rail {
    grid-column: auto !important;
    min-width: 0 !important;
  }

  .admin-shell .admin-ai-helper-panel,
  .admin-shell .admin-ai-helper-panel > .glass-panel {
    margin-top: 0 !important;
  }

  .admin-shell .tab-content.active {
    margin-top: 0 !important;
  }

  .admin-shell .admin-sidebar-sticky {
    top: 100px !important;
  }
}

@media (max-width: 1120px) and (min-width: 1024px) {
  .admin-shell .admin-workspace-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px) !important;
  }
}

/* ========================================================
   Band Directory filters and compact cards
   ======================================================== */

.admin-shell #artist-list > .band-directory-controls,
.admin-shell #artist-list > .band-directory-letter-wrap,
.admin-shell #artist-list > .band-directory-summary,
.admin-shell #artist-list > .band-directory-results,
.admin-shell #artist-list > .band-directory-pagination {
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.admin-shell #artist-list > .band-directory-controls {
  padding: 4px !important;
  border-radius: 10px !important;
}

.admin-shell #artist-list > .band-directory-alpha {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  align-items: center !important;
  min-height: 0 !important;
  padding: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  background: rgba(0, 0, 0, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.admin-shell #artist-letter-strip.band-directory-letter-wrap {
  grid-template-columns: none !important;
}

@media (min-width: 1280px) {
  .admin-shell #artist-letter-strip.band-directory-letter-wrap {
    grid-template-columns: none !important;
  }
}

.admin-shell .band-directory-tab {
  min-width: 0;
  white-space: nowrap;
}

.admin-shell #artist-letter-strip .band-directory-letter {
  width: auto !important;
  min-width: 26px !important;
  height: 26px !important;
  padding: 0 6px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.admin-shell #artist-letter-strip .band-directory-letter.is-active {
  background: rgba(0, 229, 255, 0.22) !important;
  border-color: rgba(0, 229, 255, 0.75) !important;
  color: #9ffaff !important;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.22) !important;
}

.admin-shell .band-directory-results {
  display: grid;
  gap: 7px;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.admin-shell .band-directory-card {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 98px !important;
  padding: 15px 18px !important;
  border-radius: 12px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: hidden !important;
}

.admin-shell .band-directory-card__inner {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.admin-shell .band-directory-card__meta {
  flex: 1 1 220px !important;
  min-width: 0 !important;
  padding-right: 4px !important;
}

.admin-shell .band-directory-card__status {
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  min-width: 0 !important;
  max-width: min(148px, 42%) !important;
}

.admin-shell .band-directory-card__name {
  font-size: 15px !important;
  line-height: 1.1 !important;
}

.admin-shell .band-directory-card__slug {
  font-size: 12px !important;
  line-height: 1.2 !important;
  opacity: 0.72 !important;
}

.admin-shell .band-directory-stats {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-top: 10px !important;
}

.admin-shell .band-directory-stat {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  min-width: 0;
  padding: 4px 8px;
  border-width: 1px;
  border-style: solid;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 11.5px;
  line-height: 1.2;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
}

.admin-shell .band-directory-stat b {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.admin-shell .band-directory-badges {
  max-width: min(148px, 42%);
  min-width: 0;
}

.admin-shell .band-directory-badge {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 460px) {
  .admin-shell .band-directory-card {
    padding: 14px !important;
  }

  .admin-shell .band-directory-card__inner {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .admin-shell .band-directory-card__status {
    align-self: flex-start !important;
  }
}

.admin-shell .vkgy-release-target-control {
  display: block;
  width: 100%;
  min-width: 0;
  margin-bottom: 8px;
}

.admin-shell .vkgy-release-select {
  width: 100% !important;
  min-width: min(260px, 100%) !important;
  max-width: 100% !important;
  display: block !important;
  min-height: 36px !important;
  padding-right: 34px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-shell .vkgy-image-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 6px !important;
}

.admin-shell .vkgy-image-action-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  white-space: nowrap;
  text-align: center;
}

.admin-shell .vkgy-confirm-release-button {
  min-height: 32px;
  line-height: 1.15;
  white-space: nowrap;
}

.admin-shell .vkgy-step-actions {
  flex: 1 1 420px;
  justify-content: space-between;
  column-gap: 24px;
}

.admin-shell .vkgy-step-button {
  min-width: min(260px, 100%);
  max-width: 340px;
  min-height: 62px;
}

.admin-shell .vkgy-warning-details summary::-webkit-details-marker {
  display: none;
}

.admin-shell .vkgy-warning-summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  color: rgba(254, 240, 138, 0.9);
}

.admin-shell .vkgy-warning-details[open] .vkgy-warning-summary::after {
  content: "-";
}

@media (max-width: 640px) {
  .admin-shell .vkgy-step-actions {
    width: 100%;
    row-gap: 12px;
  }

  .admin-shell .vkgy-step-button {
    width: 100%;
    max-width: none;
  }
}

/* ============================================================
   Artist Dashboard — Releases CMS + composed tabs (10-tab spec)
   ============================================================ */
.artist-dash__releases,
.artist-dash__visuals,
.artist-dash__sales,
.artist-dash__analytics,
.artist-dash__supporters,
.artist-dash__account { padding: 0; }

.artist-dash__section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.artist-dash__section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f3f3f5;
  letter-spacing: -0.01em;
}
.artist-dash__section-sub {
  font-size: 0.72rem;
  color: #888;
  margin-top: 3px;
}

/* Release cards */
.artist-dash__release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.artist-dash__release-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.artist-dash__release-card:hover { border-color: rgba(0,229,255,0.3); transform: translateY(-2px); }
.artist-dash__release-cover {
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.artist-dash__release-cover img { width: 100%; height: 100%; object-fit: cover; }
.artist-dash__release-cover-ph { font-size: 2rem; color: rgba(255,255,255,0.15); }
.artist-dash__release-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.artist-dash__release-title { font-weight: 600; color: #ececf0; font-size: 0.9rem; }
.artist-dash__release-meta { font-size: 0.72rem; color: #8a8a90; }
.artist-dash__release-actions { display: flex; align-items: center; gap: 8px; margin-top: 4px; flex-wrap: wrap; }

/* Small buttons */
.artist-dash__btn-sm {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #d4d4d8;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.artist-dash__btn-sm:hover { background: rgba(255,255,255,0.12); }
.artist-dash__btn-sm:disabled { opacity: 0.4; cursor: not-allowed; }
.artist-dash__btn-danger {
  color: #ff8aa3;
  border-color: rgba(255,92,122,0.3);
  background: rgba(255,92,122,0.08);
}
.artist-dash__btn-danger:hover { background: rgba(255,92,122,0.16); }
.artist-dash__hint { font-size: 0.66rem; color: #777; font-style: italic; }
.artist-dash__form-msg { font-size: 0.72rem; min-height: 1em; }

/* Edit form */
.artist-dash__release-form {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
}
.artist-dash__form-cover { display: flex; flex-direction: column; gap: 12px; }
.artist-dash__form-cover .artist-dash__release-cover { border-radius: 10px; }
.artist-dash__form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.artist-dash__field { display: flex; flex-direction: column; gap: 5px; }
.artist-dash__field-label {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8a90;
}
.artist-dash__input {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 10px;
  color: #ececf0;
  font-size: 0.82rem;
  font-family: inherit;
}
.artist-dash__input:focus { outline: none; border-color: rgba(0,229,255,0.5); }
.artist-dash__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 5px;
}
.artist-dash__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,229,255,0.35);
  background: rgba(0,229,255,0.1);
  color: #a5f3fc;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.artist-dash__btn-primary:hover { background: rgba(0,229,255,0.18); border-color: rgba(0,229,255,0.55); }
.artist-dash__btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.artist-dash__form-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}
.artist-dash__form-btns { display: flex; align-items: center; gap: 10px; }

/* Honest TODO blocks */
.artist-dash__todo {
  margin-top: 24px;
  background: rgba(192,132,252,0.05);
  border: 1px dashed rgba(192,132,252,0.25);
  border-radius: 10px;
  padding: 16px 18px;
}
.artist-dash__todo-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #c9a8f5;
  margin-bottom: 6px;
}
.artist-dash__todo-sub { font-size: 0.72rem; color: #999; line-height: 1.6; }
.artist-dash__todo-sub code {
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.7rem;
  color: #c9a8f5;
}

/* Seals chips */
.artist-dash__form-seals { margin-top: 6px; }
.artist-dash__seal-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.artist-dash__seal-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 4px 10px 4px 4px;
  font-size: 0.7rem;
  color: #d4d4d8;
}
.artist-dash__seal-chip img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }

/* Tracks per-album sections */
.artist-dash__tracks { padding: 0; }
.artist-dash__track-album .artist-dash__section-head { margin-bottom: 10px; }

/* Album canvas */
.artist-dash__form-canvas { margin-top: 6px; }
.artist-dash__canvas-preview { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0; }
.artist-dash__canvas-media {
  width: 160px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
}
.artist-dash__canvas-uploaders { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }

@media (max-width: 640px) {
  .artist-dash__release-form { grid-template-columns: 1fr; }
  .artist-dash__form-fields { grid-template-columns: 1fr; }
}

/* =========================================================
   ARTIST OWNER CONSOLE - control center refresh
   ========================================================= */

.admin-shell .artist-dash__hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(0,0,0,0.34);
  color: rgba(255,255,255,0.84);
  padding: 0 15px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.admin-shell .artist-dash__hero-btn:hover {
  border-color: rgba(0,229,255,0.45);
  background: rgba(0,229,255,0.12);
  color: #fff;
}

.admin-shell .artist-dash__hero-btn--primary {
  border-color: rgba(0,229,255,0.5);
  background: rgba(0,229,255,0.18);
  color: #bff7ff;
}

.admin-shell .artist-dash__console-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(0,0,0,0.22);
}

.admin-shell .artist-dash__console-kicker {
  color: #67e8f9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.admin-shell .artist-dash__console-title {
  color: rgba(255,255,255,0.84);
  font-size: 0.86rem;
  line-height: 1.5;
}

.admin-shell .artist-dash__console-pills,
.admin-shell .artist-mode-panel__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-shell .artist-dash__console-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-shell .artist-band-switcher {
  display: grid;
  gap: 8px;
}

.admin-shell .artist-band-switcher__row {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.admin-shell .artist-band-switcher__row:hover,
.admin-shell .artist-band-switcher__row.is-active {
  border-color: rgba(0,229,255,0.35);
  background: rgba(0,229,255,0.08);
}

.admin-shell .artist-band-switcher__avatar,
.admin-shell .artist-band-switcher__avatar img {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.admin-shell .artist-band-switcher__meta {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.admin-shell .artist-band-switcher__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-shell .artist-band-switcher__sub {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,0.42);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.68rem;
}

.admin-shell .artist-control-path {
  display: grid;
  gap: 10px;
}

.admin-shell .artist-control-path__step {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.8);
  text-align: left;
  cursor: pointer;
}

.admin-shell .artist-control-path__step.is-done {
  border-color: rgba(52,211,153,0.22);
  background: rgba(52,211,153,0.055);
}

.admin-shell .artist-control-path__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: #67e8f9;
  font-size: 10px;
}

.admin-shell .artist-control-path__step.is-done .artist-control-path__dot {
  color: #34d399;
}

.admin-shell .artist-control-path__label,
.admin-shell .artist-control-path__sub {
  display: block;
}

.admin-shell .artist-control-path__label {
  color: rgba(255,255,255,0.86);
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-shell .artist-control-path__sub {
  color: rgba(255,255,255,0.42);
  font-size: 0.66rem;
  margin-top: 2px;
}

.admin-shell .artist-mode-panel__state {
  color: #facc15;
  font-size: 0.92rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.admin-shell .artist-mode-panel__copy {
  color: rgba(255,255,255,0.52);
  font-size: 0.76rem;
  line-height: 1.65;
  margin: 0 0 14px;
}

.admin-shell .artist-dash__ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-shell .artist-dash__ops-card {
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  gap: 12px;
  align-items: start;
  min-height: 148px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.admin-shell .artist-dash__ops-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,229,255,0.36);
  background: rgba(0,229,255,0.06);
}

.admin-shell .artist-dash__ops-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(0,229,255,0.1);
  color: #67e8f9;
}

.admin-shell .artist-dash__ops-title,
.admin-shell .artist-dash__ops-state,
.admin-shell .artist-dash__ops-copy {
  display: block;
}

.admin-shell .artist-dash__ops-title {
  font-size: 0.86rem;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
}

.admin-shell .artist-dash__ops-state {
  margin-top: 4px;
  color: #67e8f9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-shell .artist-dash__ops-copy {
  margin-top: 8px;
  color: rgba(255,255,255,0.52);
  font-size: 0.74rem;
  line-height: 1.55;
}

.admin-shell .artist-dash__ops-arrow {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
}

.admin-shell .artist-dash__stat-top {
  color: rgba(103,232,249,0.78);
  font-size: 0.9rem;
}

.admin-shell .artist-dash__kpi-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
}

.admin-shell .artist-dash__readiness-card,
.admin-shell .artist-dash__mini-chart-card {
  min-height: 190px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(0,0,0,0.24));
  padding: 20px;
}

.admin-shell .artist-dash__readiness-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 18px;
}

.admin-shell .artist-dash__readiness-ring {
  --score: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #0a0a0c 58%, transparent 59%),
    conic-gradient(#67e8f9 calc(var(--score) * 1%), rgba(255,255,255,0.08) 0);
  box-shadow: inset 0 0 18px rgba(0,0,0,0.55), 0 0 24px rgba(0,229,255,0.08);
}

.admin-shell .artist-dash__readiness-ring span {
  color: #fff;
  font-family: var(--font-serif, serif);
  font-size: 1.55rem;
  font-weight: 900;
}

.admin-shell .artist-dash__readiness-caption {
  margin-top: 12px;
  color: #67e8f9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-shell .artist-dash__mini-chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-shell .artist-dash__mini-chart-head > span {
  flex: 0 0 auto;
  color: #67e8f9;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.74rem;
  font-weight: 900;
}

.admin-shell .artist-dash__sparkline {
  height: 112px;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  background:
    linear-gradient(to top, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(0,0,0,0.18);
}

.admin-shell .artist-dash__sparkline span {
  flex: 1 1 0;
  min-width: 14px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(to top, rgba(0,229,255,0.48), rgba(255,255,255,0.9));
  box-shadow: 0 0 14px rgba(0,229,255,0.16);
}

.admin-shell .artist-dash__sparkline.is-empty span {
  background: linear-gradient(to top, rgba(255,255,255,0.08), rgba(255,255,255,0.18));
  box-shadow: none;
}

.admin-shell .artist-dash__insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-shell .artist-dash__meter-card {
  display: grid;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  text-align: left;
  cursor: pointer;
}

.admin-shell .artist-dash__meter-card:hover {
  border-color: rgba(0,229,255,0.32);
  background: rgba(0,229,255,0.055);
}

.admin-shell .artist-dash__meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-shell .artist-dash__meter-head strong {
  color: rgba(255,255,255,0.86);
  font-size: 0.78rem;
}

.admin-shell .artist-dash__meter-head em {
  color: #67e8f9;
  font-style: normal;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.7rem;
}

.admin-shell .artist-dash__meter-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.admin-shell .artist-dash__meter-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #67e8f9, #34d399);
}

.admin-shell .artist-dash__meter-caption {
  color: rgba(255,255,255,0.48);
  font-size: 0.7rem;
}

.admin-shell .artist-dash__launch-panel,
.admin-shell .artist-rights-control {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(0,0,0,0.22);
  padding: 20px;
}

.admin-shell .artist-dash__launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.admin-shell .artist-dash__launch-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-shell .artist-dash__launch-step {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.74);
  font-size: 0.72rem;
  cursor: pointer;
}

.admin-shell .artist-dash__launch-step.is-done {
  border-color: rgba(52,211,153,0.24);
  color: #d1fae5;
}

.admin-shell .artist-rights-control {
  margin-bottom: 22px;
}

.admin-shell .artist-rights-control__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-shell .artist-rights-control__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-shell .artist-rights-control__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.84);
  text-align: left;
  cursor: pointer;
}

.admin-shell .artist-rights-control__card:hover,
.admin-shell .artist-rights-control__card.is-recommended {
  border-color: rgba(0,229,255,0.34);
  background: rgba(0,229,255,0.06);
}

.admin-shell .artist-rights-control__icon {
  color: #67e8f9;
}

.admin-shell .artist-rights-control__card strong {
  font-size: 0.86rem;
}

.admin-shell .artist-rights-control__card span:last-child {
  color: rgba(255,255,255,0.5);
  font-size: 0.74rem;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .admin-shell .artist-dash__ops-grid,
  .admin-shell .artist-dash__kpi-board,
  .admin-shell .artist-dash__insight-grid,
  .admin-shell .artist-rights-control__grid {
    grid-template-columns: 1fr;
  }

  .admin-shell .artist-dash__launch-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .admin-shell .artist-hero {
    height: auto;
    min-height: 520px;
  }

  .admin-shell .artist-hero__content {
    position: relative !important;
    padding-top: 150px;
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-shell .artist-dash__console-summary,
  .admin-shell .artist-dash__console-pills {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-shell .artist-dash__launch-steps {
    grid-template-columns: 1fr;
  }

  .admin-shell .artist-dash__hero-btn {
    width: 100%;
  }
}

/* ============================================================================
   Artist overview — animated audience panel (incrementa o codex, não substitui)
   ============================================================================ */
.artist-dash__audience {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(1200px 220px at 0% -10%, rgba(34, 211, 238, 0.10), transparent 60%),
    radial-gradient(900px 200px at 100% 0%, rgba(167, 139, 250, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.02);
  padding: 22px 22px 18px;
  transition: opacity 0.2s ease;
}
.artist-dash__audience.is-refreshing { opacity: 0.55; pointer-events: none; }
.artist-dash__audience-wave {
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.artist-dash__audience-wave svg { width: 200%; height: 100%; display: block; }
.artist-dash__audience-wave .wave { fill: rgba(34, 211, 238, 0.10); }
.artist-dash__audience-wave .wave--2 { fill: rgba(167, 139, 250, 0.10); }
.artist-dash__audience-wave .wave--1 { animation: ovWave 14s linear infinite; }
.artist-dash__audience-wave .wave--2 { animation: ovWave 22s linear infinite reverse; }
@keyframes ovWave { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.artist-dash__audience-head {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 16px;
}
.artist-dash__range { display: inline-flex; gap: 4px; padding: 3px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.30); border: 1px solid rgba(255, 255, 255, 0.08); }
.artist-dash__range-btn {
  border: 0; cursor: pointer; padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
  color: #9aa4b2; background: transparent; transition: all 0.18s ease;
}
.artist-dash__range-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.artist-dash__range-btn.is-active { color: #04121a; background: linear-gradient(135deg, #22d3ee, #38bdf8);
  box-shadow: 0 6px 18px rgba(34, 211, 238, 0.30); }

.artist-dash__kpi-strip {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
}
@media (max-width: 720px) { .artist-dash__kpi-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.artist-dash__kpi-tile {
  position: relative; overflow: hidden;
  border-radius: 16px; padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0; transform: translateY(10px);
  animation: ovRise 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}
@keyframes ovRise { to { opacity: 1; transform: translateY(0); } }
.artist-dash__kpi-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 9px; font-size: 13px; margin-bottom: 8px;
}
.artist-dash__kpi-value { display: block; font-size: 1.7rem; font-weight: 900; line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums; }
.artist-dash__kpi-label { display: block; margin-top: 5px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #8b95a3; }
.artist-dash__kpi-tile::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; opacity: 0.85; }
.artist-dash__kpi-tile--cyan    .artist-dash__kpi-icon { color: #22d3ee; background: rgba(34, 211, 238, 0.12); }
.artist-dash__kpi-tile--cyan::after    { background: linear-gradient(90deg, #22d3ee, transparent); }
.artist-dash__kpi-tile--violet  .artist-dash__kpi-icon { color: #a78bfa; background: rgba(167, 139, 250, 0.12); }
.artist-dash__kpi-tile--violet::after  { background: linear-gradient(90deg, #a78bfa, transparent); }
.artist-dash__kpi-tile--rose    .artist-dash__kpi-icon { color: #fb7185; background: rgba(251, 113, 133, 0.12); }
.artist-dash__kpi-tile--rose::after    { background: linear-gradient(90deg, #fb7185, transparent); }
.artist-dash__kpi-tile--emerald .artist-dash__kpi-icon { color: #34d399; background: rgba(52, 211, 153, 0.12); }
.artist-dash__kpi-tile--emerald::after { background: linear-gradient(90deg, #34d399, transparent); }

.artist-dash__trend-wrap { position: relative; z-index: 1; margin-top: 16px; height: 96px; }
.artist-dash__trend { width: 100%; height: 100%; display: block; }
.artist-dash__trend-area { opacity: 0; animation: ovFade 0.9s ease 0.5s forwards; }
@keyframes ovFade { to { opacity: 1; } }
.artist-dash__trend-line {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: ovDraw 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.45));
}
@keyframes ovDraw { to { stroke-dashoffset: 0; } }
.artist-dash__chart-empty {
  position: relative; z-index: 1; margin-top: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.12); border-radius: 14px;
  padding: 18px; text-align: center; color: #7b8492; font-size: 12px;
}
.artist-dash__chart-empty i { margin-right: 6px; opacity: 0.7; }

/* Listener origins (animated bars) */
.artist-dash__origins-card {
  border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02); padding: 18px;
}
.artist-dash__origins-head { margin-bottom: 12px; }
.artist-dash__origins { display: flex; flex-direction: column; gap: 10px; }
.artist-dash__origin-row {
  display: grid; grid-template-columns: 1fr 2fr auto; align-items: center; gap: 12px;
}
.artist-dash__origin-name {
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: #d7dce3;
  min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.artist-dash__origin-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dot, #22d3ee);
  flex-shrink: 0; box-shadow: 0 0 8px var(--dot, #22d3ee); }
.artist-dash__origin-bar { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.06); overflow: hidden; }
.artist-dash__origin-bar > span {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--dot, #22d3ee), rgba(255, 255, 255, 0.25));
  animation: ovGrow 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: var(--d, 0ms);
}
@keyframes ovGrow { to { width: var(--w, 0%); } }
.artist-dash__origin-val { font-size: 12px; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .artist-dash__audience-wave .wave,
  .artist-dash__kpi-tile,
  .artist-dash__trend-area,
  .artist-dash__trend-line,
  .artist-dash__origin-bar > span { animation: none !important; }
  .artist-dash__kpi-tile { opacity: 1; transform: none; }
  .artist-dash__trend-area { opacity: 1; }
  .artist-dash__trend-line { stroke-dashoffset: 0; }
  .artist-dash__origin-bar > span { width: var(--w, 0%); }
  .artist-dash__earnings-glow { animation: none !important; }
}

/* Earnings card (only rendered when the band is in standard mode) */
.artist-dash__earnings {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-radius: 20px; padding: 20px 22px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  background:
    radial-gradient(600px 160px at 0% 0%, rgba(52, 211, 153, 0.12), transparent 60%),
    radial-gradient(500px 160px at 100% 100%, rgba(251, 191, 36, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.02);
}
.artist-dash__earnings-glow {
  position: absolute; width: 260px; height: 260px; right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.22), transparent 65%);
  pointer-events: none; animation: ovPulse 5s ease-in-out infinite;
}
@keyframes ovPulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 0.9; transform: scale(1.12); } }
.artist-dash__earnings-main { position: relative; z-index: 1; min-width: 0; }
.artist-dash__earnings-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: #6ee7b7; margin-bottom: 6px;
}
.artist-dash__earnings-label i { margin-right: 6px; }
.artist-dash__earnings-value {
  font-size: 2.1rem; font-weight: 900; line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 22px rgba(52, 211, 153, 0.30);
}
.artist-dash__earnings-sub { margin-top: 7px; font-size: 12px; color: #9aa4b2; }
.artist-dash__earnings .artist-dash__btn-sm { position: relative; z-index: 1; flex-shrink: 0; }

/* ── Perfil publico + Social Hub + Consoles: densidade p/ monitores menores ──
   Os shells foram calibrados em 2K (~2540px). Em 1080p os mesmos px viram
   elementos gigantes; reduzimos o shell inteiro proporcionalmente.
   IDs (nao .admin-shell) porque essa classe tambem e usada em account-settings,
   que nao faz parte deste ajuste. */
@media (min-width: 900px) and (max-width: 2100px) {
  .eel-profile-v2.public-profile-shell,
  .social-hub-page-shell,
  #admin-shell,
  #artist-dashboard-shell,
  #curator-shell { zoom: 0.78; }
}
@media (min-width: 900px) and (max-width: 1500px) {
  .eel-profile-v2.public-profile-shell,
  .social-hub-page-shell,
  #admin-shell,
  #artist-dashboard-shell,
  #curator-shell { zoom: 0.68; }
}
