/* ── Nexus City Live Platform ─────────────────────────────── */

.nc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(244, 63, 94, 0.35);
}
.nc-live-badge::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #fff;
  animation: nc-live-pulse 1.2s ease-in-out infinite;
}
@keyframes nc-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

.nc-offline-badge {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nc-sub-badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(192, 132, 252, 0.35);
  color: #e9d5ff;
  font-size: 0.65rem;
  font-weight: 700;
}

/* Buttons */
.nc-btn-follow,
.nc-btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.nc-btn-follow {
  border: 1px solid rgba(217, 70, 239, 0.45);
  background: rgba(217, 70, 239, 0.1);
  color: #f5d0fe;
}
.nc-btn-follow.is-on,
.nc-btn-follow:hover {
  background: rgba(217, 70, 239, 0.28);
  border-color: rgba(244, 114, 182, 0.55);
  box-shadow: 0 4px 20px rgba(217, 70, 239, 0.2);
}
.nc-btn-support--donate {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #a7f3d0;
}
.nc-btn-support--donate:hover {
  background: rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

/* ── Channel shell ─────────────────────────────────────────── */
.nc-channel-shell {
  --nc-accent: #d946ef;
  --nc-accent-2: #06b6d4;
}

/* Hero header (Twitch-style) */
.nc-channel-hero {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #07070f;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.nc-channel-hero__banner {
  position: relative;
  height: clamp(140px, 22vw, 220px);
  background:
    radial-gradient(ellipse 90% 120% at 10% 0%, color-mix(in srgb, var(--nc-accent) 35%, transparent), transparent 55%),
    radial-gradient(ellipse 70% 90% at 100% 100%, rgba(6, 182, 212, 0.18), transparent 50%),
    linear-gradient(135deg, #120818 0%, #0a1020 45%, #050508 100%);
  background-size: cover;
  background-position: center;
}
.nc-channel-hero__banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 72%, rgba(5, 5, 10, 0.95) 100%);
}
.nc-channel-hero__banner-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--nc-accent), var(--nc-accent-2), transparent);
  opacity: 0.85;
}
.nc-channel-hero__panel {
  position: relative;
  margin-top: -2.75rem;
  padding: 0 1.5rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.25rem;
}
.nc-channel-hero__identity {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.25rem;
  flex: 1;
  min-width: 0;
}
.nc-channel-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, color-mix(in srgb, var(--nc-accent) 70%, #6366f1), #06b6d4);
  border: 3px solid rgba(8, 8, 14, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  overflow: hidden;
}
.nc-channel-avatar--lg {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 1.25rem;
  font-size: 2.35rem;
}
.nc-channel-avatar--md {
  width: 4rem;
  height: 4rem;
  border-radius: 0.95rem;
  font-size: 1.5rem;
}
.nc-channel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nc-channel-tagline {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 42rem;
}
.nc-channel-meta h1 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.12;
}
.nc-channel-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.65rem;
}
.nc-channel-stat {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}
.nc-channel-stat strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}
.nc-channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-left: auto;
}

/* Legacy banner alias */
.nc-channel-banner {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a12;
}

/* Tab navigation */
.nc-tabs {
  margin-top: 1.25rem;
}
.nc-tabs__nav {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: none;
}
.nc-tabs__nav::-webkit-scrollbar { display: none; }
.nc-tabs__btn {
  position: relative;
  flex-shrink: 0;
  padding: 0.75rem 1.15rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s;
  border-radius: 0.5rem 0.5rem 0 0;
}
.nc-tabs__btn:hover {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.03);
}
.nc-tabs__btn.is-active {
  color: #fff;
}
.nc-tabs__btn.is-active::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -1px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--nc-accent), var(--nc-accent-2));
}
.nc-tabs__count {
  display: inline-flex;
  min-width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  margin-left: 0.35rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}
.nc-tabs__btn.is-active .nc-tabs__count {
  background: rgba(217, 70, 239, 0.25);
  color: #f5d0fe;
}

.nc-tabs__panel {
  display: none;
  padding-top: 1.5rem;
  animation: nc-tab-in 0.25s ease;
}
.nc-tabs__panel.is-active {
  display: block;
}
@keyframes nc-tab-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Layout grid */
.nc-channel-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .nc-channel-layout {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}
.nc-channel-main { min-width: 0; }
.nc-channel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .nc-channel-sidebar {
    position: sticky;
    top: 5rem;
  }
}

