/**
 * TrialX Webinar - Frontend styles
 */

.txw {
	--txw-primary: #0000FF;
	--txw-primary-dark: #0000CC;
	--txw-accent: #3366FF;
	--txw-bg: #f6f7fb;
	--txw-card: #ffffff;
	--txw-text: #1f2937;
	--txw-muted: #6b7280;
	--txw-border: #e5e7eb;
	--txw-radius: 14px;
	--txw-shadow: 0 6px 24px rgba(31, 41, 55, 0.08);
	color: var(--txw-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.55;
	box-sizing: border-box;
}

.txw *,
.txw *::before,
.txw *::after {
	box-sizing: border-box;
}

/* Buttons — match TrialX.com primary CTA (solid #0000ff pill + arrow) */
.txw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #0000ff;
	color: #fff !important;
	text-decoration: none !important;
	border: 0;
	border-radius: 30px;
	padding: 11px 21px;
	min-height: 50px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: normal;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, margin 0.2s ease;
	box-shadow: none;
}

.txw-btn::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 12px;
	flex: 0 0 18px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 16' fill='none'%3E%3Cpath d='M26.7071 8.70711C27.0976 8.31658 27.0976 7.68342 26.7071 7.29289L20.3431 0.928932C19.9526 0.538408 19.3195 0.538408 18.9289 0.928932C18.5384 1.31946 18.5384 1.95262 18.9289 2.34315L23.5858 7H1C0.447715 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H23.5858L18.9289 13.6569C18.5384 14.0474 18.5384 14.6805 18.9289 15.0711C19.3195 15.4616 19.9526 15.4616 20.3431 15.0711L26.7071 8.70711Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 16' fill='none'%3E%3Cpath d='M26.7071 8.70711C27.0976 8.31658 27.0976 7.68342 26.7071 7.29289L20.3431 0.928932C19.9526 0.538408 19.3195 0.538408 18.9289 0.928932C18.5384 1.31946 18.5384 1.95262 18.9289 2.34315L23.5858 7H1C0.447715 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H23.5858L18.9289 13.6569C18.5384 14.0474 18.5384 14.6805 18.9289 15.0711C19.3195 15.4616 19.9526 15.4616 20.3431 15.0711L26.7071 8.70711Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform 0.2s ease;
}

.txw-btn:hover {
	background: #010101;
	color: #fff !important;
	transform: none;
	box-shadow: none;
}

.txw-btn:hover::after {
	transform: translateX(4px);
}

.txw-btn:disabled,
.txw-btn-disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}

.txw-btn-lg {
	padding: 14px 28px;
	font-size: 18px;
	min-height: 54px;
}

.txw-btn-block {
	width: 100%;
}

.txw-btn-ghost {
	background: transparent;
	color: #0000ff !important;
	border: 1.5px solid #0000ff;
	box-shadow: none;
}

.txw-btn-ghost:hover {
	background: #010101;
	border-color: #010101;
	color: #fff !important;
}

/* Notices */
.txw-notice {
	background: #eef2ff;
	border: 1px solid #dbe1ff;
	color: #3730a3;
	padding: 16px 18px;
	border-radius: var(--txw-radius);
	margin: 12px 0;
}

.txw-notice-error {
	background: #fef2f2;
	border-color: #fecaca;
	color: #b91c1c;
}

.txw-notice-admin {
	background: #fffbeb;
	border-color: #fde68a;
	color: #92400e;
}

/* Plugin page shell (themes without page.php) */
.txw-page-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 110px 24px 56px;
}

/* Extra breathing room below fixed theme headers on webinar pages */
.txw-single {
	padding-top: 8px;
}

.txw-single-head {
	margin-bottom: 28px;
}

.txw-page-header {
	margin-bottom: 24px;
}

.txw-page-title {
	font-size: 32px;
	font-weight: 800;
	margin: 0;
}

.txw-page-content {
	min-height: 120px;
}

/* Status pills */
.txw-status-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	background: #eef2ff;
	color: var(--txw-primary);
}

