/* Sitebix Livestream — frontend grid & cards */
.sitebix-ls {
	box-sizing: border-box;
}

.sitebix-ls *,
.sitebix-ls *::before,
.sitebix-ls *::after {
	box-sizing: inherit;
}

.sitebix-ls .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sitebix-ls-grid {
	display: grid;
	grid-template-columns: repeat(var(--sitebix-ls-cols-mobile, 1), minmax(0, 1fr));
	gap: 1.25rem;
	margin: 1.5rem 0;
}

.sitebix-ls-shows-grid {
	gap: 1.5rem;
}

@media (min-width: 600px) {
	.sitebix-ls-grid {
		grid-template-columns: repeat(var(--sitebix-ls-cols-tablet, 2), minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.sitebix-ls-grid {
		grid-template-columns: repeat(var(--sitebix-ls-cols-desktop, 4), minmax(0, 1fr));
	}
}

.sitebix-ls-shows-grid.sitebix-ls-grid--empty {
	padding: 2.5rem 1.5rem;
	text-align: center;
	color: #a8a29e;
	background: linear-gradient(165deg, #1c1917 0%, #0c0a09 100%);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* One grid item on a multi-column grid would only use the first column — span full width. */
.sitebix-ls-shows-grid.sitebix-ls-grid--empty p {
	grid-column: 1 / -1;
	max-width: none;
	margin: 0;
}

.sitebix-ls-shows-grid .sitebix-ls-card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #1f1d1b 0%, #141210 100%);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.sitebix-ls-shows-grid .sitebix-ls-card:hover {
	border-color: rgba(251, 191, 36, 0.35);
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(251, 191, 36, 0.1);
	transform: translateY(-4px);
}

.sitebix-ls-shows-grid .sitebix-ls-card__media {
	display: block;
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #0c0a09;
}

.sitebix-ls-shows-grid .sitebix-ls-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(12, 10, 9, 0.65) 0%, transparent 50%);
	pointer-events: none;
}

.sitebix-ls-shows-grid .sitebix-ls-card__media--placeholder {
	min-height: 0;
	background:
		radial-gradient(ellipse 65% 55% at 35% 25%, rgba(251, 191, 36, 0.18) 0%, transparent 55%),
		linear-gradient(168deg, #292524 0%, #0c0a09 55%, #1c1917 100%);
}

.sitebix-ls-shows-grid .sitebix-ls-card__media--placeholder::after {
	background: linear-gradient(to top, rgba(12, 10, 9, 0.4) 0%, transparent 55%);
}

.sitebix-ls-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.sitebix-ls-shows-grid .sitebix-ls-card__body {
	padding: 1.1rem 1.15rem 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.4rem;
}

.sitebix-ls-shows-grid .sitebix-ls-card__title {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.28;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fafaf9;
}

.sitebix-ls-shows-grid .sitebix-ls-card__title a {
	color: inherit;
	text-decoration: none;
}

.sitebix-ls-shows-grid .sitebix-ls-card__title a:hover {
	color: #fbbf24;
}

.sitebix-ls-shows-grid .sitebix-ls-card__time {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.4;
	font-weight: 600;
	color: #fbbf24;
}

.sitebix-ls-shows-grid .sitebix-ls-card__duration {
	margin: 0.15rem 0 0;
	font-size: 0.75rem;
	line-height: 1.35;
	font-weight: 600;
	color: #a8a29e;
}

.sitebix-ls-shows-grid .sitebix-ls-card__price {
	margin: 0.35rem 0 0;
	font-size: 0.88rem;
	line-height: 1.35;
	font-weight: 700;
	color: #e7e5e4;
}

.sitebix-ls-shows-grid .sitebix-ls-card__price .woocommerce-Price-amount {
	color: inherit;
}

/* Currency symbol/code smaller than the numeric amount (matches wc_price() markup). */
.sitebix-ls-shows-grid .sitebix-ls-card__price .woocommerce-Price-currencySymbol {
	font-size: 0.72em;
	font-weight: 600;
	opacity: 0.92;
	vertical-align: 0.06em;
}

.sitebix-ls-shows-grid .sitebix-ls-card__price .sitebix-ls-price-currency-code {
	font-size: 0.72em;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.88;
	vertical-align: 0.06em;
	margin-left: 0.15em;
	white-space: nowrap;
}

.sitebix-ls-shows-grid .sitebix-ls-card__price--free {
	color: #86efac;
}

.sitebix-ls-shows-grid .sitebix-ls-card__excerpt {
	margin: 0.2rem 0 0;
	font-size: 0.88rem;
	line-height: 1.5;
	color: #a8a29e;
	flex: 1;
}

.sitebix-ls-shows-grid .sitebix-ls-card__actions {
	margin-top: 0.9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.sitebix-ls-shows-grid .sitebix-ls-card__watch-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
}

.sitebix-ls-shows-grid .sitebix-ls-card__purchased-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.65rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #ecfdf5;
	background: rgba(16, 185, 129, 0.35);
	border: 1px solid rgba(52, 211, 153, 0.55);
	border-radius: 999px;
}

.sitebix-ls-shows-grid .sitebix-ls-card__free-show-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.65rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #e0f2fe;
	background: rgba(56, 189, 248, 0.22);
	border: 1px solid rgba(125, 211, 252, 0.5);
	border-radius: 999px;
}

