/*
 * Noxora Live — Noxora Elite premium SaaS theme
 */

:root,
.ns-live-app {
	--nx-cyan: #00f0ff;
	--nx-cyan-soft: rgba(0, 240, 255, 0.12);
	--nx-cyan-glow: rgba(0, 240, 255, 0.45);
	--nx-purple: #8a2be2;
	--nx-purple-soft: rgba(138, 43, 226, 0.16);
	--nx-purple-glow: rgba(138, 43, 226, 0.5);
	--nx-accent-glow: rgba(212, 175, 55, 0.35);
	--nx-radius-sm: 10px;
	--nx-radius-md: 16px;
	--nx-radius-lg: 22px;
	--nx-shadow-card: 0 12px 40px rgba(0, 0, 0, 0.45);
	--nx-font: "Inter", "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.ns-live-app,
.ns-live-html,
.ns-live-body {
	background: #020202;
	color: var(--nx-text, #f5f5f7);
}

.ns-live-app {
	display: grid;
	grid-template-columns: 240px 1fr;
	min-height: 100vh;
}

/* Sidebar */
.ns-live-sidebar {
	position: sticky;
	top: 0;
	height: 100vh;
	background: linear-gradient(180deg, rgba(8,8,10,0.96) 0%, rgba(2,2,2,0.98) 100%);
	border-right: 1px solid rgba(212, 175, 55, 0.12);
	padding: 1.25rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	overflow-y: auto;
	z-index: 10;
}

.ns-live-sidebar__nav {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.ns-live-sidebar__nav a,
.ns-live-sidebar__channel {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0.75rem;
	border-radius: 10px;
	color: #a8a8a8;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 500;
	transition: background 0.2s, color 0.2s;
}

.ns-live-sidebar__nav a:hover,
.ns-live-sidebar__nav a.is-active,
.ns-live-sidebar__channel:hover {
	background: rgba(212, 175, 55, 0.10);
	color: #f5f5f7;
}

.ns-live-sidebar__nav a.is-active,
.ns-live-sidebar__nav a.is-active svg {
	color: #d4af37;
}

.ns-live-sidebar__heading {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #888;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.5rem 0.25rem;
}

.ns-live-sidebar__heading-glow {
	color: #d4af37;
	font-weight: 700;
}

.ns-live-sidebar__channels {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.ns-live-sidebar__channel {
	position: relative;
}

.ns-live-sidebar__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #15151a;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	font-size: 0.75rem;
	color: #d4af37;
	border: 1px solid rgba(255,255,255,0.08);
	position: relative;
}

.ns-live-sidebar__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ns-live-sidebar__live-dot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 9px;
	height: 9px;
	background: #ff2d55;
	border: 2px solid #020202;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(255, 45, 85, 0.35);
}

.ns-live-sidebar__name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ns-live-sidebar__empty {
	font-size: 0.78rem;
	color: #666;
	margin: 0 0.5rem;
}

.ns-live-sidebar__wallet-mini {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid rgba(212, 175, 55, 0.14);
	border-radius: 10px;
	color: #d4af37;
	font-weight: 600;
}

/* Header */
.ns-live-header {
	position: sticky;
	top: 0;
	height: 68px;
	background: rgba(2,2,2,0.86);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(212, 175, 55, 0.08);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0 1.25rem;
	z-index: 50;
	gap: 1rem;
}

.ns-live-header__start,
.ns-live-header__center,
.ns-live-header__tools {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.ns-live-header__start {
	justify-content: flex-start;
}

.ns-live-header__center {
	justify-content: center;
}

.ns-live-header__tools {
	justify-content: flex-end;
}

.ns-live-header__logo svg,
.ns-live-header__logo img {
	height: 28px;
	width: auto;
}

.ns-live-header__title {
	font-size: 1.05rem;
	font-weight: 800;
	color: #d4af37;
	text-decoration: none;
	letter-spacing: -0.02em;
}

.ns-live-header__search {
	width: 100%;
	max-width: 260px;
	min-width: 180px;
	position: relative;
	flex: 0 1 auto;
}

.ns-live-header__search-input {
	width: 100%;
	height: 38px;
	padding: 0 2.5rem 0 1rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 999px;
	color: #f5f5f7;
	font-size: 0.88rem;
	outline: none;
	transition: border 0.2s, background 0.2s, box-shadow 0.2s;
}

.ns-live-header__search-input::placeholder {
	color: #777;
}

.ns-live-header__search-input:focus {
	border-color: #d4af37;
	background: rgba(255,255,255,0.07);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.10);
}

.ns-live-header__search-btn {
	position: absolute;
	right: 0.35rem;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	background: #d4af37;
	color: #020202;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
	will-change: transform;
	backface-visibility: hidden;
}

.ns-live-header__search-btn:hover,
.ns-live-header__search-btn:focus {
	background: #f6e6b8;
	box-shadow: 0 0 16px rgba(246, 230, 184, 0.45);
	transform: translateY(-50%) scale(1.02);
}

.ns-live-header__wallet {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.9rem;
	background: rgba(212, 175, 55, 0.10);
	border: 1px solid rgba(212, 175, 55, 0.20);
	border-radius: 999px;
	color: #d4af37;
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.ns-live-header__wallet:hover {
	background: rgba(212, 175, 55, 0.16);
	border-color: rgba(212, 175, 55, 0.35);
	box-shadow: 0 0 18px rgba(212, 175, 55, 0.12);
}

.ns-live-header__wallet-icon {
	font-size: 0.75rem;
}

.ns-live-header__wallet-label {
	font-size: 0.72rem;
	opacity: 0.85;
}

.ns-live-header__tool {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	color: #a0a0a0;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
	text-decoration: none;
}

.ns-live-header__tool:hover {
	color: #d4af37;
	background: rgba(212, 175, 55, 0.10);
	border-color: rgba(212, 175, 55, 0.30);
	box-shadow: 0 0 18px rgba(212, 175, 55, 0.10);
}

.ns-live-header__tool--apply:hover {
	color: #f5e6b8;
	background: rgba(212, 175, 55, 0.14);
}

.ns-live-header__avatar,
.ns-live-header__login {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #15151a;
	display: grid;
	place-items: center;
	color: #d4af37;
	font-weight: 700;
	font-size: 0.85rem;
	overflow: hidden;
	border: 2px solid rgba(212, 175, 55, 0.25);
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ns-live-header__avatar:hover,
.ns-live-header__login:hover {
	border-color: rgba(212, 175, 55, 0.55);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.10), 0 0 16px rgba(212, 175, 55, 0.15);
}

.ns-live-header__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 860px) {
	.ns-live-header {
		grid-template-columns: auto 1fr auto;
		gap: 0.75rem;
	}

	.ns-live-header__search {
		max-width: none;
	}

	.ns-live-header__wallet-label,
	.ns-live-header__title {
		display: none;
	}

	.ns-live-header__start {
		gap: 0.5rem;
	}
}

/* Main */
.ns-live-main {
	min-width: 0;
	background: #020202;
}

.ns-live-content {
	padding: 1.5rem;
	max-width: 1800px;
}

.ns-live-ad-band {
	padding: 0 1.5rem;
	margin: 0.5rem 0;
}

/* Hero / Hub */
.ns-live-hero {
	position: relative;
	padding: 2.5rem 1.5rem;
	margin-bottom: 1.5rem;
	border-radius: 18px;
	background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.14), transparent 50%),
	            radial-gradient(ellipse at bottom left, rgba(255, 45, 85, 0.08), transparent 45%),
	            #0a0a0d;
	border: 1px solid rgba(255,255,255,0.06);
	overflow: hidden;
}

.ns-live-hero__title {
	font-size: 2.2rem;
	font-weight: 800;
	margin: 0 0 0.5rem;
	letter-spacing: -0.03em;
}

.ns-live-hero__title span {
	color: #d4af37;
}

.ns-live-hero__subtitle {
	color: #9a9a9a;
	font-size: 1rem;
	max-width: 520px;
}

/* Categories */
.ns-live-categories {
	margin-bottom: 1.75rem;
}

.ns-live-categories__track {
	display: flex;
	gap: 0.6rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scrollbar-width: none;
}

.ns-live-categories__track::-webkit-scrollbar {
	display: none;
}

.ns-live-categories__pill {
	flex: 0 0 auto;
	padding: 0.55rem 1.1rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 999px;
	color: #aaa;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.ns-live-categories__pill:hover,
.ns-live-categories__pill.is-active {
	background: rgba(212, 175, 55, 0.14);
	border-color: #d4af37;
	color: #d4af37;
}

/* Host grid — 4x4 larger cards */
.ns-live-hosts {
	display: grid;
	grid-template-columns: repeat(4, minmax(260px, 1fr));
	gap: 1.75rem;
}

@media (max-width: 1199px) {
	.ns-live-hosts {
		grid-template-columns: repeat(2, minmax(260px, 1fr));
	}
}

@media (max-width: 640px) {
	.ns-live-hosts {
		grid-template-columns: 1fr;
	}
}

/* Host card */
.ns-live-card {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: var(--nx-surface, rgba(12, 12, 16, 0.72));
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 18px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.ns-live-card:hover {
	transform: translateY(-6px) scale(1.01);
	border-color: var(--nx-gold, #d4af37);
	box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 32px rgba(212,175,55,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}

.ns-live-card.is-filtered-out {
	opacity: 0.25;
	transform: scale(0.96);
	pointer-events: none;
}

.ns-live-card__link {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.ns-live-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #111;
}

.ns-live-card__cover,
.ns-live-card__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, opacity 0.35s ease;
}

.ns-live-card__video {
	opacity: 0;
	pointer-events: none;
	z-index: 2;
}

.ns-live-card:hover .ns-live-card__video {
	opacity: 1;
}

.ns-live-card:hover .ns-live-card__cover {
	transform: scale(1.06);
}

.ns-live-card__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, #16161b, #0a0a0e);
	font-size: 3rem;
	font-weight: 800;
	color: var(--nx-gold, #d4af37);
}

.ns-live-card__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
	pointer-events: none;
	z-index: 1;
}

.ns-live-card__status {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: rgba(0,0,0,0.55);
	border: 1px solid rgba(255,255,255,0.12);
	backdrop-filter: blur(6px);
}

.ns-live-card__status--live {
	background: rgba(255,45,85,0.9);
	border-color: rgba(255,45,85,0.4);
	color: #fff;
}

.ns-live-card__status--available {
	background: rgba(46,204,113,0.9);
	border-color: rgba(46,204,113,0.4);
	color: #020202;
}

.ns-live-card__status--offline {
	background: rgba(255,255,255,0.12);
	color: #aaa;
}

.ns-live-card__status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 8px currentColor;
}

.ns-live-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 4;
	padding: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.ns-live-card__name {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0;
	color: #f5f5f7;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.ns-live-card__tagline {
	font-size: 0.78rem;
	color: #d4af37;
	margin: 0;
	font-weight: 500;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ns-live-card__excerpt {
	font-size: 0.72rem;
	color: #bbb;
	margin: 0;
	font-weight: 400;
	line-height: 1.45;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.ns-live-card__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.3rem;
}

.ns-live-card__detail {
	font-size: 0.68rem;
	font-weight: 600;
	color: #e2e2e7;
	padding: 0.15rem 0.45rem;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.09);
	border-radius: 999px;
}

.ns-live-card__verified {
	font-size: 0.68rem;
	font-weight: 700;
	color: #020202;
	padding: 0.15rem 0.45rem;
	background: #d4af37;
	border-radius: 999px;
}

.ns-live-card__services {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 0.2rem;
}

.ns-live-card__chip {
	font-size: 0.65rem;
	font-weight: 600;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(212,175,55,0.12);
	color: #f5e6b8;
	border: 1px solid rgba(212,175,55,0.25);
	backdrop-filter: blur(4px);
}

.ns-live-card__price-row {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 0.5rem;
}

.ns-live-card__price {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.82rem;
	font-weight: 700;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: rgba(0,0,0,0.45);
	border: 1px solid rgba(255,255,255,0.1);
	color: #f5f5f7;
	backdrop-filter: blur(4px);
}

.ns-live-card__price--coins {
	color: #d4af37;
	border-color: rgba(212,175,55,0.35);
}

.ns-live-card__price--tl {
	color: #e2e2e7;
}

/* Empty filter message */
.ns-live-hosts__empty-filter {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem 1.5rem;
	border-radius: 14px;
	background: var(--nx-surface, rgba(12, 12, 16, 0.6));
	border: 1px solid rgba(255,255,255,0.08);
	color: #888;
	font-size: 0.95rem;
}

/* Single profile */
.ns-live-profile {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 1.5rem;
}

@media (max-width: 1024px) {
	.ns-live-profile {
		grid-template-columns: 1fr;
	}
}

/* Bottom sheet */
.ns-live-sheet {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s;
}

.ns-live-sheet.is-open {
	opacity: 1;
	pointer-events: auto;
}

.ns-live-sheet__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.78);
	backdrop-filter: blur(3px);
}