.txw-status-live {
	background: #fee2e2;
	color: #dc2626;
	animation: txw-pulse 1.6s infinite;
}

.txw-status-completed {
	background: #f1f5f9;
	color: #64748b;
}

.txw-status-scheduled {
	background: #ecfdf5;
	color: #059669;
}

.txw-status-draft {
	background: #fef3c7;
	color: #b45309;
}

@keyframes txw-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

/* -------- Webinar list -------- */
.txw-list-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.txw-card-item {
	background: var(--txw-card);
	border-radius: var(--txw-radius);
	overflow: hidden;
	box-shadow: var(--txw-shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.txw-card-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(31, 41, 55, 0.12);
}

.txw-card-media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--txw-primary), var(--txw-accent));
	overflow: hidden;
}

.txw-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.txw-card-media-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.txw-card-media .txw-status-pill {
	position: absolute;
	top: 12px;
	left: 12px;
}

.txw-card-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.txw-card-heading {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
}

.txw-card-meta {
	margin: 0;
	font-size: 14px;
	color: var(--txw-muted);
}

.txw-card-desc {
	margin: 6px 0 14px;
	font-size: 14px;
	color: var(--txw-text);
	flex: 1;
}

.txw-card-content .txw-btn {
	align-self: flex-start;
	margin-top: auto;
}

/* -------- Registration form -------- */
.txw-register-card {
	background: var(--txw-card);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--txw-shadow);
	max-width: 640px;
	margin: 0 auto;
}

.txw-register-banner {
	aspect-ratio: 21 / 9;
	overflow: hidden;
}

.txw-register-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.txw-register-body {
	padding: 30px;
}

.txw-register-title {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 800;
}

.txw-register-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	color: var(--txw-muted);
	font-size: 14px;
}

.txw-register-meta li {
	margin: 0;
}

.txw-register-desc {
	margin-bottom: 20px;
	color: var(--txw-text);
	font-size: 15px;
}

/* Speakers block (registration + shared) */
.txw-speakers-block {
	margin: 4px 0 22px;
}

.txw-speakers-heading {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--txw-muted);
}

.txw-speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 12px;
}

.txw-speaker-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f8f8fc;
	border: 1px solid var(--txw-border);
	border-radius: 12px;
	padding: 10px 14px;
}

.txw-speaker-avatar {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--txw-primary), var(--txw-accent));
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}

.txw-speaker-avatar-fallback {
	line-height: 48px;
	text-align: center;
}

.txw-speaker-meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.txw-speaker-name {
	font-weight: 700;
	font-size: 15px;
	color: var(--txw-text);
}

.txw-speaker-role {
	font-size: 13px;
	color: var(--txw-muted);
}

/* Single page: full speaker profiles (image | name + role + bio) */
.txw-speakers-detail {
	margin-top: 28px;
}

.txw-speakers-detail-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--txw-border);
	border-radius: 16px;
	overflow: hidden;
	background: var(--txw-card, #fff);
	box-shadow: var(--txw-shadow);
}

.txw-speaker-detail {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 24px;
	padding: 24px;
	border-bottom: 1px solid var(--txw-border);
	align-items: start;
}

.txw-speaker-detail:last-child {
	border-bottom: none;
}

.txw-speaker-detail-photo {
	flex-shrink: 0;
}

.txw-speaker-detail-photo img,
.txw-speaker-detail-fallback {
	display: block;
	width: 160px;
	height: 160px;
	border-radius: 14px;
	object-fit: cover;
}

.txw-speaker-detail-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--txw-primary), var(--txw-accent));
	color: #fff;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
}

.txw-speaker-detail-body {
	min-width: 0;
}

.txw-speaker-detail-name {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 800;
	color: var(--txw-text);
	line-height: 1.3;
}

.txw-speaker-detail-role {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 600;
	color: var(--txw-primary);
	line-height: 1.4;
}

.txw-speaker-detail-bio {
	font-size: 15px;
	line-height: 1.65;
	color: var(--txw-text);
}

.txw-speaker-detail-bio p {
	margin: 0 0 10px;
}