.sitebix-ls-shows-grid .sitebix-ls-card__host-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.65rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #fef3c7;
	background: rgba(251, 191, 36, 0.22);
	border: 1px solid rgba(251, 191, 36, 0.55);
	border-radius: 999px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.sitebix-ls-shows-grid .sitebix-ls-card .sitebix-ls-btn--primary {
	background: linear-gradient(165deg, #fde68a 0%, #fbbf24 42%, #d97706 100%);
	color: #0c0a09;
	border-color: rgba(180, 83, 9, 0.6);
	font-weight: 700;
}

.sitebix-ls-shows-grid .sitebix-ls-card .sitebix-ls-btn--primary:hover {
	background: linear-gradient(165deg, #fef3c7 0%, #fcd34d 48%, #f59e0b 100%);
	color: #0c0a09;
	border-color: #b45309;
}

.sitebix-ls-shows-grid .sitebix-ls-card .sitebix-ls-btn--ghost {
	color: #e7e5e4;
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.05);
}

.sitebix-ls-shows-grid .sitebix-ls-card .sitebix-ls-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(251, 191, 36, 0.45);
	color: #fff;
}

.sitebix-ls-shows-grid .sitebix-ls-card .sitebix-ls-btn--wallet {
	background: linear-gradient(165deg, #34d399 0%, #10b981 42%, #047857 100%);
	color: #0c0a09;
	border-color: rgba(6, 95, 70, 0.75);
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35);
}