/* Player */
.nc-player-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.nc-player-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.5);
}
.nc-player-offline {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(circle at center, rgba(30, 30, 45, 0.8), #050508);
}

/* Content cards */
.nc-content-grid {
  display: grid;
  gap: 1rem;
}
.nc-content-grid--clips {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.nc-content-grid--vods {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.nc-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}
.nc-empty__icon {
  font-size: 2.5rem;
  opacity: 0.35;
  margin-bottom: 0.75rem;
}
.nc-empty__title {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}
.nc-empty__text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin-top: 0.35rem;
}

/* Clip / VOD cards */
.nc-clip-card,
.nc-vod-card {
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.nc-clip-card:hover,
.nc-vod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.nc-clip-card__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, rgba(147, 51, 234, 0.35), rgba(15, 15, 25, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nc-clip-card__dur {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

/* About panel */
.nc-about-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .nc-about-grid { grid-template-columns: repeat(2, 1fr); }
}
.nc-about-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.nc-about-card h3 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.nc-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  transition: background 0.15s, border-color 0.15s;
}
.nc-social-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(6, 182, 212, 0.35);
  color: #67e8f9;
}

/* Support panel */
.nc-support-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.25), rgba(0, 0, 0, 0.3));
}
.nc-support-hero img {
  width: 5rem;
  height: 5rem;
  border-radius: 0.85rem;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
}
.nc-donation-list {
  margin-top: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.nc-donation-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nc-donation-list li:last-child { border-bottom: none; }

/* Chat sidebar */
.nc-chat {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 14, 0.85);
  display: flex;
  flex-direction: column;
  max-height: min(72vh, 560px);
  min-height: 320px;
  overflow: hidden;
}
.nc-chat__head {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#ncChatList .nc-chat-msg {
  padding: 0.5rem 0.7rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
#ncChatList .nc-chat-author {
  color: #f472b6;
  font-weight: 600;
}

/* Sub card compact */
.nc-sub-card {
  border-radius: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.3);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(88, 28, 135, 0.2), rgba(0, 0, 0, 0.3));
}
.nc-sub-card__head {
  padding: 1rem 1.15rem 0;
}

/* ── Stream Studio ─────────────────────────────────────────── */
.nc-stream-studio {
  max-width: 72rem;
}
.nc-studio-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.nc-studio-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .nc-studio-layout {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
}
.nc-studio-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem;
}
@media (min-width: 900px) {
  .nc-studio-nav {
    flex-direction: column;
    position: sticky;
    top: 5rem;
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
  }
}
.nc-studio-nav__btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: none;
  border-radius: 0.65rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.nc-studio-nav__btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
}
.nc-studio-nav__btn.is-active {
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(99, 102, 241, 0.15));
  color: #fff;
  border: 1px solid rgba(217, 70, 239, 0.25);
}
.nc-studio-nav__icon {
  width: 1.25rem;
  text-align: center;
  opacity: 0.7;
}
.nc-studio-nav__btn.is-active .nc-studio-nav__icon { opacity: 1; }

.nc-studio-panel { display: none; }
.nc-studio-panel.is-active { display: block; animation: nc-tab-in 0.25s ease; }

.nc-studio-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
}
.nc-studio-card:last-child { margin-bottom: 0; }
.nc-studio-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.nc-studio-card__sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.15rem;
}

.nc-kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.nc-kpi {
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.3);
}
.nc-kpi__label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}
.nc-kpi__value {
  font-size: 1.35rem;
  font-weight: 800;
  margin-top: 0.25rem;
  color: #fff;
}
.nc-kpi--live .nc-kpi__value { color: #fb7185; }
.nc-kpi--money .nc-kpi__value { color: #6ee7b7; }

.nc-field label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}
.nc-field input,
.nc-field textarea,
.nc-field select {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.55rem 0.85rem;
  color: #fff;
  font-size: 0.875rem;
}
.nc-field input:focus,
.nc-field textarea:focus,
.nc-field select:focus {
  outline: none;
  border-color: rgba(217, 70, 239, 0.45);
  box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.12);
}