.txw-speaker-detail-bio p:last-child {
	margin-bottom: 0;
}

@media (max-width: 600px) {
	.txw-speaker-detail {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: center;
	}

	.txw-speaker-detail-photo {
		display: flex;
		justify-content: center;
	}

	.txw-speaker-detail-photo img,
	.txw-speaker-detail-fallback {
		width: 120px;
		height: 120px;
	}

	.txw-speaker-detail-fallback {
		font-size: 36px;
	}
}

/* Room speaker list */
.txw-room-speaker {
	padding: 10px 0;
	border-bottom: 1px solid var(--txw-border);
}

.txw-room-speaker:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.txw-room-speaker-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.txw-room-speaker-bio {
	margin: 8px 0 0;
	font-size: 13px;
}

.txw-form-field {
	margin-bottom: 16px;
}

.txw-form-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
}

.txw-form-field input,
.txw-form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--txw-border);
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	background: #fff;
	color: var(--txw-text);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.txw-form-field input:focus,
.txw-form-field textarea:focus {
	outline: none;
	border-color: var(--txw-primary);
	box-shadow: 0 0 0 3px rgba(91, 61, 245, 0.15);
}

.txw-req {
	color: #dc2626;
}

.txw-optional {
	color: var(--txw-muted);
	font-weight: 400;
	font-size: 12px;
}

.txw-form-message {
	display: none;
	padding: 12px 16px;
	border-radius: 10px;
	margin-bottom: 16px;
	font-size: 14px;
}

.txw-form-message.txw-show {
	display: block;
}

.txw-form-message.txw-success {
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
}

.txw-form-message.txw-error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

/* -------- Webinar room -------- */
.txw-room {
	background: var(--txw-bg);
	border-radius: 18px;
	padding: 24px;
}

.txw-room-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}

.txw-room-title {
	margin: 0 0 6px;
	font-size: 26px;
	font-weight: 800;
}

.txw-room-sub {
	color: var(--txw-muted);
	font-size: 14px;
}

.txw-sep {
	margin: 0 6px;
}

.txw-room-main {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
}