.sitebix-ls-shows-grid .sitebix-ls-card .sitebix-ls-btn--wallet:hover {
	background: linear-gradient(165deg, #6ee7b7 0%, #34d399 48%, #059669 100%);
	color: #0c0a09;
	border-color: #047857;
}

.sitebix-ls-card__actions--tickets {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.sitebix-ls-shows-grid .sitebix-ls-card__actions--tickets:has(.sitebix-ls-card__cta-stack) {
	flex-direction: column;
	align-items: stretch;
}

.sitebix-ls-shows-grid .sitebix-ls-card__cta-stack {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 0.5rem;
}

.sitebix-ls-shows-grid .sitebix-ls-card__cta-stack .sitebix-ls-btn--wallet {
	width: 100%;
	justify-content: center;
	box-sizing: border-box;
}

.sitebix-ls-shows-grid .sitebix-ls-card__cta-subrow {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	width: 100%;
	align-items: center;
}

.sitebix-ls-shows-grid .sitebix-ls-card__cta-subrow .sitebix-ls-btn {
	flex: 1 1 calc(50% - 0.25rem);
	min-width: 6.5rem;
	justify-content: center;
}

.sitebix-ls-gate__cta-row,
.sitebix-ls-notice__cta--row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.sitebix-ls-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	line-height: 1.25;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Themes often set `a { text-decoration: underline }` — keep grids / CTAs clean */
a.sitebix-ls-btn,
a.sitebix-ls-btn:hover,
a.sitebix-ls-btn:focus,
a.sitebix-ls-btn:focus-visible,
a.sitebix-ls-btn:active,
a.sitebix-ls-btn:visited,
button.sitebix-ls-btn,
button.sitebix-ls-btn:hover,
button.sitebix-ls-btn:focus,
button.sitebix-ls-btn:focus-visible,
button.sitebix-ls-btn:active,
.sitebix-ls-btn .sitebix-ls-btn__sub {
	text-decoration: none !important;
	text-decoration-line: none !important;
}

.sitebix-ls-btn--primary {
	background: #0f172a;
	color: #fff;
	border-color: #0f172a;
}

.sitebix-ls-btn--primary:hover {
	background: #1e293b;
	color: #fff;
	border-color: #1e293b;
}

.sitebix-ls-btn--ghost {
	background: transparent;
	color: #334155;
	border-color: #cbd5e1;
}

.sitebix-ls-btn--ghost:hover {
	background: #f8fafc;
	border-color: #94a3b8;
	color: #0f172a;
}

.sitebix-ls-notice,
.sitebix-ls-gate {
	padding: 1.5rem;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	max-width: 36rem;
	margin: 1rem auto;
	text-align: center;
}

.sitebix-ls-gate__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.sitebix-ls-gate__text {
	margin: 0 0 1rem;
	color: #475569;
}

.sitebix-ls-countdown {
	text-align: center;
	padding: 2rem 1rem;
	max-width: 28rem;
	margin: 1rem auto;
	border-radius: 12px;
	background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
	border: 1px solid #e2e8f0;
}

.sitebix-ls-countdown__label {
	margin: 0;
	font-size: 0.9rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.sitebix-ls-countdown__value {
	margin: 0.5rem 0 0;
	font-size: 1.75rem;
	font-weight: 700;
	color: #0f172a;
	font-variant-numeric: tabular-nums;
}

.sitebix-ls-countdown__schedule {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	color: #64748b;
}

.sitebix-ls-countdown--in-gate {
	margin: 0.5rem auto 0;
	max-width: 28rem;
	padding: 1.25rem 1rem;
}

.sitebix-ls-gate--live .sitebix-ls-gate__title {
	margin-top: 0.75rem;
}

.sitebix-ls-gate__schedule {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	color: #475569;
}

.sitebix-ls-gate__cta {
	margin: 1rem 0 0;
}

/* Gate card + “Already purchased?” below (outside bordered .sitebix-ls-gate) */
.sitebix-ls-gate-outer {
	max-width: 36rem;
	margin: 1rem auto;
}

.sitebix-ls-gate-outer > .sitebix-ls-gate {
	margin: 0;
	width: 100%;
}

/* Guest unlock: “Already purchased?” accordion → log in | order details */
.sitebix-ls-guest-unlock {
	margin-top: 1rem;
	padding: 0;
	border: 0;
	text-align: left;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.sitebix-ls-notice--below-hero + .sitebix-ls-guest-unlock {
	margin-top: 1rem;
}

.sitebix-ls-guest-unlock--in-hero {
	margin-top: 1.75rem;
}

/* Plain text control: strip theme button chrome (no border / full-width box) */
.sitebix-ls-guest-unlock__toggle--bare {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.35rem !important;
	width: max-content !important;
	max-width: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	padding: 0 !important;
	margin: 0 0 0.5rem !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer !important;
	font-family: inherit !important;
	font-size: 0.7rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.16em !important;
	text-transform: uppercase !important;
	line-height: 1.25 !important;
	text-align: left !important;
	vertical-align: baseline !important;
	color: #fbbf24 !important;
	text-decoration: none !important;
}

.sitebix-ls-guest-unlock__toggle--bare:hover,
.sitebix-ls-guest-unlock__toggle--bare:focus,
.sitebix-ls-guest-unlock__toggle--bare:focus:hover,
.sitebix-ls-guest-unlock__toggle--bare:active,
.sitebix-ls-guest-unlock__toggle--bare:hover .sitebix-ls-guest-unlock__toggle-icon,
.sitebix-ls-guest-unlock__toggle--bare:focus .sitebix-ls-guest-unlock__toggle-icon,
.sitebix-ls-guest-unlock__toggle--bare:active .sitebix-ls-guest-unlock__toggle-icon {
	color: #fbbf24 !important;
	text-decoration: none !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	opacity: 1 !important;
}

.sitebix-ls-guest-unlock__toggle--bare::-moz-focus-inner {
	border: 0 !important;
	padding: 0 !important;
}

.sitebix-ls-guest-unlock__toggle--bare:focus {
	outline: none !important;
}

.sitebix-ls-guest-unlock__toggle--bare:focus-visible {
	outline: 2px solid rgba(148, 163, 184, 0.55);
	outline-offset: 3px;
}

/* Hero: same classes as “Live stream event” — .sitebix-ls-event-hero__eyebrow on the <button> */
.sitebix-ls-guest-unlock--in-hero .sitebix-ls-guest-unlock__toggle--bare:focus-visible {
	outline-color: rgba(253, 230, 138, 0.45);
}

.sitebix-ls-guest-unlock__toggle-label {
	flex: 0 1 auto;
}

.sitebix-ls-guest-unlock__toggle-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	color: inherit;
	transition: transform 0.35s ease;
}

.sitebix-ls-guest-unlock.is-open .sitebix-ls-guest-unlock__toggle-icon {
	transform: rotate(180deg);
}

.sitebix-ls-guest-unlock__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.sitebix-ls-guest-unlock.is-open .sitebix-ls-guest-unlock__panel {
	grid-template-rows: 1fr;
}

.sitebix-ls-guest-unlock__panel-measure {
	min-height: 0;
	overflow: hidden;
}

.sitebix-ls-guest-unlock__panel-content {
	margin-top: 0.65rem;
	padding: 1rem 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.sitebix-ls-guest-unlock__options {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding-top: 0.25rem;
}

.sitebix-ls-guest-unlock__option-title {
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: #0f172a;
}

.sitebix-ls-guest-unlock__option-desc {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	line-height: 1.5;
	color: #64748b;
}

.sitebix-ls-guest-unlock__account-hint {
	margin-top: 0.35rem;
	margin-bottom: 0;
	font-size: 0.78rem;
}

.sitebix-ls-guest-unlock__option-cta {
	margin: 0;
}

.sitebix-ls-guest-unlock__btn {
	font-size: 0.875rem;
}

.sitebix-ls-guest-unlock__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: #94a3b8;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sitebix-ls-guest-unlock__divider span {
	padding: 0 0.75rem;
}

@media (min-width: 640px) {
	.sitebix-ls-guest-unlock__options {
		flex-direction: row;
		align-items: stretch;
		gap: 0;
	}

	.sitebix-ls-guest-unlock__option {
		flex: 1;
		min-width: 0;
		padding: 0 1rem;
	}

	.sitebix-ls-guest-unlock__option:first-child {
		padding-left: 0;
	}

	.sitebix-ls-guest-unlock__option:last-child {
		padding-right: 0;
	}

	.sitebix-ls-guest-unlock__divider {
		flex: 0 0 auto;
		width: 1px;
		min-height: 7rem;
		margin: 0 0.25rem;
		background: #e2e8f0;
		position: relative;
		align-self: stretch;
	}

	.sitebix-ls-guest-unlock__divider span {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		background: #f8fafc;
		padding: 0.35rem 0;
		line-height: 1;
	}
}

.sitebix-ls-guest-unlock__field {
	margin: 0 0 0.75rem;
}

.sitebix-ls-guest-unlock__label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	color: #475569;
	margin-bottom: 0.35rem;
}

.sitebix-ls-guest-unlock__input {
	width: 100%;
	max-width: 22rem;
	padding: 0.5rem 0.65rem;
	border-radius: 8px;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0f172a;
	font-size: 1rem;
}

.sitebix-ls-guest-unlock__submit {
	margin: 0.5rem 0 0;
}

.sitebix-ls-notice--success {
	border-color: rgba(52, 211, 153, 0.45);
	background: #ecfdf5;
}

.sitebix-ls-notice--error {
	border-color: rgba(248, 113, 113, 0.45);
	background: #fef2f2;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock {
	margin-top: 1.75rem;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock__toggle--bare {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock__toggle--bare:hover,
.sitebix-ls-event-hero .sitebix-ls-guest-unlock__toggle--bare:focus,
.sitebix-ls-event-hero .sitebix-ls-guest-unlock__toggle--bare:active {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock__panel-content {
	padding-top: 0.75rem;
	margin-top: 0.35rem;
	background: transparent;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock__option-title {
	color: #fef3c7;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock__option-desc,
.sitebix-ls-event-hero .sitebix-ls-guest-unlock__account-hint {
	color: #d6d3d1;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock__divider {
	color: #a8a29e;
}

@media (min-width: 640px) {
	.sitebix-ls-event-hero .sitebix-ls-guest-unlock__divider {
		background: rgba(255, 255, 255, 0.15);
	}

	.sitebix-ls-event-hero .sitebix-ls-guest-unlock__divider span {
		background: rgba(12, 10, 9, 0.95);
	}
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock__label {
	color: #a8a29e;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock__input {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(0, 0, 0, 0.35);
	color: #fafaf9;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock .sitebix-ls-btn--primary {
	background: #fbbf24;
	color: #0c0a09;
	border-color: #fbbf24;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock .sitebix-ls-btn--primary:hover {
	background: #f59e0b;
	border-color: #f59e0b;
	color: #0c0a09;
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock .sitebix-ls-btn--ghost {
	color: #fde68a;
	border-color: rgba(251, 191, 36, 0.45);
}

.sitebix-ls-event-hero .sitebix-ls-guest-unlock .sitebix-ls-btn--ghost:hover {
	color: #0c0a09;
	background: #fbbf24;
	border-color: #fbbf24;
}

.sitebix-ls-event-hero .sitebix-ls-notice.sitebix-ls-guest-unlock-banner {
	margin: 0 0 1rem;
	text-align: left;
	background: rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 255, 255, 0.12);
	color: #e7e5e4;
	max-width: none;
}

.sitebix-ls-event-hero .sitebix-ls-notice--success.sitebix-ls-guest-unlock-banner {
	border-color: rgba(52, 211, 153, 0.4);
}

.sitebix-ls-event-hero .sitebix-ls-notice--error.sitebix-ls-guest-unlock-banner {
	border-color: rgba(248, 113, 113, 0.45);
}

.sitebix-ls-live-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: #dc2626;
	border-radius: 999px;
	animation: sitebix-ls-pulse 2s ease-in-out infinite;
	box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.45);
}

.sitebix-ls-live-badge--hero {
	margin-bottom: 0.75rem;
	font-size: 0.8rem;
	padding: 0.45rem 1rem;
}

.sitebix-ls-live-badge--hero-overlay {
	margin: 0;
	font-size: 0.78rem;
	padding: 0.45rem 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

@keyframes sitebix-ls-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.35);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
	}
}

.sitebix-ls-btn--lg {
	padding: 0.65rem 1.35rem;
	font-size: 1rem;
}

/* Single show page — one full-viewport hero only */
.sitebix-ls-single--event {
	margin: 0;
	padding: 0;
	max-width: none;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
}

.sitebix-ls-event {
	--sitebix-ls-event-accent: #fbbf24;
	--sitebix-ls-event-accent-hot: #f59e0b;
	--sitebix-ls-event-ink: #0c0a09;
	--sitebix-ls-event-muted: #57534e;
	/* Do not use overflow-x: clip — it clips the hero’s 100vw / calc(50% - 50vw) full-bleed breakout. */
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}

/* Single show: ticket holder past pre–early-access — Castio fills viewport (no marketing hero) */
.sitebix-ls-event--live-embed {
	min-height: 100vh;
	min-height: 100dvh;
}

.sitebix-ls-event-live {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #0c0a09;
	box-sizing: border-box;
}

.sitebix-ls-event-live__inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 100rem;
	margin: 0 auto;
	padding: 1rem 1rem 1.5rem;
	box-sizing: border-box;
}

.sitebix-ls-event-live__inner > .sitebix-ls {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	width: 100%;
}

.sitebix-ls-event-live__title.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sitebix-ls-event-hero {
	position: relative;
	box-sizing: border-box;
	flex: 1;
	min-height: 100vh;
	min-height: 100dvh;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background: #0c0a09;
}

.sitebix-ls-event-hero__bg {
	position: absolute;
	inset: 0;
	background-color: #1c1917;
	background-image: var(--sitebix-ls-hero-bg, none);
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
}

.sitebix-ls-event-hero:not(.sitebix-ls-event-hero--has-image) .sitebix-ls-event-hero__bg {
	background-image: none;
	background:
		radial-gradient(ellipse 70% 50% at 20% 20%, rgba(251, 191, 36, 0.25) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 90% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
		linear-gradient(165deg, #292524 0%, #0c0a09 50%, #1c1917 100%);
	transform: none;
}

.sitebix-ls-event-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.88) 0%,
		rgba(0, 0, 0, 0.55) 38%,
		rgba(0, 0, 0, 0.35) 62%,
		rgba(0, 0, 0, 0.5) 100%
	);
	pointer-events: none;
}

.sitebix-ls-event-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 42rem;
	padding: 1.5rem 1.35rem;
	text-align: left;
	max-height: 100vh;
	max-height: 100dvh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

/* Mobile: detail-video hero uses full width (no 42rem cap). */
.sitebix-ls-event-hero__inner--has-detail-video {
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.sitebix-ls-event-hero__inner {
		padding: 2rem 2.5rem;
		max-width: 48rem;
	}

	/* Full width of the hero so the detail-video grid can split ~50 / 50 (show + replay). */
	.sitebix-ls-event-hero__inner--has-detail-video {
		max-width: none;
		width: 100%;
		padding-inline: clamp(1.25rem, 5vw, 3rem);
	}
}

/* Detail video sits on the 100vh hero background: desktop right column; mobile small, above description */
.sitebix-ls-event-hero__layout {
	display: grid;
	width: 100%;
	align-items: start;
	gap: 1rem 1.75rem;
}

.sitebix-ls-event-hero__video {
	min-width: 0;
	width: 100%;
}

.sitebix-ls-event-hero__video-frame {
	padding: 0.5rem 0.6rem;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.sitebix-ls-event-hero__video-el {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
	border-radius: 10px;
	background: #0c0a09;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
	.sitebix-ls-event-hero__layout {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
	}

	.sitebix-ls-event-hero__head {
		grid-row: 1;
	}

	.sitebix-ls-event-hero__video {
		grid-row: 2;
		max-width: 20rem;
		margin-left: 0;
		margin-right: auto;
	}

	.sitebix-ls-event-hero__video-frame {
		padding: 0.4rem 0.5rem;
	}

	.sitebix-ls-event-hero__video-el {
		max-height: 11rem;
		width: 100%;
	}

	.sitebix-ls-event-hero__body {
		grid-row: 3;
	}
}

@media (min-width: 768px) {
	.sitebix-ls-event-hero__layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: auto 1fr;
		column-gap: clamp(1.25rem, 3vw, 2.5rem);
		row-gap: 1rem;
	}

	.sitebix-ls-event-hero__head {
		grid-column: 1;
		grid-row: 1;
	}

	.sitebix-ls-event-hero__body {
		grid-column: 1;
		grid-row: 2;
	}

	.sitebix-ls-event-hero__video {
		grid-column: 2;
		grid-row: 1 / -1;
		align-self: start;
		position: sticky;
		top: 1.5rem;
		min-width: 0;
	}

	/* Promo / detail video: wide column, but never taller than most of the viewport. */
	.sitebix-ls-event-hero__layout .sitebix-ls-event-hero__video-frame {
		overflow: hidden;
	}

	.sitebix-ls-event-hero__layout .sitebix-ls-event-hero__video-el {
		max-height: min(58vh, 620px);
		width: 100%;
		height: auto;
		object-fit: contain;
		vertical-align: middle;
	}
}

.sitebix-ls-event-hero__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sitebix-ls-event-accent);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.sitebix-ls-event-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 5.5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	color: #fff;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.sitebix-ls-event-hero__desc {
	margin: 0 0 1.25rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
	max-width: 38rem;
}