.ns-live-sheet__panel {
	position: relative;
	width: 100%;
	max-width: 720px;
	max-height: 86vh;
	background: #0a0a0d;
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
	transform: translateY(100%);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	overflow-y: auto;
	box-shadow: 0 -20px 70px rgba(0,0,0,0.7);
}

.ns-live-sheet.is-open .ns-live-sheet__panel {
	transform: translateY(0);
}

.ns-live-sheet__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.1rem 1.25rem;
	border-bottom: 1px solid rgba(255,255,255,0.07);
	position: sticky;
	top: 0;
	background: #0a0a0d;
	z-index: 2;
}

.ns-live-sheet__title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #f5f5f7;
}

.ns-live-sheet__close {
	background: transparent;
	border: none;
	color: #888;
	cursor: pointer;
	padding: 0.25rem;
}

.ns-live-sheet__close:hover {
	color: #d4af37;
}

.ns-live-sheet__body {
	padding: 1.25rem;
}

/* Appointment form */
.ns-live-appointment {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ns-live-appointment__label {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #888;
	margin-bottom: 0.35rem;
	display: block;
}

.ns-live-appointment__input,
.ns-live-appointment__select,
.ns-live-appointment__textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 10px;
	color: #f5f5f7;
	font-size: 0.9rem;
	outline: none;
}

.ns-live-appointment__input:focus,
.ns-live-appointment__select:focus,
.ns-live-appointment__textarea:focus {
	border-color: #d4af37;
}