.txw-room-stage {
	background: #0f172a;
	border-radius: 14px;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.txw-video-wrap,
.txw-video-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.txw-video-embed iframe,
.txw-video-el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.txw-video-el {
	background: #000;
	object-fit: contain;
}

.txw-video-link {
	padding: 40px;
	text-align: center;
	color: #e2e8f0;
}

.txw-custom-embed {
	width: 100%;
}

.txw-room-placeholder {
	padding: 50px 30px;
	text-align: center;
	color: #e2e8f0;
}

.txw-room-placeholder h2 {
	color: #fff;
	margin: 0 0 20px;
	font-size: 24px;
}

.txw-room-note {
	color: #94a3b8;
	font-size: 14px;
	margin-top: 20px;
}

/* Countdown */
.txw-countdown {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.txw-cd-block {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 16px 18px;
	min-width: 78px;
}

.txw-cd-num {
	display: block;
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.txw-cd-label {
	display: block;
	font-size: 12px;
	color: #94a3b8;
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Room side */
.txw-room-side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.txw-room-panel {
	background: var(--txw-card);
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--txw-shadow);
}

.txw-room-panel h3 {
	margin: 0 0 10px;
	font-size: 17px;
}

.txw-room-instructions {
	margin: 10px 0 0;
	padding-left: 18px;
	color: var(--txw-text);
	font-size: 14px;
}

.txw-room-instructions li {
	margin-bottom: 6px;
}

.txw-muted {
	color: var(--txw-muted);
}

/* Access denied */
.txw-access-denied {
	text-align: left;
	padding: 28px 28px 30px;
	background: #fff;
	border: 1px solid rgba(0, 0, 255, 0.1);
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
	max-width: none;
	margin: 0 0 28px;
}

.txw-access-denied__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border-radius: 16px;
	background: rgba(0, 0, 255, 0.06);
	color: #0000ff;
}

.txw-access-denied__title {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--txw-text);
}

.txw-access-denied__text {
	margin: 0 0 22px;
	max-width: 42em;
	color: var(--txw-muted);
	font-size: 16px;
	line-height: 1.6;
}

.txw-access-denied__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.txw-room--locked {
	padding: 24px 0 40px;
}

.txw-room--locked .txw-access-denied,
.txw-replay-locked .txw-access-denied {
	max-width: 640px;
	margin: 0 auto;
}

.txw-replay-locked {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: min(62vh, 560px);
	padding: 48px 0 64px;
}

.txw-room--locked .txw-access-denied__text {
	margin-left: auto;
	margin-right: auto;
}

.txw-room--locked .txw-access-denied__actions {
	justify-content: center;
}

.txw-lock {
	font-size: 52px;
	margin-bottom: 10px;
}

.txw-access-denied h2 {
	margin: 0 0 12px;
	font-size: 24px;
}

/* Replay */
.txw-replay-desc {
	margin-top: 20px;
	background: var(--txw-card);
	padding: 20px;
	border-radius: 14px;
	box-shadow: var(--txw-shadow);
}

/* Single webinar landing page */
.txw-single-hero {
	margin-bottom: 28px;
}

.txw-single-banner {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 26px;
	overflow: hidden;
	border: 1px solid #d8dde8;
	background: linear-gradient(135deg, #0c1a7a 0%, #0913ff 100%);
}

.txw-single-banner-img,
.txw-single-banner img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.txw-single-banner-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 32px;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 500;
	letter-spacing: -0.04em;
	text-align: center;
}

.txw-single-banner-pill {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 1;
}

.txw-single-banner--video {
	background: #0b1220;
}

.txw-single-banner-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.txw-single-banner-video .txw-video-wrap,
.txw-single-banner-video .txw-video-embed,
.txw-single-banner-video .txw-custom-embed,
.txw-single-banner-video .txw-video-link {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	margin: 0;
	border-radius: 0;
}

.txw-single-banner-video .txw-video-embed iframe,
.txw-single-banner-video .txw-video-el,
.txw-single-banner-video video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
	background: #000;
}

.txw-single-banner-video .txw-video-link {
	display: grid;
	place-items: center;
	padding: 24px;
	background: linear-gradient(135deg, #0c1a7a 0%, #0913ff 100%);
}

.txw-single-layout--full {
	grid-template-columns: minmax(0, 1fr);
	width: 100%;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}

.txw-sidebar-webinars {
	background: #fff;
	border: 1px solid rgba(91, 61, 245, 0.08);
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
	padding: 18px;
}

.txw-single-aside .txw-register-card + .txw-sidebar-webinars {
	margin-top: 18px;
}

.txw-sidebar-webinars-title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #151937;
}