.sitebix-ls-event-hero__desc p {
	margin: 0 0 0.65rem;
}

.sitebix-ls-event-hero__desc p:last-child {
	margin-bottom: 0;
}

.sitebix-ls-event-hero__status {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #fef3c7;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.sitebix-ls-event-hero__status--muted {
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
}

.sitebix-ls-event-hero__lede {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
	max-width: 36rem;
}

.sitebix-ls-event-hero__schedule {
	margin: 0 0 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sitebix-ls-event-hero__stack {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.85rem;
	margin-bottom: 1.15rem;
}

.sitebix-ls-event-hero .sitebix-ls-countdown--hero {
	margin: 0;
	max-width: 22rem;
	text-align: left;
	padding: 1.1rem 1.25rem 1.2rem;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.sitebix-ls-event-hero .sitebix-ls-countdown--hero .sitebix-ls-countdown__label {
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sitebix-ls-event-hero .sitebix-ls-countdown--hero .sitebix-ls-countdown__value {
	margin: 0.35rem 0 0;
	color: #fff;
	font-size: clamp(1.65rem, 4vw, 2.15rem);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.sitebix-ls-event-hero .sitebix-ls-countdown--hero .sitebix-ls-countdown__schedule {
	margin: 0.65rem 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

/* Replay gate (Pro): lede + CTAs inside the same dark glass card as the countdown */
.sitebix-ls-event-hero .sitebix-ls-replay-gate-card .sitebix-ls-replay-gate__lede {
	margin: 0 0 0.85rem;
	max-width: none;
	font-size: 0.9rem;
	line-height: 1.45;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.88);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.sitebix-ls-event-hero .sitebix-ls-replay-gate-card .sitebix-ls-replay-gate__cta {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.sitebix-ls-event-hero .sitebix-ls-replay-gate-card .sitebix-ls-event-hero__btn--compact {
	padding: 0.5rem 1rem 0.55rem;
	border-radius: 10px;
	box-shadow:
		0 2px 0 #92400e,
		0 8px 18px rgba(0, 0, 0, 0.38);
}

.sitebix-ls-event-hero .sitebix-ls-replay-gate-card .sitebix-ls-event-hero__btn--compact:hover {
	transform: translateY(-1px);
	box-shadow:
		0 3px 0 #92400e,
		0 12px 26px rgba(0, 0, 0, 0.45);
}

.sitebix-ls-event-hero .sitebix-ls-replay-gate-card .sitebix-ls-event-hero__btn--compact .sitebix-ls-event-hero__btn-text {
	font-size: 0.78rem;
	letter-spacing: 0.06em;
}

.sitebix-ls-event-hero .sitebix-ls-replay-gate-card .sitebix-ls-event-hero__btn--alt.sitebix-ls-event-hero__btn--compact {
	border-width: 1px;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2), 0 8px 18px rgba(0, 0, 0, 0.35);
}

.sitebix-ls-event-hero .sitebix-ls-replay-gate-card .sitebix-ls-event-hero__btn--alt.sitebix-ls-event-hero__btn--compact:hover {
	box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2), 0 10px 22px rgba(0, 0, 0, 0.42);
}

.sitebix-ls-event-hero__price {
	margin: 0 0 1.1rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.sitebix-ls-event-hero__price-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.65);
	margin-right: 0.35rem;
}

.sitebix-ls-event-hero__price .woocommerce-Price-amount {
	color: var(--sitebix-ls-event-accent);
}

.sitebix-ls-event-hero__price .woocommerce-Price-currencySymbol {
	font-size: 0.72em;
	font-weight: 600;
	vertical-align: 0.06em;
	color: var(--sitebix-ls-event-accent);
	opacity: 0.88;
}

.sitebix-ls-event-hero__price .sitebix-ls-price-currency-code {
	font-size: 0.72em;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	vertical-align: 0.06em;
	margin-left: 0.15em;
	white-space: nowrap;
	color: var(--sitebix-ls-event-accent);
	opacity: 0.88;
}

.sitebix-ls-event-hero__cta {
	margin-top: 0.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.sitebix-ls-event-hero__btn {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
	padding: 0.95rem 1.65rem 1.05rem;
	text-decoration: none;
	color: #0c0a09;
	background: linear-gradient(165deg, #fde68a 0%, #fbbf24 40%, #f59e0b 100%);
	border: 2px solid rgba(180, 83, 9, 0.85);
	border-radius: 12px;
	font-weight: 800;
	box-shadow:
		0 4px 0 #92400e,
		0 16px 36px rgba(0, 0, 0, 0.45);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sitebix-ls-event-hero__btn:hover {
	color: #0c0a09;
	transform: translateY(-2px);
	box-shadow:
		0 6px 0 #92400e,
		0 20px 44px rgba(0, 0, 0, 0.5);
}

.sitebix-ls-event-hero__btn-text {
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sitebix-ls-event-hero__btn-sub {
	font-size: 0.72rem;
	font-weight: 600;
	opacity: 0.88;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Live show single: slightly tighter ticket / checkout CTAs */
body.single-sitebix_show .sitebix-ls-event-hero__btn {
	padding: 0.78rem 1.35rem 0.88rem;
	border-radius: 11px;
}

body.single-sitebix_show .sitebix-ls-event-hero__btn:not(.sitebix-ls-event-hero__btn--wallet):not(.sitebix-ls-event-hero__btn--alt) {
	box-shadow:
		0 3px 0 #92400e,
		0 12px 28px rgba(0, 0, 0, 0.4);
}

body.single-sitebix_show .sitebix-ls-event-hero__btn:not(.sitebix-ls-event-hero__btn--wallet):not(.sitebix-ls-event-hero__btn--alt):hover {
	box-shadow:
		0 5px 0 #92400e,
		0 16px 36px rgba(0, 0, 0, 0.48);
}

body.single-sitebix_show .sitebix-ls-event-hero__btn-text {
	font-size: 0.95rem;
	letter-spacing: 0.035em;
}

body.single-sitebix_show .sitebix-ls-event-hero__btn-sub {
	font-size: 0.68rem;
}

/* Wallet balance covers ticket — distinct from gold “Get ticket” */
.sitebix-ls-event-hero__btn--wallet {
	background: linear-gradient(165deg, #6ee7b7 0%, #10b981 40%, #059669 100%);
	border-color: rgba(6, 78, 59, 0.9);
	box-shadow:
		0 4px 0 #065f46,
		0 16px 36px rgba(0, 0, 0, 0.45);
}

.sitebix-ls-event-hero__btn--wallet:hover {
	color: #0c0a09;
	transform: translateY(-2px);
	box-shadow:
		0 6px 0 #065f46,
		0 20px 44px rgba(0, 0, 0, 0.5);
}

.sitebix-ls-event-hero__btn--alt {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.88);
	color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
}

.sitebix-ls-event-hero__btn--alt:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.sitebix-ls-event-hero__btn--alt .sitebix-ls-event-hero__btn-sub {
	opacity: 0.92;
}

.sitebix-ls-event-hero__purchased {
	margin: 1.1rem 0 0;
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1.1rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ecfdf5;
	background: rgba(16, 185, 129, 0.35);
	border: 1px solid rgba(52, 211, 153, 0.55);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.sitebix-ls-event-hero__free-show {
	margin: 1.1rem 0 0;
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1.1rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #e0f2fe;
	background: rgba(56, 189, 248, 0.22);
	border: 1px solid rgba(125, 211, 252, 0.5);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Hero ticket / replay links — same theme underline issue */
a.sitebix-ls-event-hero__btn,
a.sitebix-ls-event-hero__btn:hover,
a.sitebix-ls-event-hero__btn:focus,
a.sitebix-ls-event-hero__btn:focus-visible,
a.sitebix-ls-event-hero__btn:active,
a.sitebix-ls-event-hero__btn:visited,
.sitebix-ls-event-hero__btn-text,
.sitebix-ls-event-hero__btn-sub {
	text-decoration: none !important;
	text-decoration-line: none !important;
}