.nc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 0.65rem;
  border: none;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.nc-btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.nc-btn-primary--fuchsia { background: linear-gradient(135deg, #c026d3, #7c3aed); color: #fff; }
.nc-btn-primary--emerald { background: linear-gradient(135deg, #059669, #10b981); color: #fff; }
.nc-btn-primary--rose { background: linear-gradient(135deg, #e11d48, #f43f5e); color: #fff; }

.nc-code-block {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #a5f3fc;
  word-break: break-all;
}

.nc-nav__link--live.is-active,
.nc-nav__link--live:hover { color: #f472b6; }

/* ── Channel cards (Live Hub) ─────────────────────────────── */
.nc-channel-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.nc-channel-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--nc-accent) 45%, transparent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px color-mix(in srgb, var(--nc-accent) 20%, transparent);
}
.nc-channel-card__banner {
  position: relative;
  aspect-ratio: 16 / 7;
  background:
    radial-gradient(ellipse 80% 100% at 0% 0%, color-mix(in srgb, var(--nc-accent) 30%, transparent), transparent 55%),
    linear-gradient(135deg, #0f0a18, #050508);
  background-size: cover;
  background-position: center;
}
.nc-channel-card__banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65));
}
.nc-channel-card__avatar {
  position: absolute;
  left: 1rem;
  bottom: -1.35rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.85rem;
  border: 3px solid rgba(8, 8, 14, 0.95);
  background: linear-gradient(145deg, color-mix(in srgb, var(--nc-accent) 65%, #6366f1), #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.nc-channel-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nc-channel-card__body {
  padding: 1.75rem 1.15rem 1.15rem;
}
.nc-channel-card--compact {
  display: flex;
  align-items: stretch;
  border-radius: 0.85rem;
}
.nc-channel-card--compact .nc-channel-card__banner {
  width: 5.5rem;
  min-width: 5.5rem;
  aspect-ratio: auto;
  min-height: 4.5rem;
}
.nc-channel-card--compact .nc-channel-card__avatar {
  width: 2.25rem;
  height: 2.25rem;
  left: 0.5rem;
  bottom: 0.5rem;
  border-width: 2px;
  border-radius: 0.55rem;
  font-size: 0.75rem;
}
.nc-channel-card--compact .nc-channel-card__body {
  padding: 0.65rem 0.75rem;
  flex: 1;
  min-width: 0;
}
.nc-channel-card--compact:hover {
  transform: none;
}

/* Live hub */
.nc-live-hub__hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(217, 70, 239, 0.22);
  background:
    radial-gradient(ellipse 70% 120% at 100% 0%, rgba(6, 182, 212, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 100% at 0% 100%, rgba(217, 70, 239, 0.15), transparent 50%),
    rgba(0, 0, 0, 0.35);
}
.nc-live-hub__hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, #d946ef, #06b6d4, transparent);
}
.nc-live-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.nc-live-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 114, 182, 0.45);
}
.nc-live-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nc-live-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.nc-live-card__play {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  transition: transform 0.2s, background 0.2s;
}
.nc-live-card:hover .nc-live-card__play {
  transform: scale(1.08);
  background: rgba(217, 70, 239, 0.35);
}

/* About tab identity */
.nc-about-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nc-about-card--hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(0, 0, 0, 0.22);
}

/* Branding studio */
.nc-branding-preview {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #07070f;
}
.nc-branding-preview__banner {
  height: 120px;
  background:
    radial-gradient(ellipse 80% 120% at 0% 0%, color-mix(in srgb, var(--nc-accent) 35%, transparent), transparent 55%),
    linear-gradient(135deg, #120818, #050508);
  background-size: cover;
  background-position: center;
  position: relative;
}
.nc-branding-preview__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}
.nc-branding-preview__body {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  padding: 0 1rem 1rem;
  margin-top: -1.5rem;
  position: relative;
}
.nc-branding-preview__avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.85rem;
  border: 3px solid #07070f;
  background: linear-gradient(145deg, color-mix(in srgb, var(--nc-accent) 70%, #6366f1), #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}
.nc-branding-preview__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nc-branding-preview__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.nc-branding-preview__meta strong {
  color: #fff;
  font-size: 1rem;
}
.nc-branding-preview__meta span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}
.nc-upload-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .nc-upload-grid { grid-template-columns: 1fr 1fr; }
}
.nc-upload-zone {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  border-radius: 0.95rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.nc-upload-zone:hover,
.nc-upload-zone:focus-within {
  border-color: color-mix(in srgb, var(--nc-accent, #d946ef) 50%, transparent);
  background: rgba(255, 255, 255, 0.03);
}
.nc-upload-zone__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}
.nc-upload-zone__hint {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}
.nc-upload-zone__input {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}
.nc-upload-zone__cta {
  font-size: 0.75rem;
  color: rgba(217, 70, 239, 0.85);
  margin-top: 0.25rem;
}
.nc-color-input {
  width: 100%;
  height: 2.75rem;
  padding: 0.2rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.nc-studio-card--nested {
  background: rgba(255, 255, 255, 0.02);
  border-style: dashed;
  margin-top: 0.5rem;
}

/* VOD management (studio) */
.nc-vod-manage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nc-vod-manage-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.nc-vod-manage-item__main {
  flex: 1;
  min-width: min(100%, 280px);
}
.nc-vod-manage-item__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  shrink: 0;
}
.nc-vod-manage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.nc-vod-manage-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.nc-vod-manage-btn--danger {
  border-color: rgba(244, 63, 94, 0.35);
  color: #fda4af;
}
.nc-vod-manage-btn--danger:hover {
  background: rgba(244, 63, 94, 0.12);
}