.ns-live-appointment__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.ns-live-appointment__submit,
.ns-live-purchase__btn {
	width: 100%;
	padding: 0.9rem;
	border: none;
	border-radius: 12px;
	background: linear-gradient(135deg, #d4af37, #b8972e);
	color: #020202;
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.ns-live-appointment__submit:hover,
.ns-live-purchase__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

/* Purchase panel */
.ns-live-purchase {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ns-live-purchase__price {
	font-size: 1.4rem;
	font-weight: 800;
	color: #d4af37;
}

/* Particle burst */
.ns-live-particles {
	position: fixed;
	pointer-events: none;
	z-index: 3000;
}

.ns-live-particles__coin {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d4af37;
	box-shadow: 0 0 6px #d4af37;
}

/* Responsive */
@media (max-width: 900px) {
	.ns-live-app {
		grid-template-columns: 1fr;
	}

	.ns-live-sidebar {
		position: fixed;
		left: 0;
		top: 64px;
		bottom: 0;
		width: 240px;
		transform: translateX(-100%);
		transition: transform 0.25s;
	}

	.ns-live-sidebar.is-open {
		transform: translateX(0);
	}

	.ns-live-header {
		padding: 0 1rem;
	}

	.ns-live-header__search {
		display: none;
	}
}

/* Skeletons */
.ns-live-card--skeleton {
	background: #0d0d10;
	border-color: rgba(255,255,255,0.05);
	pointer-events: none;
}

.ns-live-card__skeleton-media,
.ns-live-card__skeleton-line {
	display: block;
	background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.09), rgba(255,255,255,0.04));
	background-size: 200% 100%;
	animation: ns-live-skeleton-shimmer 1.4s infinite;
	border-radius: 8px;
}

.ns-live-card__skeleton-media {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.ns-live-card__skeleton-line {
	height: 14px;
	margin: 0.6rem 0.8rem;
	width: 55%;
}

.ns-live-card__skeleton-line--short {
	width: 35%;
}

@keyframes ns-live-skeleton-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.ns-live-hosts__empty {
	text-align: center;
	padding: 2.5rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
}

.ns-live-appointment__alert {
	padding: 0.75rem 1rem;
	border-radius: 10px;
	background: rgba(220,38,38,0.12);
	border: 1px solid rgba(220,38,38,0.25);
	color: #fecaca;
}

/* Compatibility bridge for legacy single profile markup */
.ns-pro-live-profile__hero-actions {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
	align-items: center;
	flex-wrap: wrap;
}

/* ── Enterprise Single Profile — cinematic hero & SaaS panels ── */
.ns-pro-live-profile__hero--premium {
	min-height: 520px;
	border: 1px solid rgba(212, 175, 55, 0.22);
	border-radius: 28px;
	box-shadow:
		0 32px 80px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(212, 175, 55, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__backdrop-grad {
	background: linear-gradient(
		180deg,
		rgba(2, 2, 2, 0.25) 0%,
		rgba(2, 2, 2, 0.72) 55%,
		rgba(2, 2, 2, 0.96) 100%
	);
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__hero-inner {
	align-items: flex-end;
	padding: clamp(2rem, 6vw, 4rem);
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__meta.nx-glass {
	background: var(--nx-surface, rgba(12, 12, 16, 0.72));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: 22px;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__meta h1 {
	font-size: clamp(1.75rem, 4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #ffffff 0%, #f6e6b8 55%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__tagline {
	color: #f5e6b8;
	font-size: 0.95rem;
	font-weight: 500;
	margin: 0.25rem 0 0.75rem;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__facts,
.ns-pro-live-profile__hero--premium .ns-pro-live-profile__services,
.ns-pro-live-profile__hero--premium .ns-pro-live-profile__pricing {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-start;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__facts span,
.ns-pro-live-profile__hero--premium .ns-pro-live-profile__services li,
.ns-pro-live-profile__hero--premium .ns-pro-live-profile__pricing span {
	font-size: 0.78rem;
	font-weight: 600;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #e2e2e7;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__pricing span {
	background: rgba(212, 175, 55, 0.12);
	border-color: rgba(212, 175, 55, 0.25);
	color: #f5e6b8;
}

/* Embedded tab system */
.ns-pro-live-profile__embedded {
	background: var(--nx-surface, rgba(12, 12, 16, 0.6));
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(212, 175, 55, 0.12);
	border-radius: 24px;
	padding: 1.5rem;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.ns-pro-live-profile__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ns-pro-live-profile__tab {
	appearance: none;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	color: #aaa;
	cursor: pointer;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 0.55rem 1.1rem;
	transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ns-pro-live-profile__tab:hover {
	color: #f5f5f7;
	border-color: rgba(212, 175, 55, 0.3);
}

.ns-pro-live-profile__tab.is-active {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
	border-color: rgba(212, 175, 55, 0.45);
	color: #f6e6b8;
	box-shadow: 0 0 18px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ns-pro-live-profile__panel {
	display: none;
	animation: ns-live-fade-in 0.4s ease both;
}

.ns-pro-live-profile__panel.is-active {
	display: block;
}

@keyframes ns-live-fade-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* SaaS panel shell used inside tab panes */
.ns-live-saas-panel {
	background: var(--nx-surface, rgba(12, 12, 16, 0.68));
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(212, 175, 55, 0.16);
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow:
		0 14px 40px rgba(0, 0, 0, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.ns-live-saas-panel:hover {
	border-color: rgba(212, 175, 55, 0.32);
	box-shadow:
		0 18px 50px rgba(0, 0, 0, 0.4),
		0 0 24px rgba(212, 175, 55, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Appointment form inside SaaS panel */
.ns-live-saas-panel .ns-live-appointment__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #f5f5f7;
	margin: 0 0 0.35rem;
}

.ns-live-saas-panel .ns-live-appointment__hint {
	color: #888;
	font-size: 0.85rem;
	margin: 0 0 1rem;
}

.ns-live-saas-panel .ns-live-appointment__input,
.ns-live-saas-panel .ns-live-appointment__select,
.ns-live-saas-panel .ns-live-appointment__textarea {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	color: #f5f5f7;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.ns-live-saas-panel .ns-live-appointment__input:focus,
.ns-live-saas-panel .ns-live-appointment__select:focus,
.ns-live-saas-panel .ns-live-appointment__textarea:focus {
	outline: none;
	border-color: #d4af37;
	background: rgba(0, 0, 0, 0.35);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 0 18px rgba(212, 175, 55, 0.1);
}

/* Chat panel inside SaaS panel */
.ns-live-saas-panel .ns-pro-live-chat__head {
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding-bottom: 0.85rem;
	margin-bottom: 1rem;
}

.ns-live-saas-panel .ns-pro-live-chat__head h2 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #f5f5f7;
	margin: 0;
}

.ns-live-saas-panel .ns-pro-live-chat__cost {
	font-size: 0.78rem;
	color: #d4af37;
	font-weight: 600;
}

.ns-live-saas-panel .ns-pro-live-chat__composer textarea {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	color: #f5f5f7;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ns-live-saas-panel .ns-pro-live-chat__composer textarea:focus {
	border-color: #d4af37;
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 0 18px rgba(212, 175, 55, 0.1);
}

/* Gallery VIP section gold glow */
.ns-live-saas-panel .ns-pro-gallery__section--vip {
	border-radius: 16px;
	border: 1px solid rgba(212, 175, 55, 0.15);
	padding: 1rem;
	background: rgba(212, 175, 55, 0.04);
}

.ns-live-saas-panel .ns-pro-gallery__section--vip.is-locked {
	border-color: rgba(212, 175, 55, 0.35);
	box-shadow: 0 0 24px rgba(212, 175, 55, 0.08);
}

.ns-live-saas-panel .ns-pro-gallery__paywall {
	background: var(--nx-surface, rgba(12, 12, 16, 0.7));
	border: 1px solid rgba(212, 175, 55, 0.22);
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
	.ns-pro-live-profile__hero--premium {
		min-height: 420px;
		border-radius: 18px;
	}

	.ns-pro-live-profile__hero--premium .ns-pro-live-profile__hero-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.ns-pro-live-profile__hero--premium .ns-pro-live-profile__meta.nx-glass {
		width: 100%;
	}
}

/* Creator Studio profile status */
.ns-live-creator-profile__meta {
	display: grid;
	gap: 0.75rem;
}

.ns-live-creator-profile__tagline {
	margin: 0;
	color: var(--nx-muted, #9a9a9a);
	font-size: 0.95rem;
}

.ns-live-creator-profile__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.ns-live-creator-profile__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.82rem;
	color: var(--nx-text, #f5f5f7);
}

.ns-live-creator-profile__badge--status {
	background: rgba(212, 175, 55, 0.12);
	border-color: rgba(212, 175, 55, 0.35);
	color: var(--nx-accent, #d4af37);
}

.ns-live-creator-profile__badge--publish,
.ns-live-creator-profile__badge--live {
	background: rgba(0, 240, 255, 0.12);
	border-color: rgba(0, 240, 255, 0.35);
	color: var(--nx-cyan, #00f0ff);
}

.ns-live-creator-profile__badge--pending {
	background: rgba(212, 175, 55, 0.12);
	border-color: rgba(212, 175, 55, 0.35);
	color: var(--nx-accent, #d4af37);
}

.ns-live-creator-profile__badge--rejected,
.ns-live-creator-profile__badge--trash {
	background: rgba(220, 38, 38, 0.12);
	border-color: rgba(220, 38, 38, 0.35);
	color: #ff6b8a;
}

.ns-live-creator-profile__detail {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0;
	color: var(--nx-muted, #9a9a9a);
	font-size: 0.88rem;
}

/* =========================================================
   Noxora Elite — Enterprise SaaS revamp overrides
   ========================================================= */

/* Sidebar — B2B/B2C SaaS dashboard */
.ns-live-sidebar--saas {
	background: linear-gradient(180deg, rgba(10,10,14,0.98) 0%, rgba(4,4,6,0.99) 100%);
	border-right: 1px solid rgba(212, 175, 55, 0.10);
	padding: 1.5rem 1rem;
}

.ns-live-sidebar__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0 0.75rem 1.25rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ns-live-sidebar__brand-mark {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(135deg, #d4af37 0%, #8a6d2f 100%);
	color: #020202;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.ns-live-sidebar__brand-label {
	font-size: 1.05rem;
	font-weight: 700;
	color: #f5f5f7;
	letter-spacing: -0.02em;
}

.ns-live-sidebar__nav a svg,
.ns-live-sidebar__channel svg {
	stroke-width: 1.5;
}

.ns-live-sidebar__nav a {
	color: #9ca3af;
	border-radius: 12px;
}

.ns-live-sidebar__nav a:hover,
.ns-live-sidebar__nav a.is-active {
	background: rgba(212, 175, 55, 0.08);
	color: #f5f5f7;
}

.ns-live-sidebar__nav a.is-active {
	box-shadow: inset 2px 0 0 0 #d4af37;
}

.ns-live-sidebar__live-dot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	border: 2px solid #0a0a0e;
	box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35), 0 0 10px rgba(34, 197, 94, 0.65);
}

/* Header — premium SaaS header */
.ns-live-header {
	background: rgba(6, 6, 8, 0.72);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ns-live-header__title {
	font-weight: 700;
	font-size: 1.05rem;
	color: #f5f5f7;
	letter-spacing: -0.02em;
}

.ns-live-header__wallet--saas {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 0.85rem;
	background: rgba(212, 175, 55, 0.10);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 999px;
	color: #d4af37;
	font-weight: 600;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.ns-live-header__wallet--saas .ns-live-header__wallet-icon {
	color: #d4af37;
	filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.45));
}

.ns-live-header__avatar {
	position: relative;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	overflow: visible;
}

.ns-live-header__avatar img,
.ns-live-header__avatar--initial {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.ns-live-header__avatar--online img,
.ns-live-header__avatar--online .ns-live-header__avatar--initial {
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(34, 197, 94, 0.45);
}

.ns-live-header__online-dot {
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #22c55e;
	border: 2px solid #060608;
	box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35), 0 0 12px rgba(34, 197, 94, 0.8);
	z-index: 2;
}

/* Hero — enterprise elite */
.ns-live-hero__title--elite {
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.ns-live-hero__title--elite span {
	background: linear-gradient(135deg, #d4af37 0%, #f5e6b8 50%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ns-live-hero__subtitle--elite {
	font-size: 1.05rem;
	color: #9ca3af;
	max-width: 620px;
}

/* ── Bölüm 2: Cinematic single hero, animated SaaS tabs, masonry VIP gallery ── */

.ns-pro-live-profile__landing-main {
	width: 100%;
}

.ns-pro-live-profile__hero--premium {
	min-height: 680px;
	border-radius: 0 0 40px 40px;
	position: relative;
	overflow: hidden;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__backdrop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__backdrop-grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(2, 2, 2, 0.15) 0%,
		rgba(2, 2, 2, 0.55) 45%,
		rgba(2, 2, 2, 0.92) 100%
	);
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__hero-inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: clamp(2rem, 6vw, 5rem);
	z-index: 2;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__meta.nx-glass {
	max-width: 680px;
	background: rgba(8, 8, 12, 0.68);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(212, 175, 55, 0.20);
	border-radius: 24px;
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__meta h1 {
	font-size: clamp(2.2rem, 5vw, 4rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.05;
	background: linear-gradient(135deg, #ffffff 0%, #f6e6b8 55%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ns-pro-live-profile__hero--premium .ns-pro-live-profile__tagline {
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	color: #f5e6b8;
	font-weight: 500;
	margin: 0.35rem 0 1.25rem;
}

/* Animated SaaS tabs */
.ns-pro-live-profile__tabs {
	position: relative;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
	padding: 0.35rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 999px;
}

.ns-pro-live-profile__tab {
	position: relative;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 999px;
	color: #9ca3af;
	cursor: pointer;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 600;
	padding: 0.65rem 1.25rem;
	transition: color 0.25s ease;
	z-index: 1;
}

.ns-pro-live-profile__tab:hover {
	color: #f5f5f7;
}

.ns-pro-live-profile__tab.is-active {
	color: #f6e6b8;
}

.ns-pro-live-profile__tab-glider {
	position: absolute;
	left: 0;
	top: 0.35rem;
	height: calc(100% - 0.7rem);
	background: rgba(212, 175, 55, 0.14);
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: 999px;
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
	z-index: 0;
}

/* Masonry VIP gallery */
.ns-pro-gallery__grid {
	columns: 3 240px;
	column-gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ns-pro-gallery__item {
	break-inside: avoid;
	margin-bottom: 1rem;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ns-pro-gallery__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.ns-pro-gallery__thumb {
	width: 100%;
	height: auto;
	display: block;
}

/* VIP paywall */
.ns-pro-gallery__section--vip.is-locked .ns-pro-gallery__preview {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1rem;
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.ns-pro-gallery__preview-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 3/4;
}

.ns-pro-gallery__preview-item.is-blurred .ns-pro-gallery__preview-thumb {
	filter: blur(10px) brightness(0.6);
	transform: scale(1.05);
	transition: filter 0.3s ease;
}

.ns-pro-gallery__lock-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #f6e6b8;
	background: rgba(0, 0, 0, 0.25);
}

.ns-pro-gallery__lock-icon::before {
	content: '';
	width: 48px;
	height: 48px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E") center / 24px no-repeat;
}

.ns-pro-gallery__paywall {
	position: relative;
	text-align: center;
	padding: 2rem;
	border-radius: 20px;
	background: rgba(8, 8, 12, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(212, 175, 55, 0.22);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Off-canvas appointment wizard */
.ns-live-panel {
	position: fixed;
	inset: 0;
	z-index: 1000;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.ns-live-panel.is-open {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.ns-live-panel__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.ns-live-panel__drawer {
	position: absolute;
	right: 0;
	top: 0;
	width: min(520px, 100vw);
	height: 100%;
	background: rgba(8, 8, 12, 0.96);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-left: 1px solid rgba(212, 175, 55, 0.18);
	box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.ns-live-panel.is-open .ns-live-panel__drawer {
	transform: translateX(0);
}

.ns-live-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ns-live-panel__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #f5f5f7;
	margin: 0;
}

.ns-live-panel__close {
	appearance: none;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	color: #f5f5f7;
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.ns-live-panel__close:hover {
	background: rgba(255, 255, 255, 0.12);
}

.ns-live-panel__body {
	padding: 1.5rem;
	flex: 1;
}

/* Appointment wizard steps */
.ns-live-appointment__wizard {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.ns-live-appointment__step {
	flex: 1;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	position: relative;
	transition: background 0.3s;
}

.ns-live-appointment__step.is-active {
	background: rgba(212, 175, 55, 0.45);
}

.ns-live-appointment__step.is-done {
	background: #d4af37;
}

.ns-live-appointment__step-label {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.7rem;
	color: #9ca3af;
	white-space: nowrap;
}

.ns-live-appointment__pane {
	display: none;
	animation: ns-live-fade-in 0.35s ease both;
}

.ns-live-appointment__pane.is-active {
	display: block;
}

.ns-live-appointment__nav {
	display: flex;
	justify-content: space-between;
	margin-top: 1.5rem;
}

/* Creator dashboard data-table / accordion */
.nx-live-host-dashboard--saas {
	background: rgba(8, 8, 12, 0.62);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(212, 175, 55, 0.12);
	border-radius: 24px;
	padding: 1.5rem;
}

.nx-live-host-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.nx-live-host-table th,
.nx-live-host-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nx-live-host-table th {
	font-weight: 600;
	color: #9ca3af;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nx-live-host-table td {
	color: #f5f5f7;
	vertical-align: middle;
}

.nx-live-host-table tr.is-updating td {
	opacity: 0.5;
	pointer-events: none;
}

@media (max-width: 800px) {
	.nx-live-host-table thead {
		display: none;
	}
	.nx-live-host-table tr {
		display: block;
		margin-bottom: 1rem;
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid rgba(255, 255, 255, 0.07);
		border-radius: 16px;
		padding: 1rem;
	}
	.nx-live-host-table td {
		display: flex;
		justify-content: space-between;
		padding: 0.6rem 0;
		border: none;
	}
	.nx-live-host-table td::before {
		content: attr(data-label);
		color: #9ca3af;
		font-size: 0.75rem;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		margin-right: 1rem;
	}
}

/* =========================================================
   Noxora Elite — Strict Premium SaaS Overrides
   ========================================================= */

/* --- 1. Design tokens, base, layout, sidebar, header --- */
:root,
.ns-live-app {
	--nx-strict-surface: rgba(255, 255, 255, 0.03);
	--nx-strict-elevated: rgba(255, 255, 255, 0.05);
	--nx-strict-border: rgba(255, 255, 255, 0.08);
	--nx-strict-text: #ffffff;
	--nx-strict-muted: #a1a1aa;
	--nx-strict-gold: #d4af37;
	--nx-strict-green: #2ecc71;
	--nx-strict-red: #f87171;
	--nx-strict-cyan: #22d3ee;
	--nx-strict-purple: #a78bfa;
	--nx-strict-radius-sm: 8px;
	--nx-strict-radius-md: 12px;
	--nx-strict-radius-lg: 16px;
	--nx-strict-radius-xl: 24px;
	--nx-strict-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	--nx-strict-shadow-gold: 0 0 0 1px rgba(212, 175, 55, 0.25), 0 0 20px rgba(212, 175, 55, 0.12);
	--nx-strict-shadow-card: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.ns-live-app,
.ns-live-html,
.ns-live-body {
	background: #050505 !important;
	color: var(--nx-strict-text);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
}

.ns-live-app h1,
.ns-live-app h2,
.ns-live-app h3,
.ns-live-app .ns-live-hero__title,
.ns-live-app .ns-pro-live-profile__title,
.ns-live-app .nx-live-premium__title,
.ns-live-app .ns-live-appointment__title,
.ns-live-app .ns-pro-gallery__subtitle,
.ns-live-app .ns-live-host-dashboard__title {
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--nx-strict-text);
}

.ns-live-app h1,
.ns-live-app .ns-live-hero__title,
.ns-live-app .ns-pro-live-profile__title {
	font-size: 40px;
	line-height: 1.15;
}

.ns-live-app h2,
.ns-live-app .nx-live-premium__title,
.ns-live-app .ns-live-appointment__title {
	font-size: 32px;
	line-height: 1.2;
}

.ns-live-app h3,
.ns-live-app .ns-pro-gallery__subtitle,
.ns-live-app .ns-live-host-dashboard__title {
	font-size: 24px;
	line-height: 1.3;
}

.ns-live-app p,
.ns-live-app .ns-live-hero__subtitle,
.ns-live-app .ns-pro-live-profile__tagline,
.ns-live-app .ns-live-card__excerpt,
.ns-live-app .ns-live-card__tagline,
.ns-live-app .nx-live-premium__sub,
.ns-live-app .ns-live-sidebar__heading,
.ns-live-app .ns-pro-gallery__hint,
.ns-live-app .ns-live-appointment__hint,
.ns-live-app .ns-live-empty-state__sub {
	color: var(--nx-strict-muted);
	line-height: 1.55;
}

/* Universal micro-animation curve */
.ns-live-app a,
.ns-live-app button,
.ns-live-app input,
.ns-live-app select,
.ns-live-app textarea,
.ns-live-app .ns-live-card,
.ns-live-app .ns-live-card__status,
.ns-live-app .ns-live-card__chip,
.ns-live-app .ns-pro-live-profile__tab,
.ns-live-app .ns-pro-btn,
.ns-live-app .ns-live-appointment__submit,
.ns-live-app .nx-live-btn,
.ns-live-app .ns-pro-gallery__thumb,
.ns-live-app .ns-pro-gallery__item,
.ns-live-app .ns-pro-gallery__paywall,
.ns-live-app .nx-live-host-table tr,
.ns-live-app .ns-live-appointment__input,
.ns-live-app .ns-live-appointment__select,
.ns-live-app .ns-live-appointment__textarea,
.ns-live-app .ns-live-appointment__next,
.ns-live-app .ns-live-appointment__prev,
.ns-live-app .ns-live-panel__drawer {
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Layout */
.ns-live-app {
	grid-template-columns: 256px 1fr;
}

.ns-live-app .ns-live-main {
	padding: 24px;
}

.ns-live-app .ns-live-sidebar {
	background: #050505 !important;
	border-right: 1px solid var(--nx-strict-border) !important;
	padding: 24px 16px !important;
	gap: 24px !important;
}

.ns-live-app .ns-live-sidebar__brand {
	padding: 0 8px;
	margin-bottom: 8px;
}

.ns-live-app .ns-live-sidebar__nav {
	gap: 8px;
}

.ns-live-app .ns-live-sidebar__nav a,
.ns-live-app .ns-live-sidebar__channel {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 8px;
	color: var(--nx-strict-muted);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid transparent;
	background: transparent;
}

.ns-live-app .ns-live-sidebar__nav a:hover,
.ns-live-app .ns-live-sidebar__channel:hover,
.ns-live-app .ns-live-sidebar__nav a.is-active {
	background: var(--nx-strict-surface);
	border-color: var(--nx-strict-border);
	color: var(--nx-strict-text);
}

.ns-live-app .ns-live-sidebar__nav a.is-active {
	color: var(--nx-strict-gold);
	border-color: rgba(212, 175, 55, 0.25);
	box-shadow: 0 0 12px rgba(212, 175, 55, 0.08);
}

.ns-live-app .ns-live-sidebar__heading {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--nx-strict-muted);
	margin: 24px 0 8px 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ns-live-app .ns-live-sidebar__channels {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ns-live-app .ns-live-sidebar__channel {
	padding: 8px 16px;
}

.ns-live-app .ns-live-sidebar__avatar {
	width: 32px;
	height: 32px;
	border-radius: 999px;
}

/* Header */
.ns-live-app .ns-live-header {
	height: 64px;
	padding: 0 24px;
	background: #050505 !important;
	border-bottom: 1px solid var(--nx-strict-border) !important;
}

.ns-live-app .ns-live-header__brand {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.ns-live-app .ns-live-header__brand span {
	color: var(--nx-strict-gold);
}

.ns-live-app .ns-live-header__center,
.ns-live-app .ns-live-header__end {
	gap: 16px;
}

.ns-live-app .ns-live-header__wallet,
.ns-live-app .ns-live-header__avatar,
.ns-live-app .ns-live-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	border-radius: 10px;
	border: 1px solid var(--nx-strict-border);
	background: var(--nx-strict-surface);
	color: var(--nx-strict-text);
	font-size: 14px;
	font-weight: 600;
}

.ns-live-app .ns-live-header__wallet:hover,
.ns-live-app .ns-live-header__avatar:hover {
	border-color: rgba(212, 175, 55, 0.35);
	background: var(--nx-strict-elevated);
	box-shadow: var(--nx-strict-shadow-gold);
}

.ns-live-app .ns-live-header__avatar {
	width: 40px;
	padding: 0;
	overflow: hidden;
}

.ns-live-app .ns-live-header__online-dot {
	width: 8px;
	height: 8px;
}

/* --- 2. Hero, host cards, single profile, gallery, wizard --- */

/* Hero / vitrine */
.ns-live-app .ns-live-hero {
	padding: 64px 24px;
	text-align: center;
	background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06), transparent 50%),
				linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
	border-bottom: 1px solid var(--nx-strict-border);
}

.ns-live-app .ns-live-hero__title {
	font-size: 40px;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.ns-live-app .ns-live-hero__title span {
	color: var(--nx-strict-gold);
}

.ns-live-app .ns-live-hero__subtitle {
	font-size: 18px;
	max-width: 640px;
	margin: 0 auto;
}

.ns-live-app .ns-live-hosts-section {
	padding: 24px 0;
}

.ns-live-app .ns-live-hosts {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}

/* Host cards */
.ns-live-app .ns-live-card {
	background: var(--nx-strict-surface) !important;
	border: 1px solid var(--nx-strict-border) !important;
	border-radius: var(--nx-strict-radius-lg);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ns-live-app .ns-live-card:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 175, 55, 0.35) !important;
	box-shadow: var(--nx-strict-shadow-card), var(--nx-strict-shadow-gold);
}

.ns-live-app .ns-live-card__media {
	aspect-ratio: 3 / 4;
	background: #0a0a0a;
}

.ns-live-app .ns-live-card__body {
	padding: 16px;
	gap: 8px;
}

.ns-live-app .ns-live-card__name {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--nx-strict-text);
	margin: 0;
}

.ns-live-app .ns-live-card__tagline {
	font-size: 14px;
	color: var(--nx-strict-gold);
	margin: 0;
}

.ns-live-app .ns-live-card__excerpt {
	font-size: 14px;
	color: var(--nx-strict-muted);
	margin: 0;
}

.ns-live-app .ns-live-card__meta-row {
	gap: 8px;
	margin-bottom: 8px;
}

.ns-live-app .ns-live-card__detail,
.ns-live-app .ns-live-card__verified {
	font-size: 12px;
	padding: 8px 16px;
	border-radius: 999px;
}

.ns-live-app .ns-live-card__services {
	gap: 8px;
	margin-top: 8px;
}

.ns-live-app .ns-live-card__chip {
	font-size: 12px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 8px;
	background: var(--nx-strict-elevated);
	border: 1px solid var(--nx-strict-border);
	color: var(--nx-strict-muted);
}

.ns-live-app .ns-live-card__status {
	top: 16px;
	left: 16px;
	padding: 8px 16px;
	gap: 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid var(--nx-strict-border);
	color: var(--nx-strict-text);
	backdrop-filter: blur(8px);
}

.ns-live-app .ns-live-card__status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	box-shadow: 0 0 6px currentColor;
}

.ns-live-app .ns-live-card__status--live .ns-live-card__status-dot { background: #ff2d55; }
.ns-live-app .ns-live-card__status--available .ns-live-card__status-dot { background: var(--nx-strict-green); }
.ns-live-app .ns-live-card__status--offline .ns-live-card__status-dot { background: var(--nx-strict-muted); }

.ns-live-app .ns-live-card__price-row {
	gap: 8px;
	margin-top: 16px;
}

.ns-live-app .ns-live-card__price {
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--nx-strict-border);
	background: var(--nx-strict-elevated);
	color: var(--nx-strict-text);
}

.ns-live-app .ns-live-card__price--coins {
	color: var(--nx-strict-gold);
	border-color: rgba(212, 175, 55, 0.35);
}

/* Single broadcaster profile */
.ns-live-app .ns-pro-live-profile {
	background: var(--nx-strict-surface) !important;
	border: 1px solid var(--nx-strict-border) !important;
	border-radius: var(--nx-strict-radius-xl);
	overflow: hidden;
}

.ns-live-app .ns-pro-live-profile__hero {
	position: relative;
	aspect-ratio: 21 / 9;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(138, 43, 226, 0.06));
	border-bottom: 1px solid var(--nx-strict-border);
}

.ns-live-app .ns-pro-live-profile__hero-inner {
	padding: 32px;
	gap: 24px;
}

.ns-live-app .ns-pro-live-profile__avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.ns-live-app .ns-pro-live-profile__title {
	font-size: 40px;
	margin: 0 0 8px;
}

.ns-live-app .ns-pro-live-profile__title span {
	color: var(--nx-strict-gold);
}

.ns-live-app .ns-pro-live-profile__tagline {
	font-size: 18px;
	margin: 0 0 16px;
}

.ns-live-app .ns-pro-live-profile__pricing {
	gap: 8px;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 24px;
}

.ns-live-app .ns-pro-live-profile__hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ns-live-app .ns-pro-live-profile__embedded {
	background: #050505;
	border-top: 1px solid var(--nx-strict-border);
	padding: 24px;
}

/* Tabs */
.ns-live-app .ns-pro-live-profile__tabs {
	display: flex;
	gap: 8px;
	border-bottom: 1px solid var(--nx-strict-border);
	padding: 8px 0 0;
	position: relative;
}

.ns-live-app .ns-pro-live-profile__tab {
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--nx-strict-muted);
	background: none;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.ns-live-app .ns-pro-live-profile__tab.is-active,
.ns-live-app .ns-pro-live-profile__tab:hover {
	color: var(--nx-strict-text);
}

.ns-live-app .ns-pro-live-profile__tab-glider {
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--nx-strict-gold);
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-live-app .ns-pro-live-profile__panes {
	position: relative;
	min-height: 120px;
}

.ns-live-app .ns-pro-live-profile__panel {
	position: absolute;
	inset: 0 0 auto 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	padding: 16px 0;
	pointer-events: none;
	z-index: 0;
	transition: all 0.2s ease-in-out;
}

.ns-live-app .ns-pro-live-profile__panel.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
	z-index: 1;
}

/* Gallery */
.ns-live-app .ns-pro-gallery__section {
	background: var(--nx-strict-surface) !important;
	border: 1px solid var(--nx-strict-border) !important;
	border-radius: var(--nx-strict-radius-lg);
	padding: 24px;
	margin-bottom: 24px;
}

.ns-live-app .ns-pro-gallery__subtitle {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ns-live-app .ns-pro-gallery__price {
	font-size: 14px;
	color: var(--nx-strict-gold);
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.10);
	border: 1px solid rgba(212, 175, 55, 0.25);
}

.ns-live-app .ns-pro-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.ns-live-app .ns-pro-gallery__item {
	border-radius: var(--nx-strict-radius-md);
	overflow: hidden;
	border: 1px solid var(--nx-strict-border);
}

.ns-live-app .ns-pro-gallery__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.ns-live-app .ns-pro-gallery__preview {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.ns-live-app .ns-pro-gallery__preview-item {
	border-radius: var(--nx-strict-radius-md);
	overflow: hidden;
	position: relative;
	border: 1px solid var(--nx-strict-border);
}

.ns-live-app .ns-pro-gallery__preview-item.is-blurred .ns-pro-gallery__preview-thumb {
	filter: blur(12px) saturate(0.8);
}

.ns-live-app .ns-pro-gallery__lock {
	background: var(--nx-strict-surface);
	border: 1px solid var(--nx-strict-border);
	border-radius: var(--nx-strict-radius-lg);
	padding: 24px;
}

.ns-live-app .ns-pro-gallery__paywall {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
	padding: 32px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--nx-strict-border);
	border-radius: var(--nx-strict-radius-lg);
}

.ns-live-app .ns-pro-gallery__paywall p {
	color: var(--nx-strict-muted);
	font-size: 16px;
	margin: 0;
}

.ns-live-app .ns-pro-gallery__lock-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.10);
	border: 1px solid rgba(212, 175, 55, 0.30);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ns-live-app .ns-pro-gallery__lock-icon::before {
	content: "🔒";
	font-size: 20px;
	filter: grayscale(1);
}

/* Appointment off-canvas */
.ns-live-app .ns-live-panel {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	justify-content: flex-end;
	background: rgba(5, 5, 5, 0.70);
	backdrop-filter: blur(8px);
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-live-app .ns-live-panel.is-open {
	visibility: visible;
	opacity: 1;
}

.ns-live-app .ns-live-panel__overlay {
	position: absolute;
	inset: 0;
}

.ns-live-app .ns-live-panel__drawer {
	width: 460px;
	height: 100%;
	background: #050505;
	border-left: 1px solid var(--nx-strict-border);
	border-radius: 24px 0 0 24px;
	padding: 32px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-live-app .ns-live-panel.is-open .ns-live-panel__drawer {
	transform: translateX(0);
}

.ns-live-app .ns-live-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.ns-live-app .ns-live-panel__title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
}

.ns-live-app .ns-live-panel__close {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--nx-strict-surface);
	border: 1px solid var(--nx-strict-border);
	color: var(--nx-strict-text);
	font-size: 24px;
	cursor: pointer;
}

.ns-live-app .ns-live-appointment__wizard {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}

.ns-live-app .ns-live-appointment__step {
	flex: 1;
	padding: 16px;
	border-radius: 8px;
	background: var(--nx-strict-surface);
	border: 1px solid var(--nx-strict-border);
	color: var(--nx-strict-muted);
	font-size: 12px;
	font-weight: 600;
	text-align: center;
}

.ns-live-app .ns-live-appointment__step.is-active {
	background: rgba(212, 175, 55, 0.10);
	border-color: rgba(212, 175, 55, 0.35);
	color: var(--nx-strict-gold);
}

.ns-live-app .ns-live-appointment__pane {
	display: none;
	padding: 8px 0;
}

.ns-live-app .ns-live-appointment__pane.is-active {
	display: block;
}

.ns-live-app .ns-live-appointment__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.ns-live-app .ns-live-appointment__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ns-live-app .ns-live-appointment__label {
	font-size: 12px;
	font-weight: 600;
	color: var(--nx-strict-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ns-live-app .ns-live-appointment__input,
.ns-live-app .ns-live-appointment__select,
.ns-live-app .ns-live-appointment__textarea {
	width: 100%;
	height: 44px;
	padding: 0 16px;
	background: var(--nx-strict-surface);
	border: 1px solid var(--nx-strict-border);
	border-radius: 10px;
	color: var(--nx-strict-text);
	font-size: 14px;
	font-family: inherit;
}

.ns-live-app .ns-live-appointment__textarea {
	height: auto;
	padding: 16px;
	min-height: 120px;
	resize: vertical;
}

.ns-live-app .ns-live-appointment__input:focus,
.ns-live-app .ns-live-appointment__select:focus,
.ns-live-app .ns-live-appointment__textarea:focus {
	outline: none;
	border-color: var(--nx-strict-gold);
	background: var(--nx-strict-elevated);
	box-shadow: var(--nx-strict-shadow-gold);
}

.ns-live-app .ns-live-appointment__nav {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.ns-live-app .ns-live-appointment__prev,
.ns-live-app .ns-live-appointment__next,
.ns-live-app .ns-live-appointment__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 24px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
}

.ns-live-app .ns-live-appointment__next,
.ns-live-app .ns-live-appointment__submit {
	margin-left: auto;
	background: var(--nx-strict-gold);
	color: #050505;
}

.ns-live-app .ns-live-appointment__next:hover,
.ns-live-app .ns-live-appointment__submit:hover {
	filter: brightness(1.1);
	box-shadow: 0 0 24px rgba(212, 175, 55, 0.30);
}

.ns-live-app .ns-live-appointment__prev {
	background: var(--nx-strict-surface);
	border-color: var(--nx-strict-border);
	color: var(--nx-strict-text);
}

.ns-live-app .ns-live-appointment__prev:hover {
	background: var(--nx-strict-elevated);
}

/* --- 3. Buttons, data table, dot badges, empty states, responsive --- */

/* Gold action buttons */
.ns-live-app .ns-pro-btn,
.ns-live-app .ns-live-appointment__submit,
.ns-live-app .ns-pro-live-profile__hero-actions .ns-live-appointment__submit,
.ns-live-app [data-live-gallery-unlock],
.ns-live-app .ns-pro-gallery__paywall button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 24px;
	border-radius: 10px;
	background: var(--nx-strict-gold);
	color: #050505;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ns-live-app .ns-pro-btn:hover,
.ns-live-app .ns-live-appointment__submit:hover,
.ns-live-app [data-live-gallery-unlock]:hover,
.ns-live-app .ns-pro-gallery__paywall button:hover {
	filter: brightness(1.1);
	box-shadow: 0 0 24px rgba(212, 175, 55, 0.30);
}

.ns-live-app .ns-pro-btn--ghost,
.ns-live-app .ns-pro-live-profile__back {
	background: var(--nx-strict-surface);
	border-color: var(--nx-strict-border);
	color: var(--nx-strict-text);
}

.ns-live-app .ns-pro-btn--ghost:hover,
.ns-live-app .ns-pro-live-profile__back:hover {
	background: var(--nx-strict-elevated);
	border-color: rgba(212, 175, 55, 0.35);
	box-shadow: var(--nx-strict-shadow-gold);
}

/* Creator Studio data table */
.ns-live-app .nx-live-host-dashboard {
	background: var(--nx-strict-surface) !important;
	border: 1px solid var(--nx-strict-border) !important;
	border-radius: var(--nx-strict-radius-lg);
	padding: 24px;
}

.ns-live-app .nx-live-host-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	background: transparent;
}

.ns-live-app .nx-live-host-table thead {
	border-bottom: 1px solid var(--nx-strict-border);
}

.ns-live-app .nx-live-host-table th {
	padding: 16px;
	font-size: 12px;
	font-weight: 600;
	color: var(--nx-strict-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: left;
}

.ns-live-app .nx-live-host-table td {
	padding: 16px;
	color: var(--nx-strict-text);
	vertical-align: middle;
	border-bottom: 1px solid var(--nx-strict-border);
}

.ns-live-app .nx-live-host-table tr:last-child td {
	border-bottom: none;
}

.ns-live-app .nx-live-host-table tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

.ns-live-app .nx-live-host-table tr.is-updating td {
	opacity: 0.5;
	pointer-events: none;
}

.ns-live-app .nx-live-host-table__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ns-live-app .nx-live-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
	color: #050505;
}

.ns-live-app .nx-live-btn--approve {
	background: var(--nx-strict-green);
}

.ns-live-app .nx-live-btn--approve:hover {
	filter: brightness(1.1);
	box-shadow: 0 0 20px rgba(46, 204, 113, 0.25);
}

.ns-live-app .nx-live-btn--decline {
	background: transparent;
	border-color: var(--nx-strict-red);
	color: var(--nx-strict-red);
}

.ns-live-app .nx-live-btn--decline:hover {
	background: rgba(248, 113, 113, 0.08);
	box-shadow: 0 0 20px rgba(248, 113, 113, 0.12);
}

/* Dot status badges */
.ns-live-app .nx-live-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	border: 1px solid transparent;
	background: var(--nx-strict-surface);
	color: var(--nx-strict-muted);
}

.ns-live-app .nx-live-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

.ns-live-app .nx-live-badge--pending_host,
.ns-live-app .nx-live-badge--awaiting_payment {
	background: rgba(251, 191, 36, 0.08);
	border-color: rgba(251, 191, 36, 0.35);
	color: #fbbf24;
}

.ns-live-app .nx-live-badge--pending_host::before,
.ns-live-app .nx-live-badge--awaiting_payment::before { background: #fbbf24; }

.ns-live-app .nx-live-badge--pending_admin {
	background: rgba(34, 211, 238, 0.08);
	border-color: rgba(34, 211, 238, 0.35);
	color: var(--nx-strict-cyan);
}

.ns-live-app .nx-live-badge--pending_admin::before { background: var(--nx-strict-cyan); }

.ns-live-app .nx-live-badge--confirmed {
	background: rgba(46, 204, 113, 0.08);
	border-color: rgba(46, 204, 113, 0.35);
	color: var(--nx-strict-green);
}

.ns-live-app .nx-live-badge--confirmed::before { background: var(--nx-strict-green); }

.ns-live-app .nx-live-badge--cancelled {
	background: rgba(248, 113, 113, 0.08);
	border-color: rgba(248, 113, 113, 0.35);
	color: var(--nx-strict-red);
}

.ns-live-app .nx-live-badge--cancelled::before { background: var(--nx-strict-red); }

.ns-live-app .nx-live-badge--completed {
	background: rgba(46, 204, 113, 0.08);
	border-color: rgba(46, 204, 113, 0.35);
	color: var(--nx-strict-green);
}

.ns-live-app .nx-live-badge--completed::before { background: var(--nx-strict-green); }

/* Empty states */
.ns-live-app .ns-live-empty-state,
.ns-live-app .ns-live-hosts__empty,
.ns-live-app .nx-live-host-table__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-align: center;
	padding: 64px 24px;
	color: var(--nx-strict-muted);
}

.ns-live-app .ns-live-empty-state__icon,
.ns-live-app .ns-live-hosts__empty::before,
.ns-live-app .nx-live-host-table__empty::before {
	content: "";
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--nx-strict-surface);
	border: 1px solid var(--nx-strict-border);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a1a1aa' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6.75 3v7.5M17.25 3v7.5M3 8.25h18M5.25 21h13.5A2.25 2.25 0 0021 18.75V6.75A2.25 2.25 0 0018.75 4.5H5.25A2.25 2.25 0 003 6.75v12A2.25 2.25 0 005.25 21z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 28px;
	opacity: 0.5;
}

.ns-live-app .ns-live-empty-state__title,
.ns-live-app .ns-live-hosts__empty strong,
.ns-live-app .nx-live-host-table__empty strong {
	font-size: 18px;
	font-weight: 600;
	color: var(--nx-strict-text);
	letter-spacing: -0.01em;
}

.ns-live-app .ns-live-empty-state__sub {
	font-size: 14px;
	max-width: 320px;
}

/* Toast */
.ns-live-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 2000;
	padding: 16px 24px;
	border-radius: 12px;
	background: rgba(8, 8, 12, 0.95);
	border: 1px solid rgba(212, 175, 55, 0.35);
	color: #f6e6b8;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.ns-live-toast--error {
	border-color: rgba(248, 113, 113, 0.45);
	color: #fecaca;
}

.ns-live-bridge-loader {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: rgba(5, 5, 5, 0.85);
	backdrop-filter: blur(8px);
	color: var(--nx-strict-text);
	font-size: 14px;
}

/* Loader spinner */
.ns-live-bridge-loader__spinner,
.nx-live-btn__spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(212, 175, 55, 0.25);
	border-top-color: var(--nx-strict-gold);
	border-radius: 50%;
	animation: ns-live-spin 0.8s linear infinite;
}

@keyframes ns-live-spin {
	to { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 1024px) {
	.ns-live-app {
		grid-template-columns: 1fr;
	}

	.ns-live-app .ns-live-sidebar {
		position: fixed;
		left: 0;
		top: 0;
		width: 256px;
		height: 100vh;
		transform: translateX(-100%);
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.ns-live-app .ns-live-sidebar.is-open {
		transform: translateX(0);
	}

	.ns-live-app .ns-live-header__menu-toggle {
		display: flex;
	}

	.ns-live-app .ns-pro-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.ns-live-app .ns-live-hero {
		padding: 48px 16px;
	}

	.ns-live-app .ns-live-hero__title,
	.ns-live-app h1,
	.ns-live-app .ns-pro-live-profile__title {
		font-size: 32px;
	}

	.ns-live-app .ns-live-hosts {
		grid-template-columns: 1fr;
	}

	.ns-live-app .ns-pro-live-profile__hero {
		aspect-ratio: 16 / 9;
	}

	.ns-live-app .ns-pro-live-profile__hero-inner {
		padding: 16px;
	}

	.ns-live-app .ns-pro-live-profile__embedded {
		padding: 16px;
	}

	.ns-live-app .ns-live-panel__drawer {
		width: 100%;
		border-radius: 24px 24px 0 0;
		border-left: none;
		border-top: 1px solid var(--nx-strict-border);
		height: 90vh;
		transform: translateY(100%);
	}

	.ns-live-app .ns-live-panel.is-open .ns-live-panel__drawer {
		transform: translateY(0);
	}

	.ns-live-app .ns-pro-gallery__grid {
		grid-template-columns: 1fr;
	}

	.ns-live-app .ns-live-appointment__grid {
		grid-template-columns: 1fr;
	}

	.ns-live-app .nx-live-host-table tr {
		display: block;
		margin-bottom: 16px;
		background: var(--nx-strict-surface);
		border: 1px solid var(--nx-strict-border);
		border-radius: var(--nx-strict-radius-lg);
		padding: 16px;
	}

	.ns-live-app .nx-live-host-table td {
		display: flex;
		justify-content: space-between;
		padding: 12px 0;
		border: none;
		border-bottom: 1px solid var(--nx-strict-border);
	}

	.ns-live-app .nx-live-host-table td:last-child {
		border-bottom: none;
	}

	.ns-live-app .nx-live-host-table td::before {
		content: attr(data-label);
		color: var(--nx-strict-muted);
		font-size: 12px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}
}

/* --- 4. Single profile meta / services polish --- */

.ns-live-app .ns-pro-live-profile__hero-inner {
	display: flex;
	align-items: flex-end;
	gap: 24px;
	padding: 32px;
	position: relative;
	z-index: 2;
}

.ns-live-app .ns-pro-live-profile__meta {
	background: var(--nx-strict-surface) !important;
	border: 1px solid var(--nx-strict-border) !important;
	border-radius: var(--nx-strict-radius-lg);
	padding: 24px;
	max-width: 520px;
	box-shadow: var(--nx-strict-shadow-card);
	backdrop-filter: blur(8px);
}

.ns-live-app .ns-pro-live-profile__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.ns-live-app .ns-pro-live-profile__facts span,
.ns-live-app .ns-pro-live-profile__status-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--nx-strict-elevated);
	border: 1px solid var(--nx-strict-border);
	color: var(--nx-strict-muted);
	font-size: 12px;
	font-weight: 600;
}

.ns-live-app .ns-pro-live-profile__services {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.ns-live-app .ns-pro-live-profile__services li {
	font-size: 12px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 8px;
	background: var(--nx-strict-elevated);
	border: 1px solid var(--nx-strict-border);
	color: var(--nx-strict-muted);
}

.ns-live-app .ns-pro-live-profile__embedded {
	background: var(--nx-strict-surface) !important;
	border-top: 1px solid var(--nx-strict-border);
	padding: 24px;
}

.ns-live-app .ns-pro-live-badge--verified {
	position: absolute;
	bottom: 8px;
	right: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--nx-strict-gold);
	color: #050505;
	font-size: 12px;
	font-weight: 700;
}

.ns-live-app .ns-pro-live-profile__avatar {
	position: relative;
}

/* --- 5. Header / sidebar markup alignment --- */

.ns-live-app .ns-live-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ns-live-app .ns-live-header__start,
.ns-live-app .ns-live-header__tools {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ns-live-app .ns-live-header__title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--nx-strict-text);
	text-decoration: none;
}

.ns-live-app .ns-live-header__title:hover {
	color: var(--nx-strict-gold);
}

.ns-live-app .ns-live-header__menu-toggle {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 10px;
	background: var(--nx-strict-surface);
	border: 1px solid var(--nx-strict-border);
	color: var(--nx-strict-text);
	cursor: pointer;
}

@media (max-width: 1024px) {
	.ns-live-app .ns-live-header__menu-toggle {
		display: inline-flex;
	}
}

.ns-live-app .ns-live-header__search {
	display: flex;
	align-items: center;
}

.ns-live-app .ns-live-header__search-input {
	height: 40px;
	padding: 0 16px;
	background: var(--nx-strict-surface);
	border: 1px solid var(--nx-strict-border);
	border-radius: 10px 0 0 10px;
	color: var(--nx-strict-text);
	font-size: 14px;
	font-family: inherit;
}

.ns-live-app .ns-live-header__search-input:focus {
	outline: none;
	border-color: var(--nx-strict-gold);
}

.ns-live-app .ns-live-header__search-btn {
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--nx-strict-border);
	border-left: none;
	border-radius: 0 10px 10px 0;
	background: var(--nx-strict-elevated);
	color: var(--nx-strict-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ns-live-app .ns-live-header__search-btn:hover {
	background: rgba(212, 175, 55, 0.12);
	border-color: rgba(212, 175, 55, 0.35);
	color: var(--nx-strict-gold);
	transform: scale(1.05);
	box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
	z-index: 1;
}

.ns-live-app .ns-live-header__tool {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--nx-strict-border);
	background: var(--nx-strict-surface);
	color: var(--nx-strict-text);
}

.ns-live-app .ns-live-header__tool:hover {
	background: var(--nx-strict-elevated);
	border-color: rgba(212, 175, 55, 0.35);
	color: var(--nx-strict-gold);
}

.ns-live-app .ns-live-header__login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--nx-strict-border);
	background: var(--nx-strict-surface);
	color: var(--nx-strict-text);
}

.ns-live-app .ns-live-header__login:hover {
	background: var(--nx-strict-elevated);
	border-color: rgba(212, 175, 55, 0.35);
	color: var(--nx-strict-gold);
}

.ns-live-app .ns-live-header__tools .ns-live-header__avatar {
	width: 40px;
	height: 40px;
	padding: 0;
}

.ns-live-app .ns-live-header__nav {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 8px;
}

.ns-live-app .ns-live-header__nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--nx-strict-muted, #9ca3af);
	background: transparent;
	border: 1px solid transparent;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ns-live-app .ns-live-header__nav-link:hover,
.ns-live-app .ns-live-header__nav-link.is-active {
	color: var(--nx-strict-gold, #d4af37);
	background: rgba(212, 175, 55, 0.08);
	border-color: rgba(212, 175, 55, 0.25);
	box-shadow: 0 0 16px rgba(212, 175, 55, 0.08);
}

.ns-live-app .ns-live-header__nav-link.is-active::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 50%;
	width: 14px;
	height: 2px;
	border-radius: 2px;
	background: var(--nx-strict-gold, #d4af37);
	transform: translateX(-50%);
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
}

@media (max-width: 1100px) {
	.ns-live-app .ns-live-header__nav {
		display: none;
	}
}

/* Sidebar brand */
.ns-live-app .ns-live-sidebar__brand {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 8px 16px;
	border-bottom: 1px solid var(--nx-strict-border);
	margin-bottom: 16px;
}

.ns-live-app .ns-live-sidebar__brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--nx-strict-gold);
	color: #050505;
	font-size: 14px;
	font-weight: 800;
}

.ns-live-app .ns-live-sidebar__brand-label {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--nx-strict-text);
}

/* --- 6. Empty state grid span --- */

.ns-live-app .ns-live-hosts__empty {
	grid-column: 1 / -1;
}

/* --- 7. Appointment alert + checkout helper --- */

.ns-live-app .ns-live-appointment__alert {
	padding: 12px 16px;
	border-radius: 10px;
	background: rgba(248, 113, 113, 0.08);
	border: 1px solid rgba(248, 113, 113, 0.35);
	color: #fecaca;
	font-size: 14px;
	margin-bottom: 16px;
}

.ns-live-app .ns-live-appointment__alert[hidden] {
	display: none;
}

.ns-live-app .ns-live-appointment__summary {
	background: var(--nx-strict-surface);
	border: 1px solid var(--nx-strict-border);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 16px;
}

.ns-live-app .ns-live-appointment__summary p {
	margin: 0;
	font-size: 14px;
	color: var(--nx-strict-muted);
}

.ns-live-app .ns-live-appointment__checkout {
	margin-top: 24px;
	text-align: center;
	font-size: 14px;
}

.ns-live-app .ns-live-appointment__checkout a {
	color: var(--nx-strict-gold);
	text-decoration: none;
	font-weight: 600;
}

.ns-live-app .ns-live-appointment__checkout a:hover {
	text-decoration: underline;
}

/* --- 8. Wizard / loading / success overlay polish --- */

@keyframes ns-live-spin-svg {
	to { transform: rotate(360deg); }
}

.ns-live-spin {
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	animation: ns-live-spin-svg 0.8s linear infinite;
	transform-origin: center;
}

.ns-live-success-overlay {
	position: fixed;
	inset: 0;
	z-index: 4000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(5, 5, 5, 0.92);
	backdrop-filter: blur(10px);
	opacity: 1;
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-live-success-overlay.is-leaving {
	opacity: 0;
}

.ns-live-success-overlay__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	color: var(--nx-strict-gold);
	font-size: 18px;
	font-weight: 600;
}

.ns-live-success-overlay__inner svg {
	width: 64px;
	height: 64px;
	filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.45));
}

.ns-live-appointment__next,
.ns-live-appointment__prev,
.ns-live-appointment__submit {
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-live-appointment__next[hidden],
.ns-live-appointment__prev[hidden],
.ns-live-appointment__submit[hidden],
.ns-live-appointment__pane[hidden] {
	display: none;
}

/* --- 9. Plyr brand player in live cards --- */

.ns-live-card .plyr,
.ns-live-card .plyr__video-wrapper,
.ns-live-card .plyr video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.ns-live-card .plyr,
.ns-live-card .plyr__video-wrapper {
	opacity: 0;
}

.ns-live-card:hover .plyr,
.ns-live-card:hover .plyr__video-wrapper {
	opacity: 1;
}

.plyr__control--overlaid,
.plyr--video .plyr__control--overlaid {
	background: #d4af37;
	color: #050505;
	border-radius: 50%;
}

.plyr__control--overlaid:hover,
.plyr--video .plyr__control--overlaid:hover {
	background: #f6e6b8;
}

.plyr--full-ui input[type="range"],
.plyr__progress__buffer,
.plyr__volume input[type="range"] {
	color: #d4af37;
}

.plyr--video .plyr__progress__buffer {
	color: rgba(212, 175, 55, 0.35);
}

.plyr--video .plyr__controls {
	background: rgba(5, 5, 5, 0.55);
	backdrop-filter: blur(8px);
	padding: 12px 16px;
}

.plyr--video .plyr__control,
.plyr--video .plyr__time {
	color: #f5f5f7;
}

.plyr--video .plyr__control:hover {
	background: rgba(212, 175, 55, 0.18);
	color: #d4af37;
}

/* --- 10. Premium live chat / bio / gallery --- */

.ns-pro-live-chat {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 24px;
	backdrop-filter: blur(12px);
}

.ns-pro-live-chat__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ns-pro-live-chat__head h2 {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.ns-pro-live-chat__cost {
	font-size: 12px;
	font-weight: 600;
	color: #d4af37;
	padding: 4px 10px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 999px;
}

.ns-pro-live-chat__feed {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-height: 320px;
	overflow-y: auto;
	padding-right: 4px;
	margin-bottom: 16px;
}

.ns-pro-live-chat__message {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 86%;
}

.ns-pro-live-chat__message.is-mine {
	align-self: flex-end;
	align-items: flex-end;
}

.ns-pro-live-chat__message.is-theirs {
	align-self: flex-start;
	align-items: flex-start;
}

.ns-pro-live-chat__bubble {
	padding: 12px 16px;
	border-radius: 18px;
	font-size: 14px;
	line-height: 1.45;
	color: #f5f5f7;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	word-break: break-word;
}

.ns-pro-live-chat__message.is-mine .ns-pro-live-chat__bubble {
	background: rgba(212, 175, 55, 0.12);
	border-color: rgba(212, 175, 55, 0.25);
	color: #f6e6b8;
	border-bottom-right-radius: 4px;
}

.ns-pro-live-chat__message.is-theirs .ns-pro-live-chat__bubble {
	border-bottom-left-radius: 4px;
}

.ns-pro-live-chat__message time {
	font-size: 11px;
	color: #a1a1aa;
}

.ns-pro-live-chat__status {
	font-size: 13px;
	margin-bottom: 12px;
	color: #f6e6b8;
}

.ns-pro-live-chat__status.is-error {
	color: #fecaca;
}

.ns-pro-live-chat__status[hidden] {
	display: none;
}

.ns-pro-live-chat__composer {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 8px 12px;
}

.ns-pro-live-chat__composer textarea {
	flex: 1;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 14px;
	resize: none;
	max-height: 120px;
	min-height: 40px;
	outline: none;
}

.ns-pro-live-chat__composer textarea::placeholder {
	color: #a1a1aa;
}

.ns-pro-live-chat__send {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: none;
	background: #d4af37;
	color: #050505;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	flex-shrink: 0;
}

.ns-pro-live-chat__send:hover {
	background: #f6e6b8;
	box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}

.ns-pro-live-chat__hint {
	font-size: 12px;
	color: #a1a1aa;
	margin: 8px 0 0;
	text-align: right;
}

/* Bio read-more */
.ns-pro-live-profile__bio-wrap {
	position: relative;
}

.ns-pro-live-profile__bio.is-collapsible {
	max-height: 120px;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.ns-pro-live-profile__bio.is-collapsible::after {
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 40px;
	background: linear-gradient(to top, rgba(5, 5, 5, 0.92), transparent);
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.ns-pro-live-profile__bio-wrap.is-expanded .ns-pro-live-profile__bio.is-collapsible {
	max-height: 2000px;
}

.ns-pro-live-profile__bio-wrap.is-expanded .ns-pro-live-profile__bio.is-collapsible::after {
	opacity: 0;
}

.ns-pro-live-profile__read-more {
	appearance: none;
	background: none;
	border: none;
	color: #d4af37;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 8px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ns-pro-live-profile__read-more:hover {
	color: #f6e6b8;
}

/* VIP Masonry gallery with blur + gold lock */
.ns-pro-gallery__list {
	columns: 3 220px;
	column-gap: 16px;
}

.ns-pro-gallery__item {
	break-inside: avoid;
	margin-bottom: 16px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.ns-pro-gallery__item img {
	width: 100%;
	display: block;
	border-radius: 12px;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.ns-pro-gallery__item:hover img {
	transform: scale(1.03);
}

.ns-pro-gallery__item--locked img {
	filter: blur(10px);
	transform: scale(1.05);
}

.ns-pro-gallery__item--locked::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(2px);
	z-index: 1;
	pointer-events: none;
}

.ns-pro-gallery__item--locked::before {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 44px;
	height: 44px;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.45);
	border-radius: 50%;
	z-index: 2;
	pointer-events: none;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E") center / 24px no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E") center / 24px no-repeat;
}

@media (max-width: 768px) {
	.ns-pro-gallery__list {
		columns: 2 140px;
	}
}

@media (max-width: 480px) {
	.ns-pro-gallery__list {
		columns: 1;
	}
}

/* END_STRICT_OVERRIDES */

/* --- Live Header Premium / SaaS v5.4.0 --- */

.ns-live-header {
	background: rgba(10, 10, 13, 0.85);
	backdrop-filter: blur(22px) saturate(160%);
	-webkit-backdrop-filter: blur(22px) saturate(160%);
	border-bottom: 1px solid rgba(212, 175, 55, 0.14);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.ns-live-header__title {
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #f6e6b8 0%, #d4af37 55%, #b8922e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ns-live-header__search-input {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ns-live-header__search-input:focus {
	border-color: rgba(212, 175, 55, 0.55);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 0 18px rgba(212, 175, 55, 0.1);
}

.ns-live-header__search-btn {
	background: linear-gradient(135deg, #d4af37, #b8922e);
	color: #0a0a0d;
	box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
}

.ns-live-header__search-btn:hover {
	transform: translateY(-50%) scale(1.08);
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.ns-live-header__wallet {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.06));
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 0 14px rgba(212, 175, 55, 0.1);
}

.ns-live-header__wallet:hover {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.12));
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.ns-live-header__tool {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #a1a1aa;
	transition: all 0.2s ease;
}

.ns-live-header__tool:hover {
	background: rgba(212, 175, 55, 0.12);
	border-color: rgba(212, 175, 55, 0.35);
	color: #d4af37;
	transform: translateY(-1px);
}

.ns-live-header__tool svg {
	width: 18px;
	height: 18px;
}

.ns-live-header__avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid rgba(212, 175, 55, 0.35);
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35), 0 0 12px rgba(212, 175, 55, 0.25);
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ns-live-header__avatar img,
.ns-live-header__avatar--initial {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ns-live-header__online-dot {
	position: absolute;
	bottom: 2px;
	right: 2px;
	width: 10px;
	height: 10px;
	background: #22c55e;
	border: 2px solid #0a0a0d;
	border-radius: 50%;
}

/* --- Live Creator Studio & Single Premium / SaaS v5.4.0 --- */

.nx-live-premium {
	--live-glass: rgba(10, 10, 13, 0.72);
	--live-border: rgba(212, 175, 55, 0.12);
}

.nx-live-premium .nx-live-host-dashboard,
.nx-live-premium .ns-pro-live-profile__embedded,
.nx-live-premium .ns-pro-live-profile__landing-sidebar,
.nx-live-premium .ns-pro-live-chat,
.nx-live-premium .ns-pro-gallery {
	background: var(--live-glass);
	border: 1px solid var(--live-border);
	border-radius: 18px;
	backdrop-filter: blur(18px) saturate(135%);
	-webkit-backdrop-filter: blur(18px) saturate(135%);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.nx-live-premium__head .nx-live-premium__title {
	background: linear-gradient(135deg, #f6e6b8 0%, #d4af37 55%, #b8922e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.nx-live-premium__stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
	margin: 1.25rem 0;
}

.nx-live-stat-card {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
	border: 1px solid rgba(212, 175, 55, 0.22);
	border-radius: 16px;
	padding: 1.15rem;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.03);
	transition: transform 0.2s, box-shadow 0.2s;
}

.nx-live-stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 18px rgba(212, 175, 55, 0.12);
}

.nx-live-stat-card .nx-live-premium__kicker {
	display: block;
	font-size: 0.72rem;
	color: #a1a1aa;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nx-live-stat-card__value {
	display: block;
	font-size: 1.45rem;
	font-weight: 800;
	color: #f6e6b8;
	margin-top: 0.4rem;
}

.nx-live-stat-card--tl .nx-live-stat-card__value {
	color: #22c55e;
}

.nx-live-stat-card--coins .nx-live-stat-card__value {
	color: #d4af37;
}

.ns-pro-live-profile--landing {
	padding: 1.25rem;
	border-radius: 24px;
	background: rgba(10, 10, 13, 0.65);
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.ns-pro-live-profile__hero--premium {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.ns-pro-live-profile__meta.nx-glass {
	background: rgba(10, 10, 13, 0.78);
	border: 1px solid rgba(212, 175, 55, 0.14);
	border-radius: 18px;
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
}

.ns-pro-live-profile__title {
	background: linear-gradient(135deg, #f6e6b8 0%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ns-pro-live-profile__tabs {
	border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.ns-pro-live-profile__tab {
	color: #a1a1aa;
	font-weight: 600;
	transition: color 0.2s, background 0.2s;
}

.ns-pro-live-profile__tab:hover,
.ns-pro-live-profile__tab.is-active {
	color: #d4af37;
	background: rgba(212, 175, 55, 0.08);
}

.ns-pro-live-profile__tab.is-active {
	border-bottom: 2px solid #d4af37;
}

.ns-pro-btn--gold,
[data-live-gallery-unlock],
.ns-live-appointment__submit,
.ns-pro-live-fab {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.08));
	border: 1px solid rgba(212, 175, 55, 0.45);
	color: #f6e6b8;
	box-shadow: 0 0 18px rgba(212, 175, 55, 0.15);
}

.ns-pro-btn--gold:hover,
[data-live-gallery-unlock]:hover,
.ns-live-appointment__submit:hover,
.ns-pro-live-fab:hover {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.15));
	box-shadow: 0 0 26px rgba(212, 175, 55, 0.25);
	transform: translateY(-1px);
}

.ns-pro-live-fab {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	z-index: 60;
}

@media (min-width: 992px) {
	.ns-pro-live-fab {
		display: none;
	}
}

/* ============================================================
 * Noxora Live v5.5 — VIP/Archive + header/sidebar premium v2
 * ============================================================ */

/* Header premium v2 */
.ns-live-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(180deg, rgba(10,10,13,0.92) 0%, rgba(10,10,13,0.78) 100%);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	border-bottom: 1px solid rgba(212, 175, 55, 0.14);
	box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
	padding: 0.6rem 1.25rem;
	gap: 1rem;
}

.ns-live-header__title {
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	background: linear-gradient(90deg, #f6e6b8 0%, #d4af37 60%, #f6e6b8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ns-live-header__search {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: 14px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.22);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ns-live-header__search:focus-within {
	border-color: rgba(212, 175, 55, 0.45);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08), 0 4px 20px rgba(0,0,0,0.28);
}

.ns-live-header__search-input {
	background: transparent;
	color: #f5f5f7;
}

.ns-live-header__search-input::placeholder {
	color: #7d7d85;
}

.ns-live-header__search-btn {
	color: #d4af37;
	transition: color 0.2s, transform 0.2s;
}

.ns-live-header__search-btn:hover {
	color: #f6e6b8;
	transform: scale(1.05);
}

.ns-live-header__wallet--saas {
	background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(212,175,55,0.05));
	border: 1px solid rgba(212,175,55,0.25);
	border-radius: 14px;
	padding: 0.45rem 0.85rem;
	box-shadow: 0 6px 18px rgba(0,0,0,0.22);
	transition: box-shadow 0.2s, transform 0.2s;
}

.ns-live-header__wallet--saas:hover {
	box-shadow: 0 8px 24px rgba(212,175,55,0.12);
	transform: translateY(-1px);
}

.ns-live-header__wallet-balance {
	font-weight: 700;
	color: #f6e6b8;
}

.ns-live-header__tool,
.ns-live-header__login {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a8a8a8;
	transition: all 0.2s;
}

.ns-live-header__tool:hover,
.ns-live-header__login:hover {
	background: rgba(212,175,55,0.10);
	border-color: rgba(212,175,55,0.35);
	color: #f6e6b8;
	box-shadow: 0 0 18px rgba(212,175,55,0.12);
}

.ns-live-header__avatar {
	border: 2px solid rgba(212,175,55,0.45);
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(212,175,55,0.12);
	transition: box-shadow 0.2s;
}

.ns-live-header__avatar:hover {
	box-shadow: 0 0 0 4px rgba(212,175,55,0.18), 0 0 20px rgba(212,175,55,0.2);
}

/* Sidebar — page scroll, no custom scrollbar */
.ns-live-sidebar {
	position: relative;
	top: auto;
	height: auto;
	min-height: 100vh;
	overflow-y: visible;
	overflow-x: visible;
	background: linear-gradient(180deg, rgba(8,8,10,0.98) 0%, rgba(4,4,6,0.98) 100%);
	border-right: 1px solid rgba(212, 175, 55, 0.10);
	padding: 1.5rem 0.75rem;
}

@media (max-width: 991px) {
	.ns-live-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		width: 260px;
		height: 100vh;
		overflow-y: auto;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: 120;
	}
	.ns-live-sidebar.is-open {
		transform: translateX(0);
	}
}

.ns-live-sidebar__nav a,
.ns-live-sidebar__channel {
	transition: all 0.2s ease;
}

.ns-live-sidebar__nav a.is-active,
.ns-live-sidebar__channel.is-active {
	background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.06));
	border: 1px solid rgba(212,175,55,0.22);
}

/* VIP / Archive content pages */
.ns-live-content-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem;
}

.ns-live-content-section {
	margin-top: 2.5rem;
}

.ns-live-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.ns-live-section-header__title {
	font-size: 1.35rem;
	font-weight: 700;
	background: linear-gradient(90deg, #f6e6b8, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ns-live-section-header__more {
	color: #d4af37;
	font-weight: 500;
	font-size: 0.9rem;
	text-decoration: none;
	transition: color 0.2s;
}

.ns-live-section-header__more:hover {
	color: #f6e6b8;
}

.ns-live-content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.25rem;
}

.ns-live-content-card {
	background: rgba(12,12,16,0.72);
	border: 1px solid rgba(212,175,55,0.10);
	border-radius: 18px;
	overflow: hidden;
	backdrop-filter: blur(14px) saturate(120%);
	-webkit-backdrop-filter: blur(14px) saturate(120%);
	box-shadow: 0 14px 38px rgba(0,0,0,0.35);
	transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.ns-live-content-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,55,0.18);
	border-color: rgba(212,175,55,0.28);
}

.ns-live-content-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.ns-live-content-card__cover {
	position: relative;
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(8,8,10,0.9));
	overflow: hidden;
}

.ns-live-content-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.ns-live-content-card:hover .ns-live-content-card__cover img {
	transform: scale(1.06);
}

.ns-live-content-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 800;
	color: rgba(212,175,55,0.35);
	letter-spacing: 0.15em;
}

.ns-live-content-card__badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: rgba(0,0,0,0.55);
	border: 1px solid rgba(255,255,255,0.1);
}

.ns-live-content-card__badge--free { color: #a8ffa8; border-color: rgba(168,255,168,0.35); }
.ns-live-content-card__badge--vip { color: #f6e6b8; border-color: rgba(212,175,55,0.45); background: rgba(212,175,55,0.18); }
.ns-live-content-card__badge--premium { color: #00f0ff; border-color: rgba(0,240,255,0.35); background: rgba(0,240,255,0.10); }
.ns-live-content-card__badge--paid { color: #ff8e8e; border-color: rgba(255,142,142,0.35); background: rgba(255,142,142,0.12); }

.ns-live-content-card__body {
	padding: 1rem;
}

.ns-live-content-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
	color: #f5f5f7;
}

.ns-live-content-card__excerpt {
	font-size: 0.85rem;
	color: #9a9a9f;
	margin: 0 0 0.75rem;
	line-height: 1.5;
}

.ns-live-content-card__meta {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.ns-live-content-card__price {
	font-size: 0.78rem;
	font-weight: 700;
	padding: 0.25rem 0.55rem;
	border-radius: 8px;
	background: rgba(212,175,55,0.10);
	color: #f6e6b8;
	border: 1px solid rgba(212,175,55,0.18);
}

/* Detail page */
.ns-live-content-detail {
	background: rgba(12,12,16,0.72);
	border: 1px solid rgba(212,175,55,0.12);
	border-radius: 22px;
	overflow: hidden;
	backdrop-filter: blur(18px) saturate(130%);
	-webkit-backdrop-filter: blur(18px) saturate(130%);
	box-shadow: 0 20px 56px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.03);
	padding: 1.5rem;
}

.ns-live-content-detail__back {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: #a8a8a8;
	font-size: 0.88rem;
	font-weight: 500;
	text-decoration: none;
	margin-bottom: 0.75rem;
	transition: color 0.2s;
}

.ns-live-content-detail__back:hover {
	color: #f6e6b8;
}

.ns-live-content-detail__title {
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0 0 0.75rem;
	background: linear-gradient(90deg, #f6e6b8, #ffffff 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ns-live-content-detail__meta {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 1.25rem;
}

.ns-live-content-detail__badge {
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: rgba(0,0,0,0.55);
	border: 1px solid rgba(255,255,255,0.1);
}

.ns-live-content-detail__badge--free { color: #a8ffa8; border-color: rgba(168,255,168,0.35); }
.ns-live-content-detail__badge--vip { color: #f6e6b8; border-color: rgba(212,175,55,0.45); background: rgba(212,175,55,0.18); }
.ns-live-content-detail__badge--premium { color: #00f0ff; border-color: rgba(0,240,255,0.35); background: rgba(0,240,255,0.10); }
.ns-live-content-detail__badge--paid { color: #ff8e8e; border-color: rgba(255,142,142,0.35); background: rgba(255,142,142,0.12); }

.ns-live-content-detail__price {
	font-size: 0.9rem;
	font-weight: 700;
	color: #f6e6b8;
}

.ns-live-content-detail__cover {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 1.25rem;
	border: 1px solid rgba(212,175,55,0.12);
	box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

.ns-live-content-detail__cover img {
	width: 100%;
	height: auto;
	display: block;
}

.ns-live-content-detail__excerpt {
	font-size: 1rem;
	color: #c8c8cd;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.ns-live-content-detail__body {
	color: #c8c8cd;
	line-height: 1.7;
}

.ns-live-content-detail__text p {
	margin-bottom: 1rem;
}

.ns-live-content-detail__media {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(212,175,55,0.12);
	box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

.ns-live-content-detail__media video,
.ns-live-content-detail__media img {
	width: 100%;
	height: auto;
	display: block;
}

.ns-live-content-detail__locked {
	text-align: center;
	padding: 3rem 1rem;
	background: rgba(0,0,0,0.3);
	border-radius: 18px;
	border: 1px dashed rgba(212,175,55,0.22);
}

.ns-live-content-detail__lock-icon {
	font-size: 2.5rem;
	color: #d4af37;
	display: block;
	margin-bottom: 0.75rem;
}

.ns-live-content-detail__locked h2 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #f5f5f7;
}

.ns-live-content-detail__locked p {
	color: #9a9a9f;
	margin-bottom: 1.25rem;
}

.ns-live-content-detail__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
}

.ns-live-content-detail__alert {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	background: rgba(255,142,142,0.12);
	border: 1px solid rgba(255,142,142,0.25);
	color: #ffb3b3;
}

.ns-live-content-detail__alert[hidden] {
	display: none;
}

/* Single broadcaster & chat premium */
.ns-pro-live-profile__landing-sidebar,
.ns-pro-live-chat,
.ns-pro-live-profile__embedded,
.ns-live-appointment,
.ns-pro-gallery {
	background: rgba(10,10,13,0.74);
	border: 1px solid rgba(212,175,55,0.12);
	border-radius: 18px;
	backdrop-filter: blur(18px) saturate(130%);
	-webkit-backdrop-filter: blur(18px) saturate(130%);
	box-shadow: 0 16px 44px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,255,255,0.03);
	padding: 1.25rem;
}

.ns-pro-live-profile__title,
.ns-pro-live-profile__name {
	font-size: 1.4rem;
	font-weight: 800;
	background: linear-gradient(90deg, #f6e6b8, #ffffff 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ns-pro-live-profile__tagline {
	color: #a8a8a8;
	font-size: 0.92rem;
}

.ns-pro-live-chat__messages,
.ns-pro-live-chat__feed {
	background: rgba(0,0,0,0.25);
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.05);
	padding: 1rem;
	max-height: 420px;
	overflow-y: auto;
}

.ns-pro-live-chat__input,
.ns-pro-live-chat__composer textarea {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(212,175,55,0.18);
	border-radius: 14px;
	color: #f5f5f7;
	padding: 0.8rem 1rem;
}

.ns-pro-live-chat__input::placeholder,
.ns-pro-live-chat__composer textarea::placeholder {
	color: #7d7d85;
}

.ns-pro-live-chat__submit,
.ns-pro-live-chat__send {
	background: linear-gradient(135deg, rgba(212,175,55,0.22), rgba(212,175,55,0.08));
	border: 1px solid rgba(212,175,55,0.45);
	color: #f6e6b8;
	border-radius: 12px;
	padding: 0.7rem 1.1rem;
	font-weight: 600;
	transition: all 0.2s;
}

.ns-pro-live-chat__submit:hover,
.ns-pro-live-chat__send:hover {
	background: linear-gradient(135deg, rgba(212,175,55,0.35), rgba(212,175,55,0.15));
	box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

/* Creator studio premium */
.nx-live-premium__head {
	text-align: center;
	padding: 2rem 1rem;
	margin-bottom: 1.5rem;
	background: rgba(10,10,13,0.6);
	border: 1px solid rgba(212,175,55,0.10);
	border-radius: 20px;
	backdrop-filter: blur(14px) saturate(120%);
	-webkit-backdrop-filter: blur(14px) saturate(120%);
}

.nx-live-premium__kicker {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #d4af37;
	margin-bottom: 0.5rem;
}

.nx-live-premium__title {
	font-size: 1.65rem;
	font-weight: 800;
	margin: 0 0 0.6rem;
	background: linear-gradient(90deg, #f6e6b8, #ffffff 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nx-live-premium__sub {
	color: #a8a8a8;
	max-width: 620px;
	margin: 0 auto 1.25rem;
	line-height: 1.6;
}

.nx-live-host-dashboard {
	background: rgba(10,10,13,0.72);
	border: 1px solid rgba(212,175,55,0.12);
	border-radius: 18px;
	backdrop-filter: blur(16px) saturate(130%);
	-webkit-backdrop-filter: blur(16px) saturate(130%);
	box-shadow: 0 16px 44px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,255,255,0.03);
	padding: 1.5rem;
}

.nx-live-premium__stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.nx-live-stat-card {
	background: rgba(10,10,13,0.7);
	border: 1px solid rgba(212,175,55,0.12);
	border-radius: 16px;
	padding: 1.25rem;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}

.nx-live-stat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.15);
}

.nx-live-stat-card__value {
	font-size: 1.5rem;
	font-weight: 800;
	color: #f6e6b8;
}

/* Premium Live header brand lockup */
.ns-live-header__brand.nx-brand-lockup {
	gap: 0.55rem;
	padding: 0.15rem 0.65rem 0.15rem 0.15rem;
	border-radius: 12px;
	border: 1px solid rgba(212, 175, 55, 0.15);
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(12px) saturate(120%);
	-webkit-backdrop-filter: blur(12px) saturate(120%);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ns-live-header__brand.nx-brand-lockup:hover {
	border-color: rgba(212, 175, 55, 0.4);
	box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
	transform: translateY(-1px);
}

.ns-live-header__brand .nx-brand-lockup__mark {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: linear-gradient(160deg, #f6e6b8, #c8a02a);
	color: #111;
	box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

.ns-live-header__brand .nx-brand-lockup__mark svg {
	width: 18px;
	height: 18px;
	fill: #111;
}

.ns-live-header__brand .nx-brand-lockup__name {
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	color: #f5f5f7;
}

.ns-live-header__brand .nx-brand-lockup__badge {
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: #f6e6b8;
}

/* Premium live header hero slider — compact SaaS */
.ns-live-hero-slider {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 0.75rem;
	overflow: hidden;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.32);
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ns-live-hero-slider__track {
	display: flex;
	touch-action: pan-y;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-live-hero-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	position: relative;
	aspect-ratio: 16 / 5.5;
	min-height: 140px;
	max-height: 220px;
	overflow: hidden;
}

.ns-live-hero-slider__link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.ns-live-hero-slider__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 16px;
}

.ns-live-hero-slider__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-live-hero-slider__link:hover .ns-live-hero-slider__media img {
	transform: scale(1.03);
}

.ns-live-hero-slider__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.08) 100%);
	pointer-events: none;
}

.ns-live-hero-slider__content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: min(360px, 68%);
	padding: 1rem;
	z-index: 2;
}

.ns-live-hero-slider__kicker {
	display: inline-block;
	font-size: 0.56rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f6e6b8;
	padding: 0.14rem 0.45rem;
	border-radius: 999px;
	border: 1px solid rgba(212, 175, 55, 0.35);
	background: rgba(212, 175, 55, 0.12);
	margin-bottom: 0.4rem;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.ns-live-hero-slider__title {
	font-size: clamp(0.9rem, 1.9vw, 1.25rem);
	font-weight: 800;
	margin: 0 0 0.3rem;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.ns-live-hero-slider__subtitle {
	display: none;
}

.ns-live-hero-slider__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: #f6e6b8;
	color: #111;
	box-shadow: 0 5px 14px rgba(246, 230, 184, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ns-live-hero-slider__link:hover .ns-live-hero-slider__cta {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(246, 230, 184, 0.32);
}

.ns-live-hero-slider__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.65rem 0.9rem;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 3;
}

.ns-live-hero-slider__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, transform 0.2s;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.ns-live-hero-slider__arrow:hover {
	background: rgba(212, 175, 55, 0.18);
	border-color: rgba(212, 175, 55, 0.4);
	color: #f6e6b8;
}

.ns-live-hero-slider__arrow:active {
	transform: scale(0.95);
}

.ns-live-hero-slider__dots {
	display: flex;
	gap: 0.4rem;
}

.ns-live-hero-slider__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.ns-live-hero-slider__dot.is-active {
	background: #f6e6b8;
	transform: scale(1.25);
}

@media (max-width: 768px) {
	.ns-live-hero-slider__slide {
		aspect-ratio: 16 / 7;
		min-height: 160px;
	}
	.ns-live-hero-slider__content {
		width: min(280px, 72%);
		padding: 0.9rem;
	}
	.ns-live-hero-slider__title {
		font-size: clamp(0.95rem, 4.5vw, 1.25rem);
	}
	.ns-live-hero-slider__nav {
		padding: 0.5rem 0.6rem;
	}
	.ns-live-hero-slider__arrow {
		width: 28px;
		height: 28px;
	}
}

/* SaaS VIP / Archive cards */
.ns-live-content-grid {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
}

.ns-live-content-card {
	background: rgba(12, 12, 16, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.25s;
}

.ns-live-content-card:hover {
	transform: translateY(-4px) scale(1.01);
	border-color: rgba(212, 175, 55, 0.22);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.10);
}

.ns-live-content-card__cover {
	position: relative;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(8, 8, 10, 0.95));
	overflow: hidden;
}

.ns-live-content-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.ns-live-content-card:hover .ns-live-content-card__cover img {
	transform: scale(1.05);
}

.ns-live-content-card__body {
	padding: 0.85rem 1rem 1rem;
}

.ns-live-content-card__title {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
	color: #f5f5f7;
	letter-spacing: -0.01em;
}

.ns-live-content-card__excerpt {
	font-size: 0.8rem;
	color: #9a9a9f;
	margin: 0 0 0.65rem;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ns-live-content-card__meta {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.ns-live-content-card__price {
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.2rem 0.5rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: #f6e6b8;
}

/* Detail page premium polish */
.ns-live-content-detail__cover {
	position: relative;
	max-width: 520px;
	margin: 0 auto 1.25rem;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	background: #0a0a0a;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ns-live-content-detail__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ns-live-content-detail__gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding: 0.75rem;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
}

.ns-live-content-detail__gallery-item {
	position: relative;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	background: #0a0a0a;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.2s;
}

.ns-live-content-detail__gallery-item:hover {
	transform: translateY(-2px);
}

.ns-live-content-detail__gallery-item img,
.ns-live-content-detail__gallery-item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ns-live-content-detail__gallery-item video {
	pointer-events: none;
}

.ns-live-content-detail__gallery-item.is-blurred img,
.ns-live-content-detail__gallery-item.is-blurred video {
	filter: blur(10px) saturate(0.6);
	transform: scale(1.06);
}

.ns-live-content-detail__gallery-lock {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	background: rgba(0,0,0,0.45);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 2;
}

.ns-live-content-detail__gallery-lock .ns-live-content-detail__lock-icon {
	font-size: 1.4rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
}

.ns-live-content-detail__gallery-lock .ns-live-content-detail__lock-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.8);
}

.ns-live-content-detail__actions .ns-pro-btn {
	min-width: 220px;
	justify-content: center;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.85rem 1.25rem;
}

.ns-live-content-detail__price-note {
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	opacity: 0.85;
	margin-top: 0.15rem;
}

/* Mobile */
@media (max-width: 768px) {
	.ns-live-content-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}
	.ns-live-content-card__title {
		font-size: 0.85rem;
	}
	.ns-live-content-card__excerpt {
		font-size: 0.75rem;
	}
	.ns-live-content-detail__gallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.ns-live-section-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* SaaS premium detail additions */
.ns-live-content-detail__category {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
	color: #020202;
	background: linear-gradient(135deg, #f6e6b8, #d4af37);
	border: 1px solid rgba(246, 230, 184, 0.45);
}

.ns-live-content-detail__description {
	font-size: 1rem;
	line-height: 1.7;
	color: #c8c8cd;
	margin-bottom: 1.25rem;
	padding: 1rem 1.2rem;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 14px;
}

.ns-live-content-detail__cta-wrap {
	display: flex;
	justify-content: flex-start;
	margin: 1.25rem 0;
}

.ns-live-content-detail__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.8rem 1.6rem;
	border-radius: 999px;
	text-decoration: none;
	color: #020202;
	background: linear-gradient(135deg, #f6e6b8, #d4af37);
	border: 1px solid rgba(246, 230, 184, 0.45);
	box-shadow: 0 10px 28px rgba(212, 175, 55, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ns-live-content-detail__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 38px rgba(212, 175, 55, 0.35);
}

.ns-live-content-detail__gallery-link {
	display: block;
	width: 100%;
	height: 100%;
	cursor: zoom-in;
}

.ns-live-content-detail__gallery-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ns-live-content-detail__gallery-item.is-locked {
	cursor: default;
	pointer-events: none;
}

.ns-live-content-card__category {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.12rem 0.55rem;
	border-radius: 999px;
	color: #f6e6b8;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.25);
	margin-bottom: 0.45rem;
}

/* Detail page — compact two-column hero and gallery section */
.ns-live-content-detail__hero {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 1.5rem;
	align-items: start;
	margin-bottom: 1.5rem;
}

.ns-live-content-detail__cover {
	position: relative;
	max-width: 260px;
	margin: 0;
	aspect-ratio: 4 / 3;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.22);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ns-live-content-detail__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ns-live-content-detail__info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ns-live-content-detail__title {
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
}

.ns-live-content-detail__meta {
	flex-wrap: wrap;
	gap: 0.45rem;
}

.ns-live-content-detail__excerpt {
	color: #aaa;
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}

.ns-live-content-detail__description {
	color: #bbb;
	font-size: 0.86rem;
	line-height: 1.6;
}

.ns-live-content-detail__cta-wrap {
	margin-top: 0.25rem;
}

.ns-live-content-detail__gallery-section {
	margin-top: 1rem;
}

.ns-live-content-detail__gallery-title {
	font-size: 0.92rem;
	font-weight: 800;
	margin: 0 0 0.75rem;
	color: #f6e6b8;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

@media (max-width: 720px) {
	.ns-live-content-detail__hero {
		grid-template-columns: 1fr;
	}

	.ns-live-content-detail__cover {
		max-width: 200px;
	}

	.ns-live-content-detail__info {
		gap: 0.55rem;
	}
}

/* Header search toggle & mobile overlay */
.ns-live-header__search-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: #c8c8cd;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ns-live-header__search-toggle:hover {
	color: #f6e6b8;
	border-color: rgba(212, 175, 55, 0.35);
	background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 900px) {
	.ns-live-header__search-toggle {
		display: inline-flex;
	}

	.ns-live-header__search {
		display: none;
		position: fixed;
		inset: 64px 0 auto 0;
		z-index: 99;
		max-width: none;
		width: 100%;
		padding: 0.75rem 1rem;
		background: rgba(6, 6, 8, 0.96);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	}

	.ns-live-header__search.is-open {
		display: flex;
	}

	.ns-live-header__search-input {
		height: 44px;
		font-size: 1rem;
	}

	.ns-live-header__search-btn {
		width: 40px;
		height: 40px;
	}
}