.txw-sidebar-webinars-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.txw-sidebar-webinar-link {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 14px;
	text-decoration: none !important;
	color: inherit;
	background: #f7f9fc;
	border: 1px solid transparent;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.txw-sidebar-webinar-link:hover,
.txw-sidebar-webinar-link:focus {
	background: #fff;
	border-color: #d8dde8;
	transform: translateY(-1px);
}

.txw-sidebar-webinar.is-upcoming .txw-sidebar-webinar-link {
	background: linear-gradient(180deg, #f4f6ff 0%, #eef2ff 100%);
	border-color: rgba(9, 19, 255, 0.12);
}

.txw-sidebar-webinar-thumb {
	display: block;
	width: 72px;
	height: 54px;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(135deg, #0c1a7a 0%, #0913ff 100%);
}

.txw-sidebar-webinar-thumb img,
.txw-sidebar-webinar-thumb-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.txw-sidebar-webinar-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.txw-sidebar-webinar-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 8px;
}

.txw-sidebar-webinar-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.txw-sidebar-webinar-badge--upcoming {
	background: #e8ecff;
	color: #0913ff;
}

.txw-sidebar-webinar-badge--replay {
	background: #eef2f7;
	color: #475569;
}

.txw-sidebar-webinar-date {
	font-size: 12px;
	color: var(--txw-muted);
}

.txw-sidebar-webinar-name {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #151937;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.txw-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
	gap: 36px;
	align-items: start;
}

.txw-single-title {
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 800;
	margin: 8px 0 16px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.txw-single-meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.txw-single-meta li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--txw-text);
	margin: 0;
}

.txw-single-actions {
	margin-top: 20px;
}

.txw-btn-sm {
	padding: 9px 18px;
	font-size: 14px;
	min-height: 42px;
	box-shadow: none;
}

.txw-single-countdown--ended {
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
}

.txw-ended-card .txw-btn {
	margin-top: 16px;
}

.txw-meta-ico {
	display: inline-flex;
	color: var(--txw-primary);
	margin-top: 1px;
	flex-shrink: 0;
}

/* Countdown on single page */
.txw-single-countdown {
	margin: 28px 0;
	padding: 22px 24px;
	border-radius: 18px;
	background: linear-gradient(135deg, #000066 0%, #0000CC 55%, #0000FF 100%);
	color: #fff;
	box-shadow: 0 14px 34px rgba(91, 61, 245, 0.28);
}

.txw-single-countdown-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.78;
	margin-bottom: 14px;
}

.txw-countdown--single {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	flex-wrap: wrap;
}

.txw-countdown--single .txw-cd-block {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	padding: 14px 16px;
	min-width: 74px;
	text-align: center;
}

.txw-countdown--single .txw-cd-num {
	font-size: 32px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	color: #fff;
}

.txw-countdown--single .txw-cd-label {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.72);
}

.txw-cd-sep {
	font-size: 26px;
	font-weight: 700;
	opacity: 0.45;
	padding-bottom: 14px;
}

.txw-single-countdown--live,
.txw-single-countdown--ended {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 20px;
}

.txw-single-countdown--ended {
	background: #f1f5f9;
	color: #475569;
	box-shadow: none;
}

.txw-live-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ef4444;
	box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
	animation: txw-live-pulse 1.4s infinite;
}

@keyframes txw-live-pulse {
	0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
	70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
	100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.txw-single-section {
	margin-top: 32px;
}

.txw-single-section-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--txw-muted);
	margin: 0 0 14px;
}

.txw-single-desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--txw-text);
}

.txw-single-desc p {
	margin: 0 0 14px;
}

.txw-single-desc p:last-child {
	margin-bottom: 0;
}

.txw-single-aside {
	position: relative;
}

.txw-single-aside-sticky {
	position: sticky;
	top: 110px;
}

.txw-single-aside .txw-register-card,
.txw-ended-card {
	margin: 0;
	box-shadow: 0 12px 32px rgba(31, 41, 55, 0.1);
	border: 1px solid rgba(91, 61, 245, 0.08);
}

.txw-single-aside .txw-register-banner {
	display: none;
}

.txw-ended-card {
	background: #fff;
	border-radius: 18px;
	padding: 24px;
}

.txw-register--compact .txw-register-title {
	font-size: 22px;
	margin-bottom: 18px;
}

.txw-register--compact .txw-register-body {
	padding: 24px;
}

/* Responsive */
@media (max-width: 960px) {
	.txw-single-banner {
		border-radius: 20px;
	}

	.txw-single-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.txw-single-aside-sticky {
		position: static;
		top: auto;
	}

	.txw-countdown--single .txw-cd-block {
		min-width: 64px;
		padding: 12px;
	}

	.txw-countdown--single .txw-cd-num {
		font-size: 26px;
	}

	.txw-cd-sep {
		display: none;
	}
}

@media (max-width: 782px) {
	.txw-page-wrap {
		padding-top: 88px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.txw-access-denied {
		padding: 22px 20px 24px;
	}

	.txw-access-denied__title {
		font-size: 20px;
	}

	.txw-access-denied__actions .txw-btn {
		width: 100%;
	}

	.txw-room-main {
		grid-template-columns: 1fr;
	}
	.txw-room-header {
		flex-direction: column;
	}
	.txw-register-body {
		padding: 22px;
	}
	.txw-room {
		padding: 16px;
	}
}
