/*
 * NSFF Shared UI System
 * Central visual layer for Filmmaker Directory, Team Portal, and Judge Portal.
 * This file owns shared colors, shared shell behavior, shared status colors,
 * and the judge portal layout. Older per-section overrides should not be added
 * below fct-directory.css again.
 */

:root {
	--fct-shared-content-width: 1360px;
	--fct-shared-hero-height: 460px;

	--nsff-bg: #05080d;
	--nsff-bg-soft: #080d14;
	--nsff-surface: #0d1522;
	--nsff-surface-2: #111d2d;
	--nsff-surface-3: #162538;
	--nsff-text: #f8fafc;
	--nsff-text-soft: #dbeafe;
	--nsff-muted: #a9b7c9;
	--nsff-muted-2: #73839a;
	--nsff-ice: #d7ecfb;
	--nsff-ice-2: #a6c5e7;
	--nsff-blue: #60a5fa;
	--nsff-border: rgba(166, 197, 231, .18);
	--nsff-border-soft: rgba(166, 197, 231, .11);
	--nsff-border-strong: rgba(166, 197, 231, .32);
	--nsff-pending: #f59e0b;
	--nsff-done: #10b981;
	--nsff-expired: #ef4444;
	--nsff-radius: 16px;
	--nsff-radius-sm: 10px;
	--nsff-shadow: 0 28px 70px rgba(0, 0, 0, .42);
	--nsff-shadow-soft: 0 14px 34px rgba(0, 0, 0, .28);
	--nsff-panel-bg: linear-gradient(180deg, rgba(13, 21, 34, .94), rgba(8, 13, 20, .98));
	--nsff-panel-bg-soft: rgba(13, 21, 34, .72);
	--nsff-field-bg: rgba(5, 8, 13, .76);
	--nsff-focus-ring: rgba(166, 197, 231, .16);
	--nsff-hero-image: url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=2000&q=80");

	--fct-black: var(--nsff-bg);
	--fct-black-2: var(--nsff-bg-soft);
	--fct-black-3: var(--nsff-surface);
	--fct-cream: var(--nsff-text-soft);
	--fct-white: var(--nsff-text);
	--fct-muted: var(--nsff-muted);
	--fct-muted-2: var(--nsff-muted-2);
	--fct-gold: var(--nsff-ice-2);
	--fct-gold-2: var(--nsff-ice);
	--fct-gold-dark: #5d7895;
	--fct-border: var(--nsff-border);
	--fct-border-soft: var(--nsff-border-soft);
	--fct-surface: var(--nsff-surface);
	--fct-surface-2: var(--nsff-surface-2);
	--fct-radius: var(--nsff-radius);
	--fct-radius-sm: var(--nsff-radius-sm);
	--fct-shadow: var(--nsff-shadow);
	--fct-shadow-soft: var(--nsff-shadow-soft);
}

/* Shared page shell */
.fct-seamless-cinematic,
.fct-directory,
.fct-directory-profile-form,
.fct-public-profile,
[data-fct-team-page="1"],
.fct-judge-page-wrap {
	background: var(--nsff-bg);
	color: var(--nsff-text);
}

.fct-seamless-cinematic,
.fct-seamless-cinematic * {
	box-sizing: border-box;
}

.fct-cinema-content,
[data-fct-team-page="1"] .fct-cinema-content,
.fct-judge-page-wrap .fct-cinema-content {
	width: min(var(--fct-shared-content-width), calc(100vw - 56px));
	max-width: var(--fct-shared-content-width);
	margin-left: auto;
	margin-right: auto;
}

.fct-cinema-content {
	padding-top: 58px;
	padding-bottom: 78px;
}

/* Shared full-width shells used by Team Portal and Judge Portal */
[data-fct-team-page="1"].fct-team-portal-shell,
.fct-team-portal-shell[data-fct-team-page="1"],
.fct-my-teams[data-fct-team-page="1"],
.fct-payment-locked[data-fct-team-page="1"],
.fct-judge-page-wrap {
	display: block;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

/* Shared hero behavior */
.fct-cinema-hero,
[data-fct-team-page="1"] .fct-directory-style-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: var(--fct-shared-hero-height);
	height: var(--fct-shared-hero-height);
	width: 100vw;
	max-width: none;
	margin: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: clamp(72px, 8vw, 118px) max(28px, calc((100vw - var(--fct-shared-content-width)) / 2 + 28px));
	border: 0;
	border-radius: 0;
	background:
		linear-gradient(90deg, rgba(5, 8, 13, .96) 0%, rgba(8, 13, 20, .82) 42%, rgba(5, 8, 13, .62) 100%),
		linear-gradient(180deg, rgba(5, 8, 13, .10), rgba(5, 8, 13, .88)),
		var(--nsff-hero-image);
	background-size: cover;
	background-position: center;
	box-shadow: inset 0 -1px 0 var(--nsff-border);
}

.fct-cinema-hero-bg,
.fct-cinema-hero-profile .fct-cinema-hero-bg {
	background:
		linear-gradient(90deg, rgba(5, 8, 13, .96) 0%, rgba(8, 13, 20, .82) 42%, rgba(5, 8, 13, .62) 100%),
		linear-gradient(180deg, rgba(5, 8, 13, .10), rgba(5, 8, 13, .88)),
		var(--nsff-hero-image);
	background-size: cover;
	background-position: center;
	opacity: 1;
}

.fct-cinema-hero:before,
[data-fct-team-page="1"] .fct-directory-style-hero:before:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(circle at 18% 22%, rgba(166, 197, 231, .16), transparent 32%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 92px);
	pointer-events: none;
}

.fct-cinema-hero:after,
[data-fct-team-page="1"] .fct-directory-style-hero:after:after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 46%;
	z-index: 0;
	background: linear-gradient(0deg, rgba(5, 8, 13, .94), transparent);
	pointer-events: none;
}

.fct-cinema-hero-inner,
[data-fct-team-page="1"] .fct-team-hero-inner {
	position: relative;
	z-index: 2;
	width: min(var(--fct-shared-content-width), calc(100vw - 56px));
	max-width: var(--fct-shared-content-width);
	margin: 0 auto;
	padding: 0;
}

.fct-cinema-copy,
[data-fct-team-page="1"] .fct-team-hero-inner > * > * {
	max-width: 790px;
}

.fct-cinema-kicker,
.fct-team-hero-kicker,
.fct-casting-kicker,
.fct-card-kicker,
.fct-panel-kicker,
.fct-count-label,
.fct-stat-label,
.fct-selected-title,
.fct-judge-admin-mode-label {
	color: var(--nsff-ice-2);
}

.fct-cinema-hero h2,
.fct-directory-style-hero h1 {
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(46px, 7vw, 86px);
	font-weight: 900;
	line-height: .94;
	letter-spacing: -.045em;
	text-shadow: 0 18px 42px rgba(0, 0, 0, .52);
}

.fct-cinema-hero p,
.fct-directory-style-hero p {
	color: var(--nsff-text-soft);
	font-weight: 650;
}

/* Shared surfaces */
.fct-panel,
.fct-card,
.fct-directory-card,
.fct-team-card,
.fct-task-card,
.fct-task-group,
.fct-progress-card,
.fct-share-card,
.fct-dashboard-poster,
.fct-judge-page-wrap .fct-integrated-nav,
.fct-judge-page-wrap .fct-film-card,
.fct-judge-page-wrap .fct-item-card,
.fct-judge-page-wrap .fct-rank-card,
.fct-judge-page-wrap .fct-favorite-card,
.fct-judge-page-wrap .fct-peer-results-card,
.fct-judge-page-wrap .fct-peer-results-panel,
.fct-judge-page-wrap .fct-award-main-player-card,
.fct-judge-page-wrap .fct-award-selection-panel,
.fct-judge-page-wrap .fct-award-ballot,
.fct-judge-page-wrap .fct-award-side-list,
.fct-judge-page-wrap .fct-award-playlist-wrap,
.fct-judge-page-wrap .fct-scoreboard-card,
.fct-judge-page-wrap .fct-score-detail-view,
.fct-judge-page-wrap .fct-personal-favorites-panel,
.fct-judge-page-wrap .fct-nominations-panel,
.fct-judge-page-wrap .fct-judge-notice {
	background: var(--nsff-surface);
	border: 1px solid var(--nsff-border);
	box-shadow: var(--nsff-shadow-soft);
}

.fct-panel,
.fct-card,
.fct-directory-card,
.fct-task-card,
.fct-progress-card,
.fct-share-card,
.fct-judge-page-wrap .fct-film-card,
.fct-judge-page-wrap .fct-item-card,
.fct-judge-page-wrap .fct-rank-card,
.fct-judge-page-wrap .fct-favorite-card,
.fct-judge-page-wrap .fct-peer-results-card,
.fct-judge-page-wrap .fct-peer-results-panel,
.fct-judge-page-wrap .fct-award-main-player-card,
.fct-judge-page-wrap .fct-award-selection-panel,
.fct-judge-page-wrap .fct-award-side-list,
.fct-judge-page-wrap .fct-scoreboard-card {
	border-radius: var(--nsff-radius);
}

.fct-muted,
.fct-card-sub,
.fct-team-card-sub,
.fct-directory-meta,
.fct-judge-page-wrap .fct-film-team,
.fct-judge-page-wrap .fct-film-leader,
.fct-judge-page-wrap .fct-award-sub-title-small,
.fct-judge-page-wrap .fct-peer-results-note,
.fct-judge-page-wrap .fct-scoreboard-team {
	color: var(--nsff-muted);
}

/* Shared buttons, inputs, tabs */
.fct-btn,
.fct-action-btn,
.fct-watch-btn,
.fct-vote-btn,
.fct-howto-ghost-btn {
	border-color: var(--nsff-border-strong);
	background: var(--nsff-surface-2);
	color: var(--nsff-text);
	border-radius: var(--nsff-radius-sm);
	box-shadow: none;
}

.fct-btn:hover,
.fct-action-btn:hover,
.fct-watch-btn:hover,
.fct-vote-btn:hover,
.fct-howto-ghost-btn:hover {
	border-color: var(--nsff-ice-2);
	background: var(--nsff-surface-3);
	color: #ffffff;
}

.fct-action-primary,
.fct-btn:not(.fct-btn-secondary):not(.fct-btn-danger),
.fct-vote-btn.is-selected,
.fct-vote-btn:hover {
	border-color: rgba(166, 197, 231, .50);
	background: linear-gradient(180deg, rgba(166, 197, 231, .24), rgba(166, 197, 231, .12));
	color: #ffffff;
}

.fct-btn-danger {
	border-color: rgba(239, 68, 68, .55);
	background: rgba(239, 68, 68, .12);
	color: #fecaca;
}

.fct-input,
.fct-directory-search,
.fct-judge-page-wrap input[type="text"],
.fct-judge-page-wrap input[type="search"],
.fct-judge-page-wrap textarea,
.fct-judge-page-wrap select,
[data-fct-team-page="1"] input[type="text"],
[data-fct-team-page="1"] input[type="search"],
[data-fct-team-page="1"] textarea,
[data-fct-team-page="1"] select {
	background: rgba(5, 8, 13, .78);
	border: 1px solid var(--nsff-border);
	color: var(--nsff-text);
	border-radius: var(--nsff-radius-sm);
}

.fct-input:focus,
.fct-directory-search:focus,
.fct-judge-page-wrap input:focus,
.fct-judge-page-wrap textarea:focus,
.fct-judge-page-wrap select:focus,
[data-fct-team-page="1"] input:focus,
[data-fct-team-page="1"] textarea:focus,
[data-fct-team-page="1"] select:focus {
	border-color: var(--nsff-ice-2);
	box-shadow: 0 0 0 3px rgba(166, 197, 231, .16);
	outline: none;
}

.fct-tabs,
.fct-team-tabs,
.fct-dash-tabs {
	background: rgba(5, 8, 13, .55);
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	overflow: hidden;
}

.fct-tab,
.fct-dash-tab {
	color: var(--nsff-text-soft);
	border-color: var(--nsff-border-soft);
}

.fct-tab:hover,
.fct-tab.is-active,
.fct-dash-tab:hover,
.fct-dash-tab.is-active,
.fct-dash-tabs button.is-active {
	background: var(--nsff-surface-2);
	color: #ffffff;
	border-color: var(--nsff-border-strong);
}

/* Shared status colors */
.fct-badge,
.fct-status-banner-target,
.fct-mobile-status,
.fct-count-pill,
.fct-nav-item,
.fct-dot {
	--fct-status-color: var(--nsff-muted-2);
	--fct-status-bg: rgba(115, 131, 154, .12);
	--fct-status-border: rgba(115, 131, 154, .34);
}

.is-new,
.is-pending,
.is-prog,
.is-progress,
.is-pay,
.st-yellow,
.st-grey,
.fct-badge.is-new,
.fct-badge.is-prog,
.fct-badge.is-pay,
.fct-dot.is-new,
.fct-dot.is-prog {
	--fct-status-color: var(--nsff-pending);
	--fct-status-bg: rgba(245, 158, 11, .12);
	--fct-status-border: rgba(245, 158, 11, .44);
}

.is-done,
.is-finished,
.is-complete,
.is-submitted,
.is-approved,
.st-green,
.fct-badge.is-done,
.fct-badge.is-complete,
.fct-dot.is-done {
	--fct-status-color: var(--nsff-done);
	--fct-status-bg: rgba(16, 185, 129, .12);
	--fct-status-border: rgba(16, 185, 129, .44);
}

.is-expired,
.is-overdue,
.is-closed,
.is-danger,
.st-red,
.fct-badge.is-expired,
.fct-dot.is-expired {
	--fct-status-color: var(--nsff-expired);
	--fct-status-bg: rgba(239, 68, 68, .13);
	--fct-status-border: rgba(239, 68, 68, .48);
}

.fct-badge,
.fct-status-banner-target,
.fct-mobile-status,
.fct-count-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 5px 9px;
	border: 1px solid var(--fct-status-border);
	background: var(--fct-status-bg);
	color: var(--fct-status-color);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-team-card.is-done,
.fct-film-card.is-done,
.fct-nav-item.is-done {
	border-color: var(--nsff-done);
}

.fct-team-card.is-prog,
.fct-film-card.is-prog,
.fct-team-card.is-pay,
.fct-nav-item.is-prog,
.fct-nav-item.is-new {
	border-color: var(--nsff-pending);
}

.fct-team-card.is-expired,
.fct-task-card.is-expired,
.fct-nav-item.is-expired {
	border-color: var(--nsff-expired);
}

/* Team progress cards */
.fct-progress-card {
	padding: 18px;
	overflow: hidden;
}

.fct-progress-track,
.fct-progress-bar,
.fct-progress-card .fct-progress-bar {
	width: 100%;
	height: 10px;
	border-radius: 999px;
	background: rgba(5, 8, 13, .68);
	border: 1px solid var(--nsff-border-soft);
	overflow: hidden;
}

.fct-progress-fill,
.fct-progress-bar-fill,
.fct-progress-card .fct-progress-bar-fill {
	display: block;
	height: 100%;
	max-width: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--nsff-ice-2), var(--nsff-blue));
}


/* ==========================================================================
   Judge Portal shared layout layer
   ========================================================================== */

.fct-judge-page-wrap {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	background: var(--nsff-bg);
	color: var(--nsff-text);
	isolation: isolate;
}

.fct-judge-page-wrap .fct-judge-portal-shell.fct-cinema-content,
.fct-judge-page-wrap .fct-judge-top-nav-shell.fct-cinema-content {
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	overflow: visible;
}

.fct-judge-page-wrap .fct-judge-top-nav-shell.fct-cinema-content {
	padding-top: clamp(34px, 4vw, 56px);
	padding-bottom: 0;
	position: relative;
	z-index: 100000;
}

.fct-judge-page-wrap .fct-judge-top-nav-shell + .fct-judge-portal-shell.fct-cinema-content {
	padding-top: clamp(30px, 4vw, 50px);
}

.fct-judge-page-wrap .fct-judge-dashboard-view,
.fct-judge-page-wrap .fct-judge-all-films-view,
.fct-judge-page-wrap .fct-judge-list-view,
.fct-judge-page-wrap .fct-dashboard-container,
.fct-judge-page-wrap .fct-award-page-view,
.fct-judge-page-wrap .fct-judge-single-view,
.fct-judge-page-wrap .fct-score-detail-view {
	display: grid;
	gap: clamp(20px, 2.4vw, 32px);
}

/* Integrated judge navigation */
.fct-judge-page-wrap .fct-integrated-nav {
	position: relative;
	z-index: 100001;
	padding: 0;
	border-radius: 0;
	overflow: visible;
	background: var(--nsff-panel-bg);
	border: 1px solid var(--nsff-border);
	box-shadow: var(--nsff-shadow-soft);
}

.fct-judge-page-wrap .fct-integrated-nav-meta,
.fct-judge-page-wrap .fct-nav-upper-row,
.fct-judge-page-wrap .fct-nav-search-fluid {
	padding-left: clamp(16px, 2vw, 28px);
	padding-right: clamp(16px, 2vw, 28px);
}

.fct-judge-page-wrap .fct-integrated-nav-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 58px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nsff-text-soft);
	border-bottom: 1px solid var(--nsff-border-soft);
}

.fct-judge-page-wrap .fct-integrated-nav-meta-right {
	display: flex;
	align-items: center;
	gap: 14px;
	position: relative;
	z-index: 100002;
}

.fct-judge-page-wrap .fct-nav-upper-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
	gap: 16px;
	border-bottom: 1px solid var(--nsff-border-soft);
}

.fct-judge-page-wrap .fct-judge-tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 0;
	border-radius: 0;
	background: transparent;
	overflow: visible;
}

.fct-judge-page-wrap .fct-judge-tabs .fct-tab {
	min-height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 0;
	border-right: 1px solid var(--nsff-border-soft);
	border-radius: 0;
	background: transparent;
	color: var(--nsff-text-soft);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .02em;
}

.fct-judge-page-wrap .fct-judge-tabs .fct-tab:last-child {
	border-right: 0;
}

.fct-judge-page-wrap .fct-judge-tabs .fct-tab:hover,
.fct-judge-page-wrap .fct-judge-tabs .fct-tab.is-active {
	background: var(--nsff-surface-2);
	color: var(--nsff-text);
	box-shadow: inset 0 -2px 0 var(--nsff-ice-2);
}

.fct-judge-page-wrap .fct-nav-side-action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 10px 0;
}

.fct-judge-page-wrap .fct-nav-search-fluid {
	position: relative;
	padding-top: 16px;
	padding-bottom: 16px;
}

.fct-judge-page-wrap #fct_judge_search {
	width: 100%;
	min-height: 54px;
	padding: 0 48px 0 18px;
	font-size: 16px;
	font-weight: 750;
	background: var(--nsff-field-bg);
	border-color: var(--nsff-border);
}

.fct-judge-page-wrap .fct-nav-search-icon {
	position: absolute;
	right: clamp(32px, 3vw, 48px);
	top: 50%;
	transform: translateY(-50%);
	color: var(--nsff-muted);
	pointer-events: none;
}

/* Admin mode dropdown */
.fct-judge-mode-dock {
	position: relative;
	z-index: 100003;
}

.fct-judge-mode-trigger {
	list-style: none;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	min-width: 190px;
	padding: 9px 13px;
	border: 1px solid var(--nsff-border-strong);
	border-radius: var(--nsff-radius-sm);
	background: var(--nsff-panel-bg-soft);
	cursor: pointer;
}

.fct-judge-mode-trigger::-webkit-details-marker {
	display: none;
}

.fct-judge-mode-trigger-kicker,
.fct-judge-mode-trigger-label {
	display: block;
	line-height: 1;
	text-transform: uppercase;
}

.fct-judge-mode-trigger-kicker {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .14em;
	color: var(--nsff-ice-2);
}

.fct-judge-mode-trigger-label {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .08em;
	color: var(--nsff-text);
}

.fct-judge-mode-dock[open] .fct-judge-mode-trigger-icon {
	transform: rotate(90deg);
}

.fct-judge-mode-panel {
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	z-index: 100004;
	width: min(380px, calc(100vw - 36px));
	padding: 18px;
	background: var(--nsff-surface);
	border: 1px solid var(--nsff-border-strong);
	border-radius: var(--nsff-radius);
	box-shadow: var(--nsff-shadow);
}

.fct-judge-mode-panel-head h3 {
	margin: 4px 0 8px;
	font-size: 21px;
	color: var(--nsff-text);
}

.fct-judge-mode-panel-head p {
	margin: 0 0 14px;
	color: var(--nsff-muted);
	font-size: 13px;
	line-height: 1.5;
}

.fct-judge-admin-mode-actions {
	display: grid;
	gap: 10px;
}

.fct-judge-mode-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 13px;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius-sm);
	background: var(--nsff-field-bg);
	color: var(--nsff-text);
	text-decoration: none;
	font-weight: 850;
}

.fct-judge-mode-option.is-active {
	border-color: var(--nsff-ice-2);
	background: rgba(166, 197, 231, .14);
}

.fct-judge-mode-option strong {
	padding: 4px 7px;
	border-radius: 999px;
	background: rgba(166, 197, 231, .16);
	color: var(--nsff-text);
	font-size: 10px;
	text-transform: uppercase;
}

.fct-judge-admin-reset-form {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--nsff-border-soft);
}

.fct-judge-admin-reset-form .fct-btn {
	width: 100%;
}

/* Shared judge panels */
.fct-judge-page-wrap .fct-panel,
.fct-judge-page-wrap .fct-progress-card,
.fct-judge-page-wrap .fct-item-card,
.fct-judge-page-wrap .fct-rank-card,
.fct-judge-page-wrap .fct-award-bg,
.fct-judge-page-wrap .fct-selected-slot,
.fct-judge-page-wrap .fct-award-selection-panel,
.fct-judge-page-wrap .fct-award-main-player-card,
.fct-judge-page-wrap .fct-award-side-list,
.fct-judge-page-wrap .fct-award-playlist-wrap,
.fct-judge-page-wrap .fct-peer-results-card,
.fct-judge-page-wrap .fct-peer-results-stat,
.fct-judge-page-wrap .fct-peer-results-table-wrap,
.fct-judge-page-wrap .fct-peer-comment,
.fct-judge-page-wrap .fct-scoreboard-card,
.fct-judge-page-wrap .fct-score-detail-panel {
	background: var(--nsff-panel-bg);
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	box-shadow: var(--nsff-shadow-soft);
	color: var(--nsff-text);
}

.fct-judge-page-wrap .fct-panel-header,
.fct-judge-page-wrap .fct-dash-header,
.fct-judge-page-wrap .fct-award-main-player-head,
.fct-judge-page-wrap .fct-peer-results-card-head {
	padding: 16px 18px;
	border-bottom: 1px solid var(--nsff-border-soft);
	background: rgba(166, 197, 231, .055);
}

.fct-judge-page-wrap .fct-panel-body,
.fct-judge-page-wrap .fct-peer-results-card-body {
	padding: 18px;
}

.fct-judge-page-wrap h1,
.fct-judge-page-wrap h2,
.fct-judge-page-wrap h3,
.fct-judge-page-wrap h4,
.fct-judge-page-wrap .fct-main-title,
.fct-judge-page-wrap .fct-film-title,
.fct-judge-page-wrap .fct-item-label,
.fct-judge-page-wrap .fct-award-main-title,
.fct-judge-page-wrap .fct-award-main-title-small,
.fct-judge-page-wrap .fct-selected-name,
.fct-judge-page-wrap .fct-selected-name span,
.fct-judge-page-wrap .fct-card-title,
.fct-judge-page-wrap .fct-rank-film {
	color: var(--nsff-text);
}

.fct-judge-page-wrap .fct-muted,
.fct-judge-page-wrap .fct-sub-title,
.fct-judge-page-wrap .fct-card-sub,
.fct-judge-page-wrap .fct-film-team,
.fct-judge-page-wrap .fct-film-leader,
.fct-judge-page-wrap .fct-award-sub-title-small,
.fct-judge-page-wrap .fct-panel-subtitle,
.fct-judge-page-wrap .fct-rank-team,
.fct-judge-page-wrap .fct-scoreboard-team {
	color: var(--nsff-muted);
}

/* All films list */
.fct-judge-page-wrap .fct-judge-list-inner,
.fct-judge-page-wrap .fct-dashboard-body {
	display: grid;
	gap: clamp(18px, 2.2vw, 28px);
}

.fct-judge-page-wrap .fct-judge-list-summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: end;
}

.fct-judge-page-wrap .fct-judge-list-title {
	color: var(--nsff-text);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 950;
	line-height: 1.05;
	letter-spacing: -.035em;
}

.fct-judge-page-wrap .fct-judge-list-counts,
.fct-judge-page-wrap .fct-nav-legend,
.fct-judge-page-wrap .fct-scoreboard-summary,
.fct-judge-page-wrap .fct-peer-results-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 10px;
}

.fct-judge-page-wrap .fct-judge-status-count,
.fct-judge-page-wrap .fct-judge-special-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: fit-content;
	padding: 5px 9px;
	border: 1px solid var(--fct-status-border, var(--nsff-border));
	background: var(--fct-status-bg, rgba(115, 131, 154, .12));
	color: var(--fct-status-color, var(--nsff-muted));
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-judge-page-wrap .fct-judge-films-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 420px));
	justify-content: start;
	gap: 16px;
	align-items: stretch;
}

.fct-judge-page-wrap .fct-judge-section-separator {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
	padding: 8px 0 12px;
	border-bottom: 1px solid var(--nsff-border);
}

.fct-judge-page-wrap .fct-judge-section-separator-label {
	color: var(--nsff-text);
	font-size: 18px;
	font-weight: 950;
}

.fct-judge-page-wrap .fct-judge-section-separator-count {
	color: var(--nsff-ice-2);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-judge-page-wrap .fct-film-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	grid-template-areas:
		"poster info"
		"poster status";
	min-height: 132px;
	max-width: 420px;
	width: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.fct-judge-page-wrap .fct-film-card:hover {
	transform: translateY(-2px);
	border-color: var(--nsff-border-strong);
}

.fct-judge-page-wrap .fct-film-poster {
	grid-area: poster;
	width: 92px;
	height: 132px;
	background: var(--nsff-field-bg);
	overflow: hidden;
	border-right: 1px solid var(--nsff-border-soft);
}

.fct-judge-page-wrap .fct-film-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fct-judge-page-wrap .fct-film-info {
	grid-area: info;
	min-width: 0;
	padding: 16px 16px 6px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.fct-judge-page-wrap .fct-film-status-col {
	grid-area: status;
	min-width: 0;
	padding: 0 16px 16px;
	display: flex;
	align-items: end;
	justify-content: flex-start;
}

.fct-judge-page-wrap .fct-mobile-status {
	display: none;
}

.fct-judge-page-wrap .fct-film-title,
.fct-judge-page-wrap .fct-card-title,
.fct-judge-page-wrap .fct-rank-film,
.fct-judge-page-wrap .fct-score-film-title {
	min-width: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.18;
	max-height: 2.36em;
	font-weight: 950;
}

.fct-judge-page-wrap .fct-film-team,
.fct-judge-page-wrap .fct-film-leader,
.fct-judge-page-wrap .fct-card-sub,
.fct-judge-page-wrap .fct-rank-team {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fct-judge-page-wrap .is-fct-hidden {
	display: none !important;
}

/* Category dashboard */
.fct-judge-page-wrap .fct-progress-card {
	padding: 0;
	overflow: hidden;
}

.fct-judge-page-wrap .fct-progress-body {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: clamp(20px, 2.2vw, 30px);
}

.fct-judge-page-wrap .fct-main-title {
	margin: 0;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.08;
}

.fct-judge-page-wrap .fct-sub-title {
	margin: 8px 0 0;
	line-height: 1.5;
}

.fct-judge-page-wrap .fct-stat-group {
	text-align: right;
}

.fct-judge-page-wrap .fct-stat-value,
.fct-judge-page-wrap .fct-count-val {
	display: block;
	color: var(--nsff-text);
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 950;
	line-height: 1;
}

.fct-judge-page-wrap .fct-progress-bar-bg {
	height: 14px;
	margin: 0 clamp(20px, 2.2vw, 30px) clamp(20px, 2.2vw, 30px);
	padding: 2px;
	border: 1px solid var(--nsff-border-soft);
	border-radius: 999px;
	background: var(--nsff-field-bg);
	overflow: hidden;
}

.fct-judge-page-wrap .fct-progress-bar-fill {
	display: block;
	height: 100%;
	max-width: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--nsff-ice-2), var(--nsff-done));
}

.fct-judge-page-wrap .fct-tab-container,
.fct-judge-page-wrap .fct-dash-tabs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 0;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: var(--nsff-field-bg);
	overflow: hidden;
}

.fct-judge-page-wrap .fct-full-tab,
.fct-judge-page-wrap .fct-dash-tab {
	min-height: 50px;
	padding: 0 16px;
	border: 0;
	border-right: 1px solid var(--nsff-border-soft);
	border-radius: 0;
	background: transparent;
	color: var(--nsff-text-soft);
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
	text-decoration: none;
}

.fct-judge-page-wrap .fct-full-tab:last-child,
.fct-judge-page-wrap .fct-dash-tab:last-child {
	border-right: 0;
}

.fct-judge-page-wrap .fct-full-tab.is-active,
.fct-judge-page-wrap .fct-full-tab:hover,
.fct-judge-page-wrap .fct-dash-tab.is-active,
.fct-judge-page-wrap .fct-dash-tab:hover {
	background: var(--nsff-surface-2);
	color: var(--nsff-text);
	box-shadow: inset 0 -2px 0 var(--nsff-ice-2);
}

.fct-judge-page-wrap .fct-tab-view:not(.active),
.fct-judge-page-wrap .fct-tab-view[hidden],
.fct-peer-results-panel.is-hidden,
.fct-peer-results-panel[hidden] {
	display: none !important;
}

.fct-judge-page-wrap .fct-grid,
.fct-judge-page-wrap .fct-dash-grid,
.fct-judge-page-wrap .fct-grid-4 {
	display: grid;
	gap: 16px;
}

.fct-judge-page-wrap .fct-grid,
.fct-judge-page-wrap .fct-dash-grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.fct-judge-page-wrap .fct-grid-4 {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
}

.fct-judge-page-wrap .fct-item-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	min-height: 112px;
	padding: 20px;
	text-decoration: none;
}

.fct-judge-page-wrap .fct-item-card:hover,
.fct-judge-page-wrap .fct-rank-card:hover,
.fct-judge-page-wrap .fct-award-bg:hover {
	transform: translateY(-2px);
	border-color: var(--nsff-border-strong);
}

.fct-judge-page-wrap .fct-item-label {
	font-size: 17px;
	font-weight: 950;
	line-height: 1.2;
}

.fct-judge-page-wrap .fct-item-status {
	margin-top: 6px;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--fct-status-color, var(--nsff-muted));
}

.fct-judge-page-wrap .fct-item-indicator {
	font-size: 22px;
	font-weight: 900;
	color: var(--nsff-ice-2);
}

/* Award voting */
.fct-judge-page-wrap .fct-award-page-view {
	display: grid;
	gap: 22px;
}

.fct-judge-page-wrap .fct-award-nav-header,
.fct-judge-page-wrap .fct-award-bottom-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.fct-judge-page-wrap .fct-award-nav-title {
	font-size: clamp(20px, 2.5vw, 30px);
	font-weight: 950;
	color: var(--nsff-text);
	text-align: center;
}

.fct-judge-page-wrap .fct-award-nav-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.fct-judge-page-wrap .fct-award-vote-status {
	min-height: 0;
}

.fct-judge-page-wrap .fct-award-desktop-only-warning {
	padding: 14px 16px;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius-sm);
	background: rgba(245, 158, 11, .10);
	color: var(--nsff-text-soft);
	line-height: 1.55;
}

.fct-judge-page-wrap .fct-award-desktop-only-warning strong {
	display: block;
	color: var(--nsff-text);
	margin-bottom: 4px;
}

.fct-judge-page-wrap .fct-selected-slot {
	padding: 18px;
}

.fct-judge-page-wrap .fct-selected-empty,
.fct-judge-page-wrap .fct-selected-saved-label {
	margin-top: 8px;
	color: var(--nsff-muted);
	line-height: 1.55;
}

.fct-judge-page-wrap .fct-selected-name-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.fct-judge-page-wrap .fct-selected-check {
	color: var(--nsff-done);
	font-weight: 950;
}

.fct-judge-page-wrap .fct-award-playlist-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
	gap: 24px;
	align-items: start;
}

.fct-judge-page-wrap .fct-award-main-player-card,
.fct-judge-page-wrap .fct-award-side-list {
	padding: 18px;
}

.fct-judge-page-wrap .fct-award-main-player-head {
	margin: -18px -18px 18px;
}

.fct-judge-page-wrap .fct-award-main-title {
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 950;
	line-height: 1.1;
}

.fct-judge-page-wrap .fct-award-main-subtitle {
	margin-top: 8px;
	color: var(--nsff-muted);
	line-height: 1.5;
}

.fct-judge-page-wrap .fct-award-main-media,
.fct-judge-page-wrap .fct-media-box,
.fct-judge-page-wrap .fct-award-photo-large,
.fct-judge-page-wrap .fct-award-image-frame,
.fct-judge-page-wrap .fct-award-poster-preview {
	border-radius: var(--nsff-radius-sm);
	background: var(--nsff-field-bg);
	border: 1px solid var(--nsff-border-soft);
	overflow: hidden;
}

.fct-judge-page-wrap .fct-award-main-media iframe,
.fct-judge-page-wrap .fct-award-main-media video,
.fct-judge-page-wrap .fct-media-box iframe,
.fct-judge-page-wrap .fct-media-box video {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	display: block;
}

.fct-judge-page-wrap .fct-award-image-frame img,
.fct-judge-page-wrap .fct-award-poster-preview img {
	width: 100%;
	height: auto;
	display: block;
}

.fct-judge-page-wrap .fct-award-selected-photo-box {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	padding: 18px;
	border: 1px solid var(--nsff-border-soft);
	border-radius: var(--nsff-radius-sm);
	background: rgba(166, 197, 231, .055);
}

.fct-judge-page-wrap .fct-performer-photo-large,
.fct-judge-page-wrap .fct-award-photo-large,
.fct-judge-page-wrap .fct-award-photo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 150px;
	border-radius: var(--nsff-radius-sm);
	background: var(--nsff-field-bg);
	border: 1px solid var(--nsff-border-soft);
	color: var(--nsff-muted);
	overflow: hidden;
}

.fct-judge-page-wrap .fct-performer-photo-thumb,
.fct-judge-page-wrap .fct-award-photo-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: var(--nsff-radius-sm);
	background: var(--nsff-field-bg);
	border: 1px solid var(--nsff-border-soft);
	color: var(--nsff-muted);
	flex: 0 0 70px;
	overflow: hidden;
}

.fct-judge-page-wrap .fct-performer-photo-large img,
.fct-judge-page-wrap .fct-performer-photo-thumb img,
.fct-judge-page-wrap .fct-award-photo-large img,
.fct-judge-page-wrap .fct-award-photo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.fct-judge-page-wrap .fct-award-side-list {
	display: grid;
	gap: 12px;
	max-height: 72vh;
	overflow: auto;
}

.fct-judge-page-wrap .fct-award-card,
.fct-judge-page-wrap .fct-award-card-redesign {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius-sm);
	background: var(--nsff-field-bg);
}

.fct-judge-page-wrap .fct-award-card.is-previewing,
.fct-judge-page-wrap .fct-award-card-redesign.is-previewing {
	border-color: var(--nsff-ice-2);
	background: rgba(166, 197, 231, .10);
}

.fct-judge-page-wrap .fct-award-card.is-selected,
.fct-judge-page-wrap .fct-award-card-redesign.is-selected {
	border-color: var(--nsff-done);
	background: rgba(16, 185, 129, .10);
}

.fct-judge-page-wrap .fct-award-card-copy {
	min-width: 0;
}

.fct-judge-page-wrap .fct-award-main-title-small {
	font-weight: 900;
	line-height: 1.24;
}

.fct-judge-page-wrap .fct-award-list-actions {
	grid-column: 1 / -1;
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

/* Review dashboard */
.fct-judge-page-wrap .fct-dash-header {
	padding: 0;
	border: 0;
	background: transparent;
}

.fct-judge-page-wrap .fct-dash-tabs {
	max-width: 560px;
}

.fct-judge-page-wrap .fct-award-bg {
	padding: 18px;
	display: grid;
	gap: 8px;
	min-height: 170px;
	align-content: start;
}

.fct-judge-page-wrap .fct-card-kicker,
.fct-judge-page-wrap .fct-panel-kicker {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--nsff-ice-2);
}

.fct-judge-page-wrap .fct-card-score {
	margin-top: auto;
	color: var(--nsff-text-soft);
	font-weight: 800;
}

.fct-judge-page-wrap .fct-mini-link {
	margin-top: auto;
	color: var(--nsff-ice-2);
	font-weight: 900;
	text-decoration: none;
}

.fct-judge-page-wrap .fct-rank-list,
.fct-judge-page-wrap .fct-scoreboard-list,
.fct-judge-page-wrap .fct-nomination-list,
.fct-judge-page-wrap .fct-peer-comments-list {
	display: grid;
	gap: 16px;
}

.fct-judge-page-wrap .fct-rank-card {
	padding: 18px;
	text-decoration: none;
	display: grid;
	gap: 14px;
}

.fct-judge-page-wrap .fct-rank-main {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
}

.fct-judge-page-wrap .fct-rank-num {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--nsff-field-bg);
	border: 1px solid var(--nsff-border-soft);
	color: var(--nsff-ice-2);
	font-weight: 950;
}

.fct-judge-page-wrap .fct-score-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 62px;
	min-height: 42px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(166, 197, 231, .14);
	border: 1px solid var(--nsff-border-strong);
	color: var(--nsff-text);
	font-weight: 950;
}

.fct-judge-page-wrap .fct-rank-details {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
	gap: 10px;
}

.fct-judge-page-wrap .fct-cat-box {
	display: grid;
	gap: 4px;
	min-height: 66px;
	padding: 10px;
	border-radius: var(--nsff-radius-sm);
	border: 1px solid var(--nsff-border-soft);
	background: var(--nsff-field-bg);
}

.fct-judge-page-wrap .fct-cat-label {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--nsff-muted);
}

.fct-judge-page-wrap .fct-cat-val {
	font-size: 18px;
	font-weight: 950;
	color: var(--nsff-text);
}

.fct-judge-page-wrap .fct-rank-feedback,
.fct-judge-page-wrap .fct-score-feedback-item,
.fct-judge-page-wrap .fct-peer-comment-text {
	padding: 14px;
	border: 1px solid var(--nsff-border-soft);
	border-radius: var(--nsff-radius-sm);
	background: var(--nsff-field-bg);
	color: var(--nsff-text-soft);
	line-height: 1.55;
}

.fct-judge-page-wrap .fct-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: var(--nsff-text);
	font-size: 22px;
	font-weight: 950;
}

/* Score detail and peer results */
.fct-judge-page-wrap .fct-score-detail-heading {
	display: grid;
	gap: 6px;
}

.fct-judge-page-wrap .fct-score-detail-team {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 950;
	color: var(--nsff-text);
}

.fct-judge-page-wrap .fct-score-total-label {
	color: var(--nsff-muted);
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 12px;
}

.fct-judge-page-wrap .fct-score-total-value {
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 950;
	color: var(--nsff-text);
}

.fct-judge-page-wrap .fct-score-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 10px;
}

.fct-judge-page-wrap .fct-score-detail-label,
.fct-judge-page-wrap .fct-score-detail-value {
	padding: 12px;
	border: 1px solid var(--nsff-border-soft);
	background: var(--nsff-field-bg);
}

.fct-judge-page-wrap .fct-score-detail-label {
	border-radius: var(--nsff-radius-sm) var(--nsff-radius-sm) 0 0;
	color: var(--nsff-muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.fct-judge-page-wrap .fct-score-detail-value {
	border-radius: 0 0 var(--nsff-radius-sm) var(--nsff-radius-sm);
	margin-top: -10px;
	font-weight: 900;
	color: var(--nsff-text);
}

.fct-judge-page-wrap .fct-peer-results-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.fct-judge-page-wrap .fct-peer-results-table {
	width: 100%;
	min-width: 980px;
	border-collapse: collapse;
}

.fct-judge-page-wrap .fct-peer-results-table th,
.fct-judge-page-wrap .fct-peer-results-table td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--nsff-border-soft);
	text-align: left;
	vertical-align: top;
}

.fct-judge-page-wrap .fct-peer-results-table th {
	color: var(--nsff-text-soft);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

/* Single film judging */
.fct-judge-page-wrap .fct-navigator-wrap,
.fct-judge-page-wrap .fct-section,
.fct-judge-page-wrap .fct-judge-form-card,
.fct-judge-page-wrap .fct-sticky-actions,
.fct-judge-page-wrap .fct-control-rules {
	background: var(--nsff-panel-bg);
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	box-shadow: var(--nsff-shadow-soft);
	padding: 18px;
}

.fct-judge-page-wrap .fct-navigator-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0;
}

.fct-judge-page-wrap .fct-nav-item {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--fct-status-border);
	border-radius: 999px;
	background: var(--fct-status-bg);
	color: var(--fct-status-color);
	font-weight: 900;
	text-decoration: none;
}

.fct-judge-page-wrap .fct-nav-item.is-active {
	box-shadow: 0 0 0 3px var(--nsff-focus-ring);
}

.fct-judge-page-wrap .fct-judge-film-nav-row,
.fct-judge-page-wrap .fct-judge-film-nav-actions,
.fct-judge-page-wrap .fct-judge-action-status,
.fct-judge-page-wrap .fct-judge-action-lock,
.fct-judge-page-wrap .fct-judge-action-buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.fct-judge-page-wrap .fct-control-rules-body.is-collapsed {
	display: none;
}

/* How-to modal */
.fct-howto-modal {
	display: none;
}

.fct-howto-modal.is-open {
	display: block;
}

.fct-howto-backdrop {
	position: fixed;
	inset: 0;
	z-index: 999900;
	background: rgba(0, 0, 0, .72);
}

.fct-howto-panel {
	position: fixed;
	z-index: 999901;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(900px, calc(100vw - 36px));
	max-height: calc(100vh - 36px);
	overflow: auto;
	background: var(--nsff-surface);
	border: 1px solid var(--nsff-border-strong);
	border-radius: var(--nsff-radius);
	box-shadow: var(--nsff-shadow);
}

.fct-howto-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--nsff-border-soft);
}

.fct-howto-title {
	font-weight: 900;
	color: var(--nsff-text);
}

.fct-howto-close {
	width: 36px;
	height: 36px;
	border: 1px solid var(--nsff-border);
	border-radius: 999px;
	background: var(--nsff-field-bg);
	color: var(--nsff-text);
	cursor: pointer;
}

.fct-howto-body {
	padding: 18px;
}

.fct-howto-video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
}

.fct-howto-video-frame iframe,
.fct-howto-video-tag {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: var(--nsff-radius-sm);
}

/* Countdown and closed states */
.fct-judge-page-wrap .fct-judge-closed-panel,
.fct-judge-page-wrap .fct-countdown-panel {
	text-align: center;
	padding: clamp(34px, 5vw, 60px) 20px;
	max-width: 680px;
	margin: 0 auto;
}

.fct-judge-page-wrap .fct-empty-icon {
	font-size: 50px;
	line-height: 1;
	margin-bottom: 10px;
}

.fct-judge-page-wrap .fct-countdown-season-head {
	text-align: center;
	margin-bottom: 30px;
}

.fct-judge-page-wrap .fct-countdown-season-head span {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--nsff-text-soft);
	font-weight: 800;
}

.fct-judge-page-wrap .fct-countdown-season-head div {
	font-size: 20px;
	font-weight: 900;
	color: var(--nsff-text);
	margin-top: 4px;
}

.fct-judge-page-wrap .fct-countdown-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	max-width: 420px;
	margin: 0 auto;
}

/* Responsive judge portal */
@media (max-width: 1180px) {
	.fct-judge-page-wrap .fct-award-playlist-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.fct-judge-page-wrap .fct-integrated-nav-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta-right {
		width: 100%;
		justify-content: space-between;
	}

	.fct-judge-page-wrap .fct-nav-upper-row {
		grid-template-columns: 1fr;
	}

	.fct-judge-page-wrap .fct-nav-side-action {
		justify-content: stretch;
	}

	.fct-judge-page-wrap .fct-nav-side-action .fct-btn {
		width: 100%;
	}
}

@media (max-width: 760px) {
	.fct-cinema-content,
	[data-fct-team-page="1"] .fct-cinema-content,
	.fct-judge-page-wrap .fct-cinema-content {
		width: min(100% - 28px, var(--fct-shared-content-width));
	}

	.fct-cinema-hero,
	[data-fct-team-page="1"] .fct-directory-style-hero {
		min-height: 320px;
		padding: 42px 20px;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta,
	.fct-judge-page-wrap .fct-nav-upper-row,
	.fct-judge-page-wrap .fct-nav-search-fluid {
		padding-left: 14px;
		padding-right: 14px;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta-right {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
	}

	.fct-judge-page-wrap .fct-judge-mode-trigger {
		width: 100%;
		min-width: 0;
	}

	.fct-judge-page-wrap .fct-judge-mode-panel {
		right: auto;
		left: 0;
		width: min(420px, calc(100vw - 62px));
	}

	.fct-judge-page-wrap .fct-judge-tabs {
		grid-template-columns: 1fr;
	}

	.fct-judge-page-wrap .fct-judge-tabs .fct-tab,
	.fct-judge-page-wrap .fct-full-tab,
	.fct-judge-page-wrap .fct-dash-tab {
		border-right: 0;
		border-bottom: 1px solid var(--nsff-border-soft);
	}

	.fct-judge-page-wrap .fct-judge-list-summary,
	.fct-judge-page-wrap .fct-progress-body,
	.fct-judge-page-wrap .fct-rank-main,
	.fct-judge-page-wrap .fct-award-selected-photo-box {
		grid-template-columns: 1fr;
	}

	.fct-judge-page-wrap .fct-progress-body,
	.fct-judge-page-wrap .fct-stat-group {
		align-items: flex-start;
		text-align: left;
	}

	.fct-judge-page-wrap .fct-judge-films-grid {
		grid-template-columns: 1fr;
	}

	.fct-judge-page-wrap .fct-film-card {
		max-width: none;
		grid-template-columns: 84px minmax(0, 1fr);
		min-height: 120px;
	}

	.fct-judge-page-wrap .fct-film-poster {
		width: 84px;
		height: 120px;
	}

	.fct-judge-page-wrap .fct-film-status-col {
		display: none;
	}

	.fct-judge-page-wrap .fct-mobile-status {
		display: inline-flex;
	}

	.fct-judge-page-wrap .fct-performer-photo-large,
	.fct-judge-page-wrap .fct-award-photo-large,
	.fct-judge-page-wrap .fct-award-photo-placeholder {
		width: min(190px, 100%);
		height: 190px;
	}
}

/* ========================================================================== 
   Judge Portal v42.8 seamless background cleanup
   Keeps the judge portal on the same shared background as Directory/Team Portal
   and removes the visual seam between the integrated nav and the page body.
   ========================================================================== */

.fct-judge-page-wrap,
.fct-judge-page-wrap .fct-judge-top-nav-shell.fct-cinema-content,
.fct-judge-page-wrap .fct-judge-portal-shell.fct-cinema-content,
.fct-judge-page-wrap .fct-judge-all-films-view,
.fct-judge-page-wrap .fct-judge-dashboard-view,
.fct-judge-page-wrap .fct-judge-list-view,
.fct-judge-page-wrap .fct-award-page-view,
.fct-judge-page-wrap .fct-score-detail-view,
.fct-judge-page-wrap .fct-dashboard-container {
	background: var(--nsff-bg) !important;
}

.fct-judge-page-wrap .fct-judge-top-nav-shell.fct-cinema-content {
	padding-bottom: 0;
}

.fct-judge-page-wrap .fct-judge-top-nav-shell + .fct-judge-portal-shell.fct-cinema-content {
	padding-top: clamp(28px, 3.5vw, 44px);
	margin-top: 0;
	border-top: 0;
	box-shadow: none;
}

.fct-judge-page-wrap .fct-integrated-nav {
	background: var(--nsff-bg) !important;
	border-color: var(--nsff-border-soft);
	border-bottom: 0;
	box-shadow: none;
}

.fct-judge-page-wrap .fct-nav-search-fluid {
	background: var(--nsff-bg);
	border-bottom: 0;
	box-shadow: none;
}

.fct-judge-page-wrap .fct-nav-search-fluid:after,
.fct-judge-page-wrap .fct-integrated-nav:after,
.fct-judge-page-wrap .fct-judge-portal-shell.fct-cinema-content:before,
.fct-judge-page-wrap .fct-judge-portal-shell.fct-cinema-content:after {
	display: none !important;
	content: none !important;
}

.fct-judge-page-wrap .fct-peer-results-head,
.fct-judge-page-wrap .fct-peer-results-panel,
.fct-judge-page-wrap .fct-peer-results-card,
.fct-judge-page-wrap .fct-peer-results-table-wrap,
.fct-judge-page-wrap .fct-peer-results-card-body {
	background: var(--nsff-surface);
}

.fct-judge-page-wrap .fct-peer-results-card-head {
	background: var(--nsff-surface);
	border-bottom-color: var(--nsff-border-soft);
}

.fct-judge-page-wrap .fct-peer-results-panel {
	border-top: 0;
}

/* ==========================================================================
   Judge Portal v42.9: use the same single fct-cinema-content layout as the
   public filmmaker profile instead of separate nav/body content shells.
   ========================================================================== */

.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
	width: min(var(--fct-shared-content-width), calc(100vw - 56px));
	max-width: var(--fct-shared-content-width);
	margin-left: auto !important;
	margin-right: auto !important;
	padding: clamp(36px, 4vw, 56px) clamp(22px, 3vw, 36px) clamp(64px, 5vw, 84px) !important;
	background:
		linear-gradient(180deg, rgba(166, 197, 231, .026), rgba(166, 197, 231, .010)) !important;
	border-left: 1px solid rgba(166, 197, 231, .055);
	border-right: 1px solid rgba(166, 197, 231, .040);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .025),
		0 20px 60px rgba(0, 0, 0, .10) !important;
	display: grid;
	gap: clamp(28px, 3.5vw, 46px);
	position: relative;
	overflow: visible;
}

.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content::before,
.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content::after {
	display: none !important;
	content: none !important;
}

.fct-judge-page-wrap .fct-judge-content > .fct-judge-portal-shell {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent !important;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.fct-judge-page-wrap .fct-judge-content > .fct-judge-top-nav-shell {
	position: relative;
	z-index: 100000;
}

.fct-judge-page-wrap .fct-judge-content > .fct-judge-top-nav-shell + .fct-judge-portal-shell {
	margin-top: 0;
}

.fct-judge-page-wrap .fct-judge-content .fct-integrated-nav {
	width: 100%;
	margin: 0;
}

.fct-judge-page-wrap .fct-judge-content .fct-judge-dashboard-view,
.fct-judge-page-wrap .fct-judge-content .fct-judge-all-films-view,
.fct-judge-page-wrap .fct-judge-content .fct-judge-list-view,
.fct-judge-page-wrap .fct-judge-content .fct-award-page-view,
.fct-judge-page-wrap .fct-judge-content .fct-judge-single-view {
	background: transparent !important;
	border: 0;
	box-shadow: none;
}

.fct-judge-page-wrap .fct-judge-content .fct-judge-list-summary,
.fct-judge-page-wrap .fct-judge-content .fct-dashboard-body,
.fct-judge-page-wrap .fct-judge-content .fct-award-layout,
.fct-judge-page-wrap .fct-judge-content .fct-peer-results-card,
.fct-judge-page-wrap .fct-judge-content .fct-scoreboard-list {
	position: relative;
	z-index: 1;
}

@media (max-width: 760px) {
	.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
		width: min(100%, calc(100vw - 28px));
		padding: 28px 14px 56px !important;
		gap: 28px;
	}
}

/* ========================================================================== 
   Judge Portal v42.10 focused cleanup
   Keeps the judge portal on the shared cinema content layout while polishing
   the admin dock, list view width, and dashboard background.
   ========================================================================== */

.fct-judge-page-wrap .fct-integrated-nav-meta-right {
	position: relative;
	z-index: 100020;
}

.fct-judge-page-wrap .fct-judge-mode-dock {
	position: relative;
	z-index: 100030;
	margin-left: auto;
}

.fct-judge-page-wrap .fct-judge-mode-trigger {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 18px;
	grid-template-areas:
		"kicker icon"
		"label icon";
	align-items: center;
	column-gap: 12px;
	row-gap: 4px;
	min-width: 230px;
	padding: 11px 14px 12px;
	line-height: 1;
}

.fct-judge-page-wrap .fct-judge-mode-trigger-kicker {
	grid-area: kicker;
	margin: 0;
}

.fct-judge-page-wrap .fct-judge-mode-trigger-label {
	grid-area: label;
	margin: 0;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fct-judge-page-wrap .fct-judge-mode-trigger-icon {
	grid-area: icon;
	align-self: center;
	justify-self: end;
	line-height: 1;
	transition: transform .18s ease;
}

.fct-judge-page-wrap .fct-judge-mode-dock[open] .fct-judge-mode-trigger {
	border-color: var(--nsff-border-strong);
	background: var(--nsff-surface-2);
}

.fct-judge-page-wrap .fct-judge-mode-panel {
	right: 0;
	top: calc(100% + 12px);
	z-index: 100040;
	width: min(390px, calc(100vw - 32px));
	padding: 20px;
	border-radius: var(--nsff-radius);
	background: var(--nsff-panel-bg);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .42), 0 0 0 1px rgba(166, 197, 231, .05);
}

.fct-judge-page-wrap .fct-judge-mode-panel-head {
	display: grid;
	gap: 8px;
	margin-bottom: 16px;
}

.fct-judge-page-wrap .fct-judge-mode-panel-head h3,
.fct-judge-page-wrap .fct-judge-mode-panel-head p {
	margin: 0;
}

.fct-judge-page-wrap .fct-judge-admin-mode-actions {
	gap: 8px;
}

.fct-judge-page-wrap .fct-judge-mode-option {
	min-height: 46px;
	padding: 12px 14px;
}

.fct-judge-page-wrap .fct-judge-admin-reset-form {
	margin-top: 14px;
	padding-top: 14px;
}

.fct-judge-page-wrap .fct-dashboard-container {
	width: 100%;
	max-width: none;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap .fct-judge-content .fct-judge-list-view,
.fct-judge-page-wrap .fct-judge-list-inner,
.fct-judge-page-wrap .fct-judge-films-grid {
	width: 100%;
	max-width: none;
}

.fct-judge-page-wrap .fct-judge-films-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-content: stretch;
	align-items: stretch;
	gap: clamp(14px, 1.7vw, 20px);
}

.fct-judge-page-wrap .fct-film-card {
	max-width: none;
	min-width: 0;
}

.fct-judge-page-wrap .fct-film-info,
.fct-judge-page-wrap .fct-film-status-col {
	min-width: 0;
}

@media (max-width: 1160px) {
	.fct-judge-page-wrap .fct-judge-films-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.fct-judge-page-wrap .fct-integrated-nav-meta-right,
	.fct-judge-page-wrap .fct-judge-mode-dock,
	.fct-judge-page-wrap .fct-judge-mode-trigger {
		width: 100%;
	}

	.fct-judge-page-wrap .fct-judge-mode-trigger {
		min-width: 0;
	}

	.fct-judge-page-wrap .fct-judge-mode-panel {
		left: 0;
		right: auto;
		width: min(100%, calc(100vw - 28px));
	}

	.fct-judge-page-wrap .fct-judge-films-grid {
		grid-template-columns: 1fr;
	}
}


/* ========================================================================== 
   FCT shared UI v42.11: Peer Review Results + judge search stability
   ========================================================================== */

.fct-peer-review-results,
.fct-peer-review-results * {
	box-sizing: border-box;
}

.fct-peer-review-results {
	display: grid;
	gap: clamp(20px, 2.4vw, 30px);
	width: 100%;
	max-width: none;
	padding: clamp(22px, 3vw, 36px) !important;
	background: var(--nsff-panel-bg, var(--nsff-surface)) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: var(--nsff-shadow-soft) !important;
	color: var(--nsff-text);
}

.fct-peer-review-results > * {
	min-width: 0;
}

.fct-peer-results-head {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	gap: clamp(18px, 2.4vw, 28px);
	align-items: start;
	width: 100%;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.fct-peer-results-title-wrap {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.fct-peer-results-title-wrap h3,
.fct-peer-review-results > h3 {
	margin: 0;
	color: var(--nsff-text);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.1;
	letter-spacing: -.03em;
}

.fct-peer-results-title-wrap p,
.fct-peer-review-results > p {
	max-width: 760px;
	margin: 0;
	color: var(--nsff-text-soft);
	font-size: 16px;
	line-height: 1.65;
}

.fct-peer-results-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	margin: 0;
}

.fct-peer-results-stat-grid-inline {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fct-peer-results-stat {
	display: grid;
	align-content: center;
	gap: 5px;
	min-height: 106px;
	padding: 16px;
	background: var(--nsff-surface-2) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius-sm) !important;
	box-shadow: none !important;
}

.fct-peer-results-stat-label {
	color: var(--nsff-ice-2);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .10em;
	line-height: 1.2;
	text-transform: uppercase;
}

.fct-peer-results-stat-value {
	color: var(--nsff-text);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 950;
	letter-spacing: -.035em;
	line-height: 1;
}

.fct-peer-results-stat-note {
	color: var(--nsff-muted);
	font-size: 13px;
	font-weight: 750;
}

.fct-peer-results-tabs.fct-team-tabs,
.fct-peer-results-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 4px;
	background: var(--nsff-surface-2);
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius-sm);
	overflow: hidden;
}

.fct-peer-results-tabs .fct-tab,
.fct-peer-results-tab {
	min-height: 48px;
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border: 0 !important;
	border-radius: calc(var(--nsff-radius-sm) - 3px) !important;
	background: transparent;
	color: var(--nsff-text-soft);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .04em;
	text-align: center;
	text-transform: none;
	cursor: pointer;
}

.fct-peer-results-tabs .fct-tab:hover,
.fct-peer-results-tabs .fct-tab.is-active,
.fct-peer-results-tab:hover,
.fct-peer-results-tab.is-active {
	background: var(--nsff-surface-3) !important;
	color: var(--nsff-text) !important;
	box-shadow: inset 0 -2px 0 var(--nsff-ice-2);
}

.fct-peer-results-panel {
	width: 100%;
	min-width: 0;
	padding: 0;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.fct-peer-results-panel.is-hidden,
.fct-peer-results-panel[hidden] {
	display: none !important;
}

.fct-peer-results-table-wrap {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	background: var(--nsff-surface) !important;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	box-shadow: none !important;
}

.fct-peer-results-table {
	width: 100%;
	min-width: 1120px;
	border-collapse: collapse;
	table-layout: auto;
}

.fct-peer-results-table th,
.fct-peer-results-table td {
	padding: 13px 12px;
	border-bottom: 1px solid var(--nsff-border-soft);
	color: var(--nsff-text);
	font-size: 14px;
	line-height: 1.45;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}

.fct-peer-results-table th {
	position: sticky;
	top: 0;
	z-index: 2;
	background: var(--nsff-surface-2);
	color: var(--nsff-text-soft);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-peer-results-table th:nth-child(2),
.fct-peer-results-table td:nth-child(2),
.fct-peer-results-film-cell {
	min-width: 330px;
	white-space: normal;
}

.fct-peer-results-film-cell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 4px 8px;
	align-items: center;
}

.fct-peer-results-film-cell strong {
	min-width: 0;
	color: var(--nsff-text);
	font-weight: 950;
	line-height: 1.35;
}

.fct-peer-results-film-cell > span:not(.fct-badge) {
	grid-column: 1 / -1;
	color: var(--nsff-muted);
	font-size: 13px;
	line-height: 1.35;
}

.fct-peer-results-table tr.is-own-film td {
	background: rgba(166, 197, 231, .055);
}

.fct-peer-own-badge,
.fct-peer-admin-badge {
	--fct-status-color: var(--nsff-ice-2);
	--fct-status-bg: rgba(166, 197, 231, .12);
	--fct-status-border: rgba(166, 197, 231, .28);
}

.fct-peer-results-score,
.fct-peer-results-rank {
	font-weight: 950;
}

.fct-peer-results-note {
	margin: 12px 0 0;
	color: var(--nsff-muted);
}

.fct-peer-results-card {
	background: var(--nsff-surface) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: none !important;
	overflow: hidden;
}

.fct-peer-results-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	background: var(--nsff-surface-2) !important;
	border-bottom: 1px solid var(--nsff-border-soft);
}

.fct-peer-results-card-head h4,
.fct-peer-results-card-head p {
	margin: 0;
}

.fct-peer-results-card-head h4 {
	color: var(--nsff-text);
	font-size: 20px;
	font-weight: 950;
}

.fct-peer-results-card-head p {
	margin-top: 5px;
	color: var(--nsff-muted);
	font-size: 14px;
	line-height: 1.45;
}

.fct-peer-results-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.fct-peer-results-card-body {
	display: grid;
	gap: 18px;
	padding: 20px;
	background: var(--nsff-surface) !important;
}

.fct-peer-comment-list {
	display: grid;
	gap: 12px;
}

.fct-peer-comment {
	background: var(--nsff-surface-2);
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius-sm);
	overflow: hidden;
}

.fct-peer-comment-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	color: var(--nsff-text);
	font-weight: 900;
	cursor: pointer;
}

.fct-peer-comment-text {
	padding: 0 16px 16px;
	color: var(--nsff-text-soft);
	font-size: 15px;
	line-height: 1.65;
}

.fct-peer-results-empty {
	padding: 20px;
	color: var(--nsff-muted);
	text-align: center;
}

.fct-search-item[hidden],
.fct-judge-section-separator[hidden],
.fct-judge-page-wrap .is-fct-hidden {
	display: none !important;
}

.fct-judge-page-wrap .fct-judge-films-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-content: stretch;
	align-items: stretch;
}

.fct-judge-page-wrap .fct-film-card {
	height: 100%;
	max-width: none;
	min-width: 0;
}

.fct-judge-page-wrap .fct-film-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 2.55em;
	max-height: 2.55em;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid,
.fct-judge-page-wrap .fct-judge-films-grid.is-fct-search-active {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fct-no-search-results {
	grid-column: 1 / -1;
	padding: 18px 20px;
	background: var(--nsff-surface-2);
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius-sm);
	color: var(--nsff-muted);
	font-weight: 800;
	text-align: center;
}

@media (max-width: 1160px) {
	.fct-judge-page-wrap .fct-judge-films-grid,
	.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid,
	.fct-judge-page-wrap .fct-judge-films-grid.is-fct-search-active {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.fct-peer-results-head,
	.fct-peer-results-stat-grid,
	.fct-peer-results-stat-grid-inline {
		grid-template-columns: 1fr;
	}

	.fct-peer-results-card-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.fct-peer-results-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.fct-judge-page-wrap .fct-judge-films-grid,
	.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid,
	.fct-judge-page-wrap .fct-judge-films-grid.is-fct-search-active {
		grid-template-columns: 1fr;
	}

	.fct-peer-review-results {
		padding: 18px !important;
	}

	.fct-peer-results-tabs.fct-team-tabs,
	.fct-peer-results-tabs {
		grid-template-columns: 1fr;
	}
}

/* ========================================================================== 
   FCT shared UI v42.12: Peer results polish + search-safe cards
   ========================================================================== */

.fct-judge-page-wrap .fct-judge-films-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	align-items: stretch !important;
	justify-content: stretch !important;
	gap: clamp(16px, 1.8vw, 22px) !important;
}

.fct-judge-page-wrap .fct-judge-films-grid > .fct-film-card {
	display: grid !important;
	grid-template-columns: 104px minmax(0, 1fr) auto;
	grid-template-areas: "poster info status";
	align-items: stretch;
	min-height: 138px;
	height: 100%;
	max-width: none !important;
	width: 100%;
	padding: 0;
}

.fct-judge-page-wrap .fct-judge-films-grid > .fct-film-card[hidden],
.fct-judge-page-wrap .fct-judge-films-grid > .fct-film-card.is-fct-hidden {
	display: none !important;
}

.fct-judge-page-wrap .fct-film-poster {
	grid-area: poster;
	width: 104px;
	height: 100%;
	min-height: 138px;
	align-self: stretch;
	border-right: 1px solid var(--nsff-border-soft);
}

.fct-judge-page-wrap .fct-film-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fct-judge-page-wrap .fct-film-info {
	grid-area: info;
	min-width: 0;
	padding: 18px 14px 18px 18px;
}

.fct-judge-page-wrap .fct-film-status-col {
	grid-area: status;
	min-width: 96px;
	padding: 18px 16px 18px 0;
	align-items: flex-start;
	justify-content: flex-end;
}

.fct-judge-page-wrap .fct-film-title {
	min-height: 2.5em;
	max-height: 2.5em;
	word-break: normal;
}

.fct-judge-page-wrap .fct-film-team,
.fct-judge-page-wrap .fct-film-leader {
	max-width: 100%;
}

.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.fct-peer-review-results.fct-panel,
.fct-peer-review-results {
	padding: clamp(24px, 3vw, 40px) !important;
	background: var(--nsff-surface) !important;
	border-color: var(--nsff-border) !important;
	border-radius: var(--nsff-radius-lg) !important;
}

.fct-peer-results-head {
	align-items: stretch;
	padding-bottom: clamp(18px, 2vw, 24px);
	border-bottom: 1px solid var(--nsff-border-soft);
}

.fct-peer-results-title-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	min-width: 0;
}

.fct-peer-results-title-wrap h3 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: clamp(24px, 2.6vw, 34px);
}

.fct-peer-results-title-wrap h3::after {
	display: none !important;
}

.fct-peer-results-stat-grid {
	align-items: stretch;
}

.fct-peer-results-stat {
	min-height: 112px;
	padding: 18px;
	background: var(--nsff-surface-2) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
}

.fct-peer-results-tabs.fct-team-tabs,
.fct-peer-results-tabs {
	margin: 0;
	background: var(--nsff-field-bg) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	overflow: hidden;
}

.fct-peer-results-tabs .fct-tab,
.fct-peer-results-tabs button.fct-tab {
	min-height: 52px;
	border-radius: 0 !important;
}

.fct-peer-results-panel {
	min-width: 0;
}

.fct-peer-results-table-wrap {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	background: var(--nsff-surface-2) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
}

.fct-peer-results-table {
	width: 100%;
	min-width: 980px;
	border-collapse: separate;
	border-spacing: 0;
	color: var(--nsff-text);
	font-size: 14px;
	line-height: 1.45;
}

.fct-peer-results-table th,
.fct-peer-results-table td {
	padding: 13px 12px;
	border-bottom: 1px solid var(--nsff-border-soft);
	vertical-align: top;
	text-align: left;
}

.fct-peer-results-table th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: var(--nsff-surface-3, var(--nsff-surface-2));
	color: var(--nsff-text-soft);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.fct-peer-results-table tbody tr:last-child td {
	border-bottom: 0;
}

.fct-peer-results-table tbody tr:hover td {
	background: rgba(166, 197, 231, .045);
}

.fct-peer-results-table tr.is-own-film td {
	background: rgba(166, 197, 231, .08);
}

.fct-peer-results-rank,
.fct-peer-results-score {
	font-weight: 950;
	white-space: nowrap;
}

.fct-peer-results-film-cell {
	min-width: 300px;
	max-width: 420px;
}

.fct-peer-results-film-cell strong {
	display: inline;
	font-weight: 950;
}

.fct-peer-results-film-cell > span:not(.fct-badge) {
	display: block;
	margin-top: 4px;
	color: var(--nsff-muted);
	font-size: 13px;
	line-height: 1.35;
}

@media (max-width: 1160px) {
	.fct-judge-page-wrap .fct-judge-films-grid,
	.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 780px) {
	.fct-judge-page-wrap .fct-judge-films-grid,
	.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid {
		grid-template-columns: 1fr !important;
	}

	.fct-judge-page-wrap .fct-judge-films-grid > .fct-film-card {
		grid-template-columns: 88px minmax(0, 1fr);
		grid-template-areas:
			"poster info"
			"poster status";
	}

	.fct-judge-page-wrap .fct-film-poster {
		width: 88px;
		min-height: 128px;
	}

	.fct-judge-page-wrap .fct-film-status-col {
		min-width: 0;
		padding: 0 14px 16px 16px;
		justify-content: flex-start;
	}

	.fct-peer-review-results.fct-panel,
	.fct-peer-review-results {
		padding: 20px !important;
	}
}

/* ========================================================================== 
   FCT shared UI v42.13: Judge All Films 2-column accessibility cards
   ========================================================================== */

.fct-judge-page-wrap .fct-judge-films-grid,
.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid,
.fct-judge-page-wrap .fct-judge-films-grid.is-fct-search-active {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: clamp(18px, 2vw, 24px) !important;
}

.fct-judge-page-wrap .fct-judge-films-grid > .fct-film-card {
	grid-template-columns: 112px minmax(0, 1fr) !important;
	grid-template-areas: "poster info" !important;
	min-height: 150px !important;
	position: relative;
}

.fct-judge-page-wrap .fct-film-poster {
	width: 112px !important;
	min-height: 150px !important;
}

.fct-judge-page-wrap .fct-film-info {
	padding: 20px 124px 20px 20px !important;
	gap: 8px !important;
	justify-content: center;
}

.fct-judge-page-wrap .fct-film-title {
	font-size: clamp(18px, 1.35vw, 21px);
	line-height: 1.16;
	min-height: auto !important;
	max-height: 2.4em !important;
}

.fct-judge-page-wrap .fct-film-team,
.fct-judge-page-wrap .fct-film-leader {
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fct-judge-page-wrap .fct-film-status-col {
	position: absolute;
	right: 18px;
	bottom: 18px;
	min-width: 0 !important;
	padding: 0 !important;
	align-items: flex-end;
	justify-content: flex-end;
}

.fct-judge-page-wrap .fct-film-status-col .fct-badge {
	max-width: 108px;
	text-align: center;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.fct-judge-page-wrap .fct-judge-films-grid,
	.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid,
	.fct-judge-page-wrap .fct-judge-films-grid.is-fct-search-active {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 560px) {
	.fct-judge-page-wrap .fct-judge-films-grid > .fct-film-card {
		grid-template-columns: 88px minmax(0, 1fr) !important;
		min-height: 126px !important;
	}

	.fct-judge-page-wrap .fct-film-poster {
		width: 88px !important;
		min-height: 126px !important;
	}

	.fct-judge-page-wrap .fct-film-info {
		padding: 16px 18px !important;
	}

	.fct-judge-page-wrap .fct-film-status-col {
		display: none !important;
	}

	.fct-judge-page-wrap .fct-mobile-status {
		display: inline-flex !important;
		width: fit-content;
	}
}

/* ========================================================================== 
   FCT shared UI v42.13.1: Review Dashboard empty state padding
   ========================================================================== */

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-panel.fct-empty-state,
.fct-judge-page-wrap .fct-judge-dashboard-view .fct-empty-state {
	padding: clamp(22px, 2.5vw, 34px) !important;
	margin: 18px 0 !important;
	border: 1px solid var(--fct-border-soft, rgba(148, 163, 184, 0.22));
	border-radius: 16px;
	background: var(--fct-surface, rgba(15, 23, 42, 0.72));
	color: var(--fct-text, #f8fafc);
}

/* ========================================================================== 
   FCT shared UI v42.13.3: Directory baseline for all public portal pages
   --------------------------------------------------------------------------
   Directory, Team Portal, Judge Portal, and Filmmaker profile pages now share
   the same cinematic shell, hero alignment, content width, borders, panels,
   fields, tabs, and status colors from this file.
   ========================================================================== */

:root {
	--fct-shared-content-width: 1360px;
	--fct-shared-hero-height: 460px;
	--nsff-page-bg: #05080d;
	--nsff-page-bg-2: #080d14;
	--nsff-content-bg: linear-gradient(180deg, rgba(166, 197, 231, .032), rgba(166, 197, 231, .010));
	--nsff-panel-bg: linear-gradient(180deg, rgba(17, 24, 39, .88), rgba(11, 18, 32, .92));
	--nsff-panel-bg-soft: rgba(13, 21, 34, .72);
	--nsff-field-bg: rgba(5, 8, 13, .76);
	--nsff-border: rgba(166, 197, 231, .18);
	--nsff-border-soft: rgba(166, 197, 231, .11);
	--nsff-border-strong: rgba(166, 197, 231, .32);
	--nsff-text: #f8fafc;
	--nsff-text-soft: #dbeafe;
	--nsff-muted: #a9b7c9;
	--nsff-ice-2: #a6c5e7;
	--nsff-pending: #f59e0b;
	--nsff-done: #10b981;
	--nsff-expired: #ef4444;
	--nsff-radius: 16px;
	--nsff-radius-sm: 10px;
	--nsff-shadow-soft: 0 18px 40px rgba(0, 0, 0, .24);
	--nsff-shadow: 0 28px 70px rgba(0, 0, 0, .42);
	--nsff-hero-image: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=2000&q=80");
}

.fct-seamless-cinematic,
.fct-directory,
.fct-directory-profile-form,
.fct-public-profile,
[data-fct-team-page="1"],
.fct-judge-page-wrap {
	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	background:
		radial-gradient(circle at 16% 0%, rgba(103, 232, 249, .10), transparent 28%),
		radial-gradient(circle at 84% 6%, rgba(166, 197, 231, .08), transparent 30%),
		linear-gradient(180deg, #070b12 0%, #0d1420 48%, #101827 100%) !important;
	color: var(--nsff-text) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	box-sizing: border-box;
}

.fct-seamless-cinematic *,
.fct-directory *,
.fct-directory-profile-form *,
.fct-public-profile *,
[data-fct-team-page="1"] *,
.fct-judge-page-wrap * {
	box-sizing: border-box;
}

/* One exact hero system for Directory, Team Portal, Judge Portal, and profile editor. */
.fct-cinema-hero,
.fct-public-profile-hero,
[data-fct-team-page="1"] .fct-directory-style-hero {
	position: relative !important;
	isolation: isolate;
	width: 100vw !important;
	max-width: none !important;
	min-height: var(--fct-shared-hero-height) !important;
	height: var(--fct-shared-hero-height) !important;
	margin: 0 !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center !important;
	overflow: hidden !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--nsff-page-bg) !important;
	box-shadow: inset 0 -1px 0 rgba(166, 197, 231, .16) !important;
}

.fct-cinema-hero-bg,
.fct-cinema-hero-profile .fct-cinema-hero-bg,
.fct-public-profile-hero-bg {
	position: absolute !important;
	inset: 0 !important;
	background:
		linear-gradient(90deg, rgba(5, 8, 13, .96) 0%, rgba(8, 13, 20, .76) 42%, rgba(5, 8, 13, .90) 100%),
		linear-gradient(180deg, rgba(5, 8, 13, .12), rgba(5, 8, 13, .86)),
		var(--nsff-hero-image) !important;
	background-size: cover !important;
	background-position: center !important;
	opacity: 1 !important;
}

.fct-cinema-hero::before,
.fct-public-profile-hero::before,
[data-fct-team-page="1"] .fct-directory-style-hero::before::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	background:
		linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255,255,255,.018) 1px, transparent 1px) !important;
	background-size: 38px 38px !important;
	opacity: .38 !important;
	pointer-events: none !important;
}

.fct-cinema-hero::after,
.fct-public-profile-hero::after,
[data-fct-team-page="1"] .fct-directory-style-hero::after::after {
	content: "" !important;
	position: absolute !important;
	inset: auto 0 0 0 !important;
	height: 46% !important;
	z-index: 1 !important;
	background: linear-gradient(0deg, rgba(5, 8, 13, .94), transparent) !important;
	pointer-events: none !important;
}

.fct-cinema-hero-inner,
[data-fct-team-page="1"] .fct-team-hero-inner {
	position: relative !important;
	z-index: 2 !important;
	width: min(var(--fct-shared-content-width), calc(100vw - 48px)) !important;
	max-width: var(--fct-shared-content-width) !important;
	margin: 0 auto !important;
	padding: clamp(72px, 8vw, 118px) 0 !important;
}

.fct-public-profile-hero-inner {
	position: relative !important;
	z-index: 2 !important;
	width: min(var(--fct-shared-content-width), calc(100vw - 48px)) !important;
	max-width: var(--fct-shared-content-width) !important;
	margin: 0 auto !important;
	padding: clamp(56px, 7vw, 104px) 0 !important;
}

.fct-cinema-copy,
[data-fct-team-page="1"] .fct-team-hero-inner > * > * {
	max-width: 720px !important;
	text-align: left !important;
}

.fct-cinema-kicker,
.fct-team-hero-kicker,
.fct-casting-kicker,
.fct-card-kicker,
.fct-panel-kicker,
.fct-count-label,
.fct-stat-label,
.fct-selected-title,
.fct-judge-admin-mode-label {
	color: var(--nsff-ice-2) !important;
	font-weight: 950 !important;
	letter-spacing: .24em !important;
	text-transform: uppercase !important;
}

.fct-cinema-hero h1,
.fct-cinema-hero h2,
.fct-directory-style-hero h1,
.fct-public-profile-hero h1 {
	margin: 0 !important;
	color: #ffffff !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(46px, 7vw, 84px) !important;
	font-weight: 900 !important;
	line-height: .98 !important;
	letter-spacing: -.045em !important;
	text-shadow: 0 14px 38px rgba(0,0,0,.62) !important;
}

.fct-cinema-hero p,
.fct-directory-style-hero p,
.fct-public-profile-hero p {
	max-width: 640px !important;
	margin: 22px 0 0 !important;
	color: rgba(255,255,255,.80) !important;
	font-size: clamp(15px, 1.6vw, 19px) !important;
	line-height: 1.65 !important;
	letter-spacing: .02em !important;
	font-weight: 650 !important;
}

/* One exact content container for all public FCT pages. */
.fct-seamless-cinematic .fct-cinema-content,
.fct-seamless-cinematic .fct-public-profile-content,
[data-fct-team-page="1"] .fct-cinema-content,
.fct-judge-page-wrap .fct-cinema-content {
	width: min(var(--fct-shared-content-width), calc(100vw - 48px)) !important;
	max-width: var(--fct-shared-content-width) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: clamp(36px, 4vw, 56px) clamp(22px, 3vw, 36px) clamp(64px, 5vw, 84px) !important;
	background: var(--nsff-content-bg) !important;
	border-left: 1px solid rgba(166, 197, 231, .065) !important;
	border-right: 1px solid rgba(166, 197, 231, .045) !important;
	border-top: 0 !important;
	border-bottom: 0 !important;
	border-radius: 0 !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 20px 60px rgba(0,0,0,.10) !important;
	overflow: visible !important;
}

.fct-seamless-cinematic .fct-cinema-hero + .fct-cinema-content,
.fct-seamless-cinematic .fct-cinema-hero + .fct-public-profile-content,
[data-fct-team-page="1"] .fct-directory-style-hero + .fct-cinema-content {
	margin-top: 0 !important;
}

/* Shared panels, cards, tabs, buttons, and fields all use the same directory surface. */
.fct-seamless-cinematic .fct-panel,
.fct-seamless-cinematic .fct-card,
.fct-seamless-cinematic .fct-directory-card,
.fct-seamless-cinematic .fct-team-card,
.fct-seamless-cinematic .fct-task-card,
.fct-seamless-cinematic .fct-task-group,
.fct-seamless-cinematic .fct-dashboard-poster,
.fct-seamless-cinematic .fct-directory-toolbar,
.fct-seamless-cinematic .fct-directory-filter-panel,
.fct-seamless-cinematic .fct-front-admin-profile-card,
.fct-seamless-cinematic .fct-announcement-editor-card,
.fct-judge-page-wrap .fct-integrated-nav,
.fct-judge-page-wrap .fct-film-card,
.fct-judge-page-wrap .fct-item-card,
.fct-judge-page-wrap .fct-rank-card,
.fct-judge-page-wrap .fct-favorite-card,
.fct-judge-page-wrap .fct-peer-results-card,
.fct-judge-page-wrap .fct-peer-results-panel,
.fct-judge-page-wrap .fct-peer-results-stat,
.fct-judge-page-wrap .fct-peer-results-table-wrap,
.fct-judge-page-wrap .fct-peer-comment,
.fct-judge-page-wrap .fct-award-main-player-card,
.fct-judge-page-wrap .fct-award-selection-panel,
.fct-judge-page-wrap .fct-award-ballot,
.fct-judge-page-wrap .fct-award-side-list,
.fct-judge-page-wrap .fct-award-playlist-wrap,
.fct-judge-page-wrap .fct-scoreboard-card,
.fct-judge-page-wrap .fct-score-detail-panel {
	border: 1px solid rgba(166, 197, 231, .18) !important;
	background: var(--nsff-panel-bg) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 18px 40px rgba(0,0,0,.24) !important;
	color: var(--nsff-text) !important;
}

.fct-seamless-cinematic .fct-panel,
.fct-judge-page-wrap .fct-panel {
	padding: clamp(20px, 3vw, 34px) !important;
}

.fct-seamless-cinematic input[type="text"],
.fct-seamless-cinematic input[type="email"],
.fct-seamless-cinematic input[type="url"],
.fct-seamless-cinematic input[type="tel"],
.fct-seamless-cinematic input[type="search"],
.fct-seamless-cinematic input[type="number"],
.fct-seamless-cinematic select,
.fct-seamless-cinematic textarea,
.fct-judge-page-wrap input[type="text"],
.fct-judge-page-wrap input[type="search"],
.fct-judge-page-wrap select,
.fct-judge-page-wrap textarea {
	background: rgba(8, 13, 24, .88) !important;
	color: var(--nsff-text) !important;
	border: 1px solid rgba(166, 197, 231, .22) !important;
	border-radius: 8px !important;
	caret-color: #ffffff !important;
}

.fct-seamless-cinematic input:focus,
.fct-seamless-cinematic select:focus,
.fct-seamless-cinematic textarea:focus,
.fct-judge-page-wrap input:focus,
.fct-judge-page-wrap select:focus,
.fct-judge-page-wrap textarea:focus {
	background: rgba(15, 23, 42, .98) !important;
	border-color: rgba(103, 232, 249, .60) !important;
	box-shadow: 0 0 0 3px rgba(103, 232, 249, .12) !important;
	outline: none !important;
}

.fct-seamless-cinematic .fct-input::placeholder,
.fct-seamless-cinematic input::placeholder,
.fct-seamless-cinematic textarea::placeholder,
.fct-judge-page-wrap input::placeholder,
.fct-judge-page-wrap textarea::placeholder {
	color: rgba(203, 213, 225, .68) !important;
}

.fct-btn,
.fct-btn:visited,
button.fct-btn,
input[type="submit"].fct-btn,
.fct-mini-button,
.fct-mini-link {
	border: 1px solid rgba(166, 197, 231, .22) !important;
	background: linear-gradient(180deg, rgba(30, 41, 59, .76), rgba(15, 23, 42, .88)) !important;
	color: var(--nsff-text-soft) !important;
	box-shadow: none !important;
	border-radius: 8px !important;
	text-decoration: none !important;
}

.fct-btn:hover,
button.fct-btn:hover,
.fct-mini-button:hover,
.fct-mini-link:hover {
	border-color: rgba(103, 232, 249, .48) !important;
	color: #ffffff !important;
	background: linear-gradient(180deg, rgba(14, 116, 144, .22), rgba(15, 23, 42, .92)) !important;
}

/* Shared tabs use the same directory border/background. */
.fct-tabs,
.fct-team-tabs,
.fct-profile-steps,
.fct-front-admin-tabs,
.fct-judge-page-wrap .fct-judge-tabs,
.fct-judge-page-wrap .fct-tab-container,
.fct-judge-page-wrap .fct-dash-tabs {
	border: 1px solid rgba(166, 197, 231, .18) !important;
	border-radius: 0 !important;
	background: rgba(5, 8, 13, .42) !important;
	overflow: hidden !important;
}

.fct-tabs .fct-tab,
.fct-team-tabs .fct-tab,
.fct-profile-step,
.fct-front-admin-tabs a,
.fct-judge-page-wrap .fct-judge-tabs .fct-tab,
.fct-judge-page-wrap .fct-full-tab,
.fct-judge-page-wrap .fct-dash-tab {
	border-color: rgba(166, 197, 231, .11) !important;
	background: transparent !important;
	color: var(--nsff-text-soft) !important;
}

.fct-tabs .fct-tab.is-active,
.fct-tabs .fct-tab:hover,
.fct-team-tabs .fct-tab.is-active,
.fct-team-tabs .fct-tab:hover,
.fct-profile-step.is-active,
.fct-profile-step:hover,
.fct-front-admin-tabs a.is-active,
.fct-front-admin-tabs a:hover,
.fct-judge-page-wrap .fct-judge-tabs .fct-tab.is-active,
.fct-judge-page-wrap .fct-judge-tabs .fct-tab:hover,
.fct-judge-page-wrap .fct-full-tab.is-active,
.fct-judge-page-wrap .fct-full-tab:hover,
.fct-judge-page-wrap .fct-dash-tab.is-active,
.fct-judge-page-wrap .fct-dash-tab:hover {
	background: rgba(17, 29, 45, .98) !important;
	color: #ffffff !important;
	box-shadow: inset 0 -2px 0 var(--nsff-ice-2) !important;
}

/* Judge portal now uses the exact same content body as the directory page. */
.fct-judge-page-wrap .fct-judge-content {
	display: grid !important;
	gap: clamp(26px, 3vw, 38px) !important;
}

.fct-judge-page-wrap .fct-judge-top-nav-shell,
.fct-judge-page-wrap .fct-judge-portal-shell {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap .fct-integrated-nav {
	width: 100% !important;
	margin: 0 !important;
	overflow: visible !important;
	position: relative !important;
	z-index: 5000 !important;
}

.fct-judge-page-wrap .fct-integrated-nav-meta,
.fct-judge-page-wrap .fct-nav-upper-row,
.fct-judge-page-wrap .fct-nav-search-fluid {
	padding-left: clamp(18px, 2.6vw, 30px) !important;
	padding-right: clamp(18px, 2.6vw, 30px) !important;
}

.fct-judge-page-wrap .fct-nav-search-fluid {
	padding-top: 16px !important;
	padding-bottom: 18px !important;
}

.fct-judge-page-wrap .fct-dashboard-container,
.fct-judge-page-wrap .fct-judge-dashboard-view,
.fct-judge-page-wrap .fct-judge-all-films-view,
.fct-judge-page-wrap .fct-judge-list-view,
.fct-judge-page-wrap .fct-award-page-view,
.fct-judge-page-wrap .fct-judge-single-view,
.fct-judge-page-wrap .fct-score-detail-view {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

/* Judge all-films cards keep one layout before and after search. */
.fct-judge-page-wrap .fct-judge-films-grid,
.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid,
.fct-judge-page-wrap .fct-judge-films-grid.is-fct-search-active {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: clamp(18px, 2vw, 24px) !important;
	justify-content: stretch !important;
	align-items: stretch !important;
}

.fct-judge-page-wrap .fct-judge-films-grid > .fct-film-card {
	display: grid !important;
	grid-template-columns: 112px minmax(0, 1fr) !important;
	grid-template-areas: "poster info" !important;
	min-height: 150px !important;
	max-width: none !important;
	width: 100% !important;
	position: relative !important;
	overflow: hidden !important;
	text-decoration: none !important;
}

.fct-judge-page-wrap .fct-film-poster {
	grid-area: poster !important;
	width: 112px !important;
	height: 100% !important;
	min-height: 150px !important;
	background: rgba(5, 8, 13, .70) !important;
	border-right: 1px solid rgba(166, 197, 231, .11) !important;
}

.fct-judge-page-wrap .fct-film-poster img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}

.fct-judge-page-wrap .fct-film-info {
	grid-area: info !important;
	min-width: 0 !important;
	padding: 18px 20px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: flex-start !important;
	gap: 8px !important;
}

.fct-judge-page-wrap .fct-film-status-col {
	display: none !important;
}

.fct-judge-page-wrap .fct-mobile-status {
	display: inline-flex !important;
	width: fit-content !important;
	margin-top: 4px !important;
}

.fct-judge-page-wrap .fct-film-title,
.fct-judge-page-wrap .fct-card-title,
.fct-judge-page-wrap .fct-rank-film,
.fct-judge-page-wrap .fct-score-film-title {
	min-width: 0 !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 2 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	line-height: 1.18 !important;
	max-height: 2.4em !important;
	font-weight: 950 !important;
}

.fct-judge-page-wrap .fct-film-team,
.fct-judge-page-wrap .fct-film-leader,
.fct-judge-page-wrap .fct-card-sub,
.fct-judge-page-wrap .fct-rank-team {
	min-width: 0 !important;
	max-width: 100% !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.fct-judge-page-wrap .is-fct-hidden,
.fct-judge-page-wrap [hidden] {
	display: none !important;
}

.fct-judge-page-wrap .fct-no-search-results,
.fct-judge-page-wrap .fct-empty-state {
	padding: clamp(22px, 2.5vw, 34px) !important;
	border: 1px solid rgba(166, 197, 231, .18) !important;
	border-radius: var(--nsff-radius) !important;
	background: var(--nsff-panel-bg) !important;
	color: var(--nsff-text-soft) !important;
}

/* Keep the admin mode drawer above every shared panel. */
.fct-judge-page-wrap .fct-judge-mode-dock {
	position: relative !important;
	z-index: 1000000 !important;
}

.fct-judge-page-wrap .fct-judge-mode-panel {
	z-index: 1000001 !important;
	background: var(--nsff-panel-bg) !important;
}

/* Central status color system. */
.is-new,
.is-prog,
.is-pending,
.is-in-progress,
.status-pending,
.status-in-progress,
.fct-status-pending,
.fct-badge.is-new,
.fct-badge.is-prog,
.fct-judge-status-count.is-new,
.fct-judge-status-count.is-prog {
	--fct-status-color: var(--nsff-pending);
	--fct-status-border: rgba(245, 158, 11, .48);
	--fct-status-bg: rgba(245, 158, 11, .10);
}

.is-done,
.is-complete,
.is-submitted,
.is-finished,
.status-done,
.status-submitted,
.status-finished,
.fct-status-done,
.fct-status-submitted,
.fct-badge.is-done,
.fct-badge.is-complete,
.fct-judge-status-count.is-done {
	--fct-status-color: var(--nsff-done);
	--fct-status-border: rgba(16, 185, 129, .48);
	--fct-status-bg: rgba(16, 185, 129, .10);
}

.is-expired,
.is-closed,
.is-overdue,
.is-deadline-passed,
.status-expired,
.status-closed,
.status-overdue,
.fct-status-expired,
.fct-status-closed,
.fct-badge.is-expired,
.fct-badge.is-closed {
	--fct-status-color: var(--nsff-expired);
	--fct-status-border: rgba(239, 68, 68, .52);
	--fct-status-bg: rgba(239, 68, 68, .11);
}

.fct-badge,
.fct-profile-status-badge,
.fct-judge-status-count,
.fct-judge-special-badge {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	width: fit-content !important;
	padding: 5px 9px !important;
	border: 1px solid var(--fct-status-border, rgba(166, 197, 231, .22)) !important;
	background: var(--fct-status-bg, rgba(166, 197, 231, .09)) !important;
	color: var(--fct-status-color, var(--nsff-text-soft)) !important;
	border-radius: 999px !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

@media (max-width: 900px) {
	:root {
		--fct-shared-content-width: 100%;
	}

	.fct-cinema-hero,
	.fct-public-profile-hero,
	[data-fct-team-page="1"] .fct-directory-style-hero {
		min-height: 380px !important;
		height: 380px !important;
	}

	.fct-seamless-cinematic .fct-cinema-content,
	.fct-seamless-cinematic .fct-public-profile-content,
	[data-fct-team-page="1"] .fct-cinema-content,
	.fct-judge-page-wrap .fct-cinema-content {
		width: min(100% - 28px, 1180px) !important;
		padding: 28px 16px 56px !important;
		border-left: 0 !important;
		border-right: 0 !important;
	}

	.fct-judge-page-wrap .fct-nav-upper-row {
		grid-template-columns: 1fr !important;
	}

	.fct-judge-page-wrap .fct-judge-films-grid,
	.fct-judge-page-wrap .is-fct-search-active .fct-judge-films-grid,
	.fct-judge-page-wrap .fct-judge-films-grid.is-fct-search-active {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 560px) {
	.fct-cinema-hero-inner,
	[data-fct-team-page="1"] .fct-team-hero-inner,
	.fct-public-profile-hero-inner {
		width: min(100% - 28px, 1180px) !important;
	}

	.fct-judge-page-wrap .fct-judge-films-grid > .fct-film-card {
		grid-template-columns: 88px minmax(0, 1fr) !important;
		min-height: 128px !important;
	}

	.fct-judge-page-wrap .fct-film-poster {
		width: 88px !important;
		min-height: 128px !important;
	}

	.fct-judge-page-wrap .fct-film-info {
		padding: 15px 16px !important;
	}
}


/* ========================================================================== 
   FCT shared UI v42.13.4: restore shared hero imagery + award selection layout
   --------------------------------------------------------------------------
   This keeps the shared Directory/Team/Judge layout, but restores the image
   layer for Team/Judge heroes and fixes award Top 3 display after the CSS reset.
   ========================================================================== */

[data-fct-team-page="1"] .fct-directory-style-hero {
	background:
		linear-gradient(90deg, rgba(5, 8, 13, .96) 0%, rgba(8, 13, 20, .76) 42%, rgba(5, 8, 13, .90) 100%),
		linear-gradient(180deg, rgba(5, 8, 13, .12), rgba(5, 8, 13, .86)),
		var(--nsff-hero-image) !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

[data-fct-team-page="1"] .fct-team-hero-inner {
	width: min(var(--fct-shared-content-width), calc(100vw - 48px)) !important;
	max-width: var(--fct-shared-content-width) !important;
}

[data-fct-team-page="1"] .fct-directory-style-hero + .fct-cinema-content {
	margin-top: 0 !important;
}

/* Keep the judge portal body on the same shared surface as the directory. */
.fct-judge-page-wrap .fct-judge-content,
.fct-judge-page-wrap .fct-judge-portal-shell,
.fct-judge-page-wrap .fct-judge-list-view,
.fct-judge-page-wrap .fct-dashboard-container,
.fct-judge-page-wrap .fct-award-page-view {
	background: transparent !important;
	box-shadow: none !important;
}

/* Top 3 award selections should read as a stacked, easy-to-scan list. */
.fct-judge-page-wrap .fct-award-selection-panel,
.fct-judge-page-wrap .fct-selected-slot {
	display: grid !important;
	gap: 12px !important;
	padding: clamp(18px, 2.2vw, 24px) !important;
}

.fct-judge-page-wrap .fct-selected-title {
	margin: 0 !important;
}

.fct-judge-page-wrap .fct-selected-name-row {
	display: grid !important;
	grid-template-columns: auto minmax(0, 1fr) !important;
	gap: 12px !important;
	align-items: start !important;
}

.fct-judge-page-wrap .fct-selected-check {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	border-radius: 999px !important;
	background: rgba(16, 185, 129, .14) !important;
	border: 1px solid rgba(16, 185, 129, .32) !important;
	color: var(--nsff-done) !important;
	font-weight: 950 !important;
}

.fct-judge-page-wrap .fct-selected-name-list {
	display: grid !important;
	gap: 8px !important;
	min-width: 0 !important;
	width: 100% !important;
	white-space: normal !important;
}

.fct-judge-page-wrap .fct-selected-name-list > span,
.fct-judge-page-wrap .fct-selected-pick-line {
	display: block !important;
	min-width: 0 !important;
	padding: 9px 11px !important;
	border: 1px solid var(--nsff-border-soft) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(166, 197, 231, .055) !important;
	color: var(--nsff-text) !important;
	font-size: 14px !important;
	font-weight: 850 !important;
	line-height: 1.35 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.fct-judge-page-wrap .fct-selected-saved-label,
.fct-judge-page-wrap .fct-selected-empty {
	margin: 0 !important;
	line-height: 1.55 !important;
}

/* Restore missing award voting layout rules after the shared reset. */
.fct-judge-page-wrap .fct-award-playlist-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 440px) !important;
	gap: clamp(18px, 2.5vw, 28px) !important;
	align-items: start !important;
}

.fct-judge-page-wrap .fct-award-main-player-card,
.fct-judge-page-wrap .fct-award-side-list {
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-award-side-list {
	display: grid !important;
	gap: 12px !important;
	align-content: start !important;
}

.fct-judge-page-wrap .fct-award-card,
.fct-judge-page-wrap .fct-award-card-redesign {
	display: grid !important;
	grid-template-columns: auto minmax(0, 1fr) !important;
	gap: 12px !important;
	align-items: center !important;
}

.fct-judge-page-wrap .fct-award-card-copy {
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-award-main-title-small,
.fct-judge-page-wrap .fct-award-sub-title-small {
	min-width: 0 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.fct-judge-page-wrap .fct-award-list-actions {
	grid-column: 1 / -1 !important;
	display: flex !important;
	justify-content: flex-end !important;
	gap: 8px !important;
	flex-wrap: wrap !important;
}

@media (max-width: 1180px) {
	.fct-judge-page-wrap .fct-award-playlist-layout {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 700px) {
	.fct-judge-page-wrap .fct-selected-name-row,
	.fct-judge-page-wrap .fct-award-card,
	.fct-judge-page-wrap .fct-award-card-redesign {
		grid-template-columns: 1fr !important;
	}
}

/* ========================================================================== 
   FCT shared UI v42.13.5: restore North Star icy palette + Team Dashboard CSS
   --------------------------------------------------------------------------
   This pass keeps the shared Directory/Team/Judge layout but makes the shared
   palette feel more North Star again and restores missing Team Portal dashboard
   layout rules using the same centralized visual system.
   ========================================================================== */

:root {
	--fct-shared-content-width: 1360px;
	--fct-shared-hero-height: 460px;
	--nsff-page-bg: #050911;
	--nsff-page-bg-2: #09111d;
	--nsff-bg: #050911;
	--nsff-bg-soft: #09111d;
	--nsff-surface: #101a29;
	--nsff-surface-2: #142236;
	--nsff-surface-3: #1a2c43;
	--nsff-panel-bg: linear-gradient(180deg, rgba(18, 31, 48, .93), rgba(8, 15, 26, .96));
	--nsff-panel-bg-soft: rgba(18, 31, 48, .70);
	--nsff-field-bg: rgba(5, 10, 19, .86);
	--nsff-text: #f8fbff;
	--nsff-text-soft: #dceeff;
	--nsff-muted: #a9bad0;
	--nsff-muted-2: #7890aa;
	--nsff-ice: #e3f4ff;
	--nsff-ice-2: #a6d3f4;
	--nsff-ice-3: #7ec8ef;
	--nsff-cyan: #67e8f9;
	--nsff-blue: #80bfff;
	--nsff-border: rgba(166, 211, 244, .22);
	--nsff-border-soft: rgba(166, 211, 244, .13);
	--nsff-border-strong: rgba(166, 211, 244, .40);
	--nsff-focus-ring: rgba(126, 200, 239, .20);
	--fct-black: var(--nsff-bg);
	--fct-black-2: var(--nsff-bg-soft);
	--fct-black-3: var(--nsff-surface);
	--fct-white: var(--nsff-text);
	--fct-cream: var(--nsff-text-soft);
	--fct-muted: var(--nsff-muted);
	--fct-muted-2: var(--nsff-muted-2);
	--fct-gold: var(--nsff-ice-2);
	--fct-gold-2: var(--nsff-ice);
	--fct-ice: var(--nsff-ice);
	--fct-ice-2: var(--nsff-ice-2);
	--fct-cyan: var(--nsff-cyan);
	--fct-surface: var(--nsff-surface);
	--fct-surface-2: var(--nsff-surface-2);
	--fct-border: var(--nsff-border);
	--fct-border-soft: var(--nsff-border-soft);
}

.fct-seamless-cinematic,
.fct-directory,
.fct-directory-profile-form,
.fct-public-profile,
[data-fct-team-page="1"],
.fct-judge-page-wrap {
	background:
		radial-gradient(circle at 15% -4%, rgba(103, 232, 249, .13), transparent 28%),
		radial-gradient(circle at 86% 2%, rgba(166, 211, 244, .10), transparent 30%),
		linear-gradient(180deg, var(--nsff-page-bg) 0%, var(--nsff-page-bg-2) 50%, #0b1524 100%) !important;
	color: var(--nsff-text) !important;
}

.fct-cinema-kicker,
.fct-team-hero-kicker,
.fct-casting-kicker,
.fct-share-section-title,
.fct-panel-header,
.fct-directory-filter-subheading,
.fct-judge-page-wrap .fct-nav-kicker,
.fct-judge-page-wrap .fct-mode-kicker {
	color: var(--nsff-ice-2) !important;
	letter-spacing: .16em !important;
}

.fct-panel,
.fct-card,
.fct-directory-card,
.fct-team-card,
.fct-task-card,
.fct-task-group,
.fct-progress-card,
.fct-share-panel,
.fct-dashboard-poster,
.fct-judge-page-wrap .fct-integrated-nav,
.fct-judge-page-wrap .fct-film-card,
.fct-judge-page-wrap .fct-item-card,
.fct-judge-page-wrap .fct-rank-card,
.fct-judge-page-wrap .fct-favorite-card,
.fct-judge-page-wrap .fct-peer-results-card,
.fct-judge-page-wrap .fct-peer-results-panel,
.fct-judge-page-wrap .fct-peer-results-stat,
.fct-judge-page-wrap .fct-peer-results-table-wrap,
.fct-judge-page-wrap .fct-peer-comment,
.fct-judge-page-wrap .fct-award-main-player-card,
.fct-judge-page-wrap .fct-award-selection-panel,
.fct-judge-page-wrap .fct-award-ballot,
.fct-judge-page-wrap .fct-award-side-list,
.fct-judge-page-wrap .fct-award-playlist-wrap,
.fct-judge-page-wrap .fct-scoreboard-card,
.fct-judge-page-wrap .fct-score-detail-panel {
	border-color: var(--nsff-border) !important;
	background: var(--nsff-panel-bg) !important;
	box-shadow: inset 0 1px 0 rgba(227, 244, 255, .055), 0 18px 42px rgba(0, 0, 0, .28) !important;
}

.fct-panel {
	padding: clamp(22px, 2.4vw, 32px) !important;
}

.fct-btn,
button.fct-btn,
a.fct-btn,
.fct-judge-page-wrap .fct-btn,
.fct-directory-filter-toggle,
.fct-directory-view-all-roles {
	border-color: rgba(166, 211, 244, .36) !important;
	background: linear-gradient(180deg, rgba(166, 211, 244, .14), rgba(126, 200, 239, .08)) !important;
	color: var(--nsff-text) !important;
	box-shadow: inset 0 1px 0 rgba(227, 244, 255, .08) !important;
}

.fct-btn:hover,
button.fct-btn:hover,
a.fct-btn:hover,
.fct-judge-page-wrap .fct-btn:hover,
.fct-directory-filter-toggle:hover,
.fct-directory-view-all-roles:hover {
	border-color: rgba(103, 232, 249, .60) !important;
	background: linear-gradient(180deg, rgba(103, 232, 249, .18), rgba(166, 211, 244, .10)) !important;
	color: #ffffff !important;
}

.fct-input,
.fct-directory-search,
.fct-judge-page-wrap input[type="search"],
.fct-judge-page-wrap input[type="text"],
.fct-judge-page-wrap textarea,
.fct-judge-page-wrap select {
	background: var(--nsff-field-bg) !important;
	border-color: rgba(166, 211, 244, .26) !important;
	color: var(--nsff-text) !important;
}

.fct-input:focus,
.fct-directory-search:focus,
.fct-judge-page-wrap input[type="search"]:focus,
.fct-judge-page-wrap input[type="text"]:focus,
.fct-judge-page-wrap textarea:focus,
.fct-judge-page-wrap select:focus {
	border-color: rgba(103, 232, 249, .64) !important;
	box-shadow: 0 0 0 4px var(--nsff-focus-ring) !important;
	outline: none !important;
}

/* Team Portal dashboard */
[data-fct-team-page="1"] .fct-dashboard-top {
	display: grid !important;
	grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) !important;
	gap: clamp(22px, 3vw, 36px) !important;
	align-items: start !important;
}

[data-fct-team-page="1"] .fct-dashboard-media-col {
	display: grid !important;
	gap: 14px !important;
	align-content: start !important;
}

[data-fct-team-page="1"] .fct-dashboard-poster {
	width: 100% !important;
	max-width: 320px !important;
	aspect-ratio: 2 / 3 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border-radius: var(--nsff-radius) !important;
	border: 1px solid rgba(166, 211, 244, .24) !important;
	background: linear-gradient(180deg, rgba(8, 15, 26, .96), rgba(5, 10, 19, .98)) !important;
	box-shadow: inset 0 1px 0 rgba(227, 244, 255, .04), 0 18px 34px rgba(0,0,0,.24) !important;
}

[data-fct-team-page="1"] .fct-dashboard-poster img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}

[data-fct-team-page="1"] .fct-dashboard-summary {
	min-width: 0 !important;
	display: grid !important;
	gap: 18px !important;
	align-content: start !important;
	padding: clamp(18px, 2.2vw, 26px) !important;
	border: 1px solid rgba(166, 211, 244, .18) !important;
	border-radius: var(--nsff-radius) !important;
	background: rgba(5, 10, 19, .30) !important;
}

[data-fct-team-page="1"] .fct-dashboard-summary .fct-h3,
[data-fct-team-page="1"] .fct-panel h3,
[data-fct-team-page="1"] .fct-panel-title {
	margin: 0 !important;
	color: var(--nsff-text) !important;
}

[data-fct-team-page="1"] .fct-dashboard-progress {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	height: 13px !important;
	overflow: hidden !important;
	border: 1px solid rgba(166, 211, 244, .20) !important;
	border-radius: 999px !important;
	background: rgba(5, 10, 19, .76) !important;
}

[data-fct-team-page="1"] .fct-dashboard-progress-fill {
	display: block !important;
	height: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	border-radius: inherit !important;
	background: linear-gradient(90deg, var(--nsff-ice-2), var(--nsff-cyan)) !important;
	box-shadow: 0 0 20px rgba(103, 232, 249, .18) !important;
}

[data-fct-team-page="1"] .fct-dashboard-alerts {
	display: grid !important;
	gap: 10px !important;
}

[data-fct-team-page="1"] .fct-dashboard-alert {
	padding: 12px 14px !important;
	border-radius: var(--nsff-radius-sm) !important;
	border: 1px solid var(--fct-status-border, rgba(245, 158, 11, .44)) !important;
	background: var(--fct-status-bg, rgba(245, 158, 11, .10)) !important;
	color: var(--nsff-text-soft) !important;
}

[data-fct-team-page="1"] .fct-dashboard-alert.is-warning {
	--fct-status-border: rgba(245, 158, 11, .44);
	--fct-status-bg: rgba(245, 158, 11, .10);
}

[data-fct-team-page="1"] .fct-dashboard-alert.is-expired {
	--fct-status-border: rgba(239, 68, 68, .52);
	--fct-status-bg: rgba(239, 68, 68, .12);
}

[data-fct-team-page="1"] .fct-dashboard-alert a {
	color: var(--nsff-ice) !important;
	font-weight: 850 !important;
}

[data-fct-team-page="1"] .fct-dashboard-custom {
	display: block !important;
	padding: 0 !important;
	margin: 12px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

[data-fct-team-page="1"] .fct-dashboard-promo-actions {
	display: grid !important;
	gap: 10px !important;
}

[data-fct-team-page="1"] .fct-dashboard-promo-actions .fct-btn {
	width: 100% !important;
	justify-content: center !important;
}

/* Team sharing card now follows the same dashboard panel system. */
[data-fct-team-page="1"] .fct-share-panel {
	margin-top: clamp(22px, 3vw, 36px) !important;
}

[data-fct-team-page="1"] .fct-share-head,
[data-fct-team-page="1"] .fct-panel-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	padding-bottom: 16px !important;
	margin-bottom: 18px !important;
	border-bottom: 1px solid rgba(166, 211, 244, .14) !important;
}

[data-fct-team-page="1"] .fct-share-title {
	font-size: clamp(18px, 2vw, 24px) !important;
	font-weight: 950 !important;
	color: var(--nsff-text) !important;
}

[data-fct-team-page="1"] .fct-share-subtitle,
[data-fct-team-page="1"] .fct-share-help,
[data-fct-team-page="1"] .fct-share-member-email {
	color: var(--nsff-muted) !important;
}

[data-fct-team-page="1"] .fct-share-body,
[data-fct-team-page="1"] .fct-share-section,
[data-fct-team-page="1"] .fct-share-member-list {
	display: grid !important;
	gap: 14px !important;
}

[data-fct-team-page="1"] .fct-share-member-row {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 14px !important;
	padding: 14px !important;
	border: 1px solid rgba(166, 211, 244, .14) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(5, 10, 19, .34) !important;
}

[data-fct-team-page="1"] .fct-share-member-main {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	min-width: 0 !important;
}

[data-fct-team-page="1"] .fct-share-avatar,
[data-fct-team-page="1"] .fct-share-avatar img {
	width: 42px !important;
	height: 42px !important;
	border-radius: 999px !important;
}

[data-fct-team-page="1"] .fct-share-avatar.is-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(166, 211, 244, .10) !important;
	border: 1px solid rgba(166, 211, 244, .20) !important;
}

[data-fct-team-page="1"] .fct-share-member-copy {
	min-width: 0 !important;
}

[data-fct-team-page="1"] .fct-share-member-name,
[data-fct-team-page="1"] .fct-share-member-email {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

[data-fct-team-page="1"] .fct-share-invite {
	display: grid !important;
	gap: 10px !important;
	padding-top: 4px !important;
}

[data-fct-team-page="1"] .fct-share-invite-row {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 10px !important;
	align-items: center !important;
}

[data-fct-team-page="1"] .fct-share-msg {
	min-height: 1.4em !important;
	font-weight: 800 !important;
}

@media (max-width: 820px) {
	[data-fct-team-page="1"] .fct-dashboard-top,
	[data-fct-team-page="1"] .fct-share-invite-row {
		grid-template-columns: 1fr !important;
	}

	[data-fct-team-page="1"] .fct-dashboard-poster {
		max-width: 260px !important;
	}

	[data-fct-team-page="1"] .fct-share-member-row {
		align-items: flex-start !important;
		flex-direction: column !important;
	}
}

/* ========================================================================== 
   FCT shared UI v42.13.6 final pass
   Shared North Star styling for Directory, Team Portal, and Judge Portal.
   Keep new portal styling here instead of adding one-off page CSS.
   ========================================================================== */

:root {
	--fct-shared-content-width: 1360px;
	--fct-shared-hero-height: 460px;
	--nsff-page-bg: #050910;
	--nsff-page-bg-2: #07111c;
	--nsff-surface: #0d1726;
	--nsff-surface-2: #121f31;
	--nsff-surface-3: #182b42;
	--nsff-panel-bg: linear-gradient(180deg, rgba(13, 23, 38, .94), rgba(7, 13, 23, .97));
	--nsff-panel-bg-soft: rgba(13, 23, 38, .72);
	--nsff-field-bg: rgba(4, 9, 17, .78);
	--nsff-text: #f8fbff;
	--nsff-text-soft: #dceeff;
	--nsff-muted: #a9bfd6;
	--nsff-muted-2: #7990a9;
	--nsff-ice: #e2f5ff;
	--nsff-ice-2: #a6d3f4;
	--nsff-cyan: #67e8f9;
	--nsff-blue: #7ec8ef;
	--nsff-border: rgba(166, 211, 244, .19);
	--nsff-border-soft: rgba(166, 211, 244, .11);
	--nsff-border-strong: rgba(166, 211, 244, .36);
	--nsff-pending: #f6b73c;
	--nsff-done: #34d399;
	--nsff-expired: #f87171;
	--fct-gold: var(--nsff-ice-2);
	--fct-gold-2: var(--nsff-ice);
	--fct-border: var(--nsff-border);
	--fct-border-soft: var(--nsff-border-soft);
}

/* Count badges are navigation metadata, not status badges. */
.fct-count-pill,
.fct-judge-page-wrap .fct-full-tab .fct-count-pill,
.fct-judge-page-wrap .fct-dash-tab .fct-count-pill,
.fct-judge-page-wrap .fct-tab .fct-count-pill,
.fct-tabs .fct-tab .fct-count-pill,
.fct-team-tabs .fct-tab .fct-count-pill {
	--fct-status-color: var(--nsff-ice-2) !important;
	--fct-status-border: rgba(166, 211, 244, .36) !important;
	--fct-status-bg: rgba(166, 211, 244, .10) !important;
	color: var(--nsff-ice-2) !important;
	border-color: rgba(166, 211, 244, .36) !important;
	background: rgba(166, 211, 244, .10) !important;
}

/* Shared page structure */
.fct-seamless-cinematic,
.fct-directory,
.fct-directory-profile-form,
.fct-public-profile,
[data-fct-team-page="1"],
.fct-judge-page-wrap {
	background:
		radial-gradient(circle at 13% 0%, rgba(103, 232, 249, .13), transparent 30%),
		radial-gradient(circle at 86% 4%, rgba(166, 211, 244, .10), transparent 28%),
		linear-gradient(180deg, var(--nsff-page-bg) 0%, var(--nsff-page-bg-2) 52%, #0b1524 100%) !important;
	color: var(--nsff-text) !important;
}

.fct-cinema-content,
.fct-public-profile-content,
[data-fct-team-page="1"] .fct-cinema-content,
.fct-judge-page-wrap .fct-cinema-content {
	width: min(var(--fct-shared-content-width), calc(100vw - 56px)) !important;
	max-width: var(--fct-shared-content-width) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: clamp(42px, 5vw, 68px) clamp(28px, 3vw, 44px) clamp(64px, 6vw, 92px) !important;
	border-left: 1px solid rgba(166, 211, 244, .08) !important;
	border-right: 1px solid rgba(166, 211, 244, .08) !important;
	background: linear-gradient(180deg, rgba(166, 211, 244, .032), rgba(166, 211, 244, .010)) !important;
}

.fct-panel,
.fct-card,
.fct-directory-card,
[data-fct-team-page="1"] .fct-panel,
[data-fct-team-page="1"] .fct-team-card,
[data-fct-team-page="1"] .fct-task-card,
[data-fct-team-page="1"] .fct-task-group,
[data-fct-team-page="1"] .fct-dashboard-poster,
[data-fct-team-page="1"] .fct-share-panel,
[data-fct-team-page="1"] .fct-admin-team-switch,
.fct-judge-page-wrap .fct-integrated-nav,
.fct-judge-page-wrap .fct-film-card,
.fct-judge-page-wrap .fct-progress-card,
.fct-judge-page-wrap .fct-item-card,
.fct-judge-page-wrap .fct-peer-results-card,
.fct-judge-page-wrap .fct-peer-results-panel,
.fct-judge-page-wrap .fct-peer-results-stat,
.fct-judge-page-wrap .fct-award-main-player-card,
.fct-judge-page-wrap .fct-award-selection-panel,
.fct-judge-page-wrap .fct-scoreboard-card {
	border: 1px solid var(--nsff-border) !important;
	background: var(--nsff-panel-bg) !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .055), 0 18px 42px rgba(0, 0, 0, .26) !important;
	color: var(--nsff-text) !important;
}

.fct-panel,
[data-fct-team-page="1"] .fct-panel {
	padding: clamp(22px, 2.5vw, 34px) !important;
	border-radius: 0 !important;
}

.fct-btn,
button.fct-btn,
a.fct-btn,
input[type="submit"].fct-btn,
.fct-btn-secondary,
.fct-btn-primary,
.fct-btn-danger,
[data-fct-team-page="1"] .fct-btn,
.fct-judge-page-wrap .fct-btn,
.fct-directory-filter-toggle,
.fct-directory-view-all-roles {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 40px !important;
	padding: 10px 14px !important;
	border: 1px solid rgba(166, 211, 244, .34) !important;
	border-radius: 8px !important;
	background: linear-gradient(180deg, rgba(166, 211, 244, .14), rgba(126, 200, 239, .08)) !important;
	color: var(--nsff-text) !important;
	font-weight: 900 !important;
	text-decoration: none !important;
	line-height: 1.1 !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .08) !important;
	cursor: pointer !important;
}

.fct-btn:hover,
button.fct-btn:hover,
a.fct-btn:hover,
input[type="submit"].fct-btn:hover,
.fct-btn-secondary:hover,
.fct-btn-primary:hover,
.fct-btn-danger:hover,
[data-fct-team-page="1"] .fct-btn:hover,
.fct-judge-page-wrap .fct-btn:hover,
.fct-directory-filter-toggle:hover,
.fct-directory-view-all-roles:hover {
	border-color: rgba(103, 232, 249, .62) !important;
	background: linear-gradient(180deg, rgba(103, 232, 249, .18), rgba(166, 211, 244, .10)) !important;
	color: #ffffff !important;
}

.fct-btn-disabled,
.fct-btn[disabled],
button.fct-btn[disabled] {
	opacity: .48 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}

.fct-input,
.fct-directory-search,
[data-fct-team-page="1"] input[type="text"],
[data-fct-team-page="1"] input[type="email"],
[data-fct-team-page="1"] input[type="url"],
[data-fct-team-page="1"] input[type="search"],
[data-fct-team-page="1"] input[type="number"],
[data-fct-team-page="1"] textarea,
[data-fct-team-page="1"] select,
.fct-judge-page-wrap input[type="search"],
.fct-judge-page-wrap input[type="text"],
.fct-judge-page-wrap textarea,
.fct-judge-page-wrap select {
	background: var(--nsff-field-bg) !important;
	border: 1px solid rgba(166, 211, 244, .26) !important;
	border-radius: 10px !important;
	color: var(--nsff-text) !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .04) !important;
}

.fct-input:focus,
.fct-directory-search:focus,
[data-fct-team-page="1"] input:focus,
[data-fct-team-page="1"] textarea:focus,
[data-fct-team-page="1"] select:focus,
.fct-judge-page-wrap input:focus,
.fct-judge-page-wrap textarea:focus,
.fct-judge-page-wrap select:focus {
	outline: none !important;
	border-color: rgba(103, 232, 249, .62) !important;
	box-shadow: 0 0 0 4px rgba(103, 232, 249, .12) !important;
}

.fct-muted,
.fct-team-card-sub,
.fct-task-card-sub,
.fct-portal-leader,
.fct-share-subtitle,
.fct-share-help,
.fct-share-member-email,
.fct-student-discount-copy,
[data-fct-team-page="1"] p {
	color: var(--nsff-muted) !important;
}

.fct-cinema-kicker,
.fct-team-hero-kicker,
.fct-panel-kicker,
.fct-card-kicker,
.fct-admin-team-switch-kicker,
.fct-share-section-title,
.fct-section-title,
.fct-task-group-title,
.fct-last-uploaded-title,
.fct-fb-label,
.fct-fb-judge-name,
.fct-judge-page-wrap .fct-nav-kicker,
.fct-judge-page-wrap .fct-mode-kicker {
	color: var(--nsff-ice-2) !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
}

/* Shared tabs */
.fct-tabs,
.fct-team-tabs,
.fct-profile-steps,
.fct-front-admin-tabs,
.fct-judge-page-wrap .fct-judge-tabs,
.fct-judge-page-wrap .fct-tab-container,
.fct-judge-page-wrap .fct-dash-tabs {
	display: flex !important;
	align-items: stretch !important;
	border: 1px solid rgba(166, 211, 244, .18) !important;
	border-radius: 0 !important;
	background: rgba(4, 9, 17, .42) !important;
	overflow: hidden !important;
}

.fct-tabs .fct-tab,
.fct-team-tabs .fct-tab,
.fct-profile-step,
.fct-front-admin-tabs a,
.fct-judge-page-wrap .fct-judge-tabs .fct-tab,
.fct-judge-page-wrap .fct-full-tab,
.fct-judge-page-wrap .fct-dash-tab {
	flex: 1 1 0 !important;
	min-height: 50px !important;
	padding: 0 16px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	border: 0 !important;
	border-right: 1px solid rgba(166, 211, 244, .12) !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--nsff-text-soft) !important;
	font-size: 13px !important;
	font-weight: 950 !important;
	letter-spacing: .02em !important;
	text-decoration: none !important;
}

.fct-tabs .fct-tab:last-child,
.fct-team-tabs .fct-tab:last-child,
.fct-profile-step:last-child,
.fct-front-admin-tabs a:last-child,
.fct-judge-page-wrap .fct-full-tab:last-child,
.fct-judge-page-wrap .fct-dash-tab:last-child {
	border-right: 0 !important;
}

.fct-tabs .fct-tab.is-active,
.fct-tabs .fct-tab:hover,
.fct-team-tabs .fct-tab.is-active,
.fct-team-tabs .fct-tab:hover,
.fct-profile-step.is-active,
.fct-profile-step:hover,
.fct-front-admin-tabs a.is-active,
.fct-front-admin-tabs a:hover,
.fct-judge-page-wrap .fct-full-tab.is-active,
.fct-judge-page-wrap .fct-full-tab:hover,
.fct-judge-page-wrap .fct-dash-tab.is-active,
.fct-judge-page-wrap .fct-dash-tab:hover {
	background: rgba(18, 31, 49, .96) !important;
	color: #ffffff !important;
	box-shadow: inset 0 -2px 0 var(--nsff-ice-2) !important;
}

/* Team portal shell, header, and notices */
[data-fct-team-page="1"] .fct-cinema-content {
	display: grid !important;
	gap: clamp(22px, 2.8vw, 34px) !important;
}

[data-fct-team-page="1"] .fct-portal-head,
[data-fct-team-page="1"] .fct-portal-head-main {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	margin: 0 !important;
	padding: 16px 18px !important;
	border: 1px solid rgba(166, 211, 244, .18) !important;
	border-radius: 0 !important;
	background: rgba(4, 9, 17, .42) !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .04) !important;
}

[data-fct-team-page="1"] .fct-portal-title-wrap {
	min-width: 0 !important;
}

[data-fct-team-page="1"] .fct-portal-title {
	margin: 0 !important;
	color: var(--nsff-ice) !important;
	font-size: clamp(20px, 2.5vw, 30px) !important;
	font-weight: 950 !important;
	line-height: 1.1 !important;
}

[data-fct-team-page="1"] .fct-portal-leader {
	margin-top: 5px !important;
	font-size: 13px !important;
}

[data-fct-team-page="1"] .fct-portal-back-wrap {
	flex: 0 0 auto !important;
}

[data-fct-team-page="1"] .fct-portal-notice,
[data-fct-team-page="1"] .fct-archive-notice,
[data-fct-team-page="1"] .fct-student-discount-notice,
[data-fct-team-page="1"] .fct-alert,
[data-fct-team-page="1"] .fct-notice {
	padding: 14px 16px !important;
	border: 1px solid rgba(166, 211, 244, .18) !important;
	border-left: 3px solid var(--nsff-ice-2) !important;
	border-radius: 0 !important;
	background: rgba(13, 23, 38, .62) !important;
	color: var(--nsff-text-soft) !important;
}

[data-fct-team-page="1"] .fct-student-discount-title {
	margin-bottom: 5px !important;
	color: var(--nsff-ice) !important;
	font-weight: 950 !important;
	text-transform: uppercase !important;
	letter-spacing: .10em !important;
}

/* My Teams and team cards */
[data-fct-team-page="1"] .fct-admin-search-wrap {
	width: 100% !important;
	margin: 0 !important;
}

[data-fct-team-page="1"] .fct-admin-search-wrap input {
	width: 100% !important;
	min-height: 48px !important;
	padding: 0 16px !important;
}

[data-fct-team-page="1"] .fct-section-title {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	margin: clamp(8px, 1vw, 14px) 0 0 !important;
	padding-bottom: 14px !important;
	border-bottom: 1px solid rgba(166, 211, 244, .16) !important;
	color: var(--nsff-text) !important;
	font-size: clamp(20px, 2.4vw, 30px) !important;
	font-weight: 950 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

[data-fct-team-page="1"] .fct-nav-legend {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 8px 12px !important;
	font-size: 12px !important;
}

[data-fct-team-page="1"] .fct-legend-item,
[data-fct-team-page="1"] .fct-dot {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
}

[data-fct-team-page="1"] .fct-dot {
	width: 9px !important;
	height: 9px !important;
	border-radius: 999px !important;
	background: var(--fct-status-color, var(--nsff-muted-2)) !important;
	box-shadow: 0 0 12px var(--fct-status-bg, transparent) !important;
}

[data-fct-team-page="1"] .fct-team-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
	gap: clamp(18px, 2vw, 24px) !important;
}

[data-fct-team-page="1"] .fct-team-card {
	display: grid !important;
	grid-template-columns: 92px minmax(0, 1fr) !important;
	min-height: 142px !important;
	overflow: hidden !important;
	border-radius: var(--nsff-radius) !important;
	text-decoration: none !important;
	transition: transform .16s ease, border-color .16s ease, background .16s ease !important;
}

[data-fct-team-page="1"] .fct-team-card:hover {
	transform: translateY(-2px) !important;
	border-color: rgba(103, 232, 249, .44) !important;
}

[data-fct-team-page="1"] .fct-team-poster-wrap {
	width: 92px !important;
	height: 100% !important;
	min-height: 142px !important;
	background: rgba(4, 9, 17, .70) !important;
	border-right: 1px solid rgba(166, 211, 244, .12) !important;
}

[data-fct-team-page="1"] .fct-team-poster-img,
[data-fct-team-page="1"] .fct-team-poster-wrap img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}

[data-fct-team-page="1"] .fct-team-poster-placeholder {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: var(--nsff-muted) !important;
	font-size: 12px !important;
}

[data-fct-team-page="1"] .fct-team-card-info {
	min-width: 0 !important;
	padding: 16px 18px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: flex-start !important;
	gap: 8px !important;
}

[data-fct-team-page="1"] .fct-team-card-title,
[data-fct-team-page="1"] .fct-team-card-title strong {
	width: 100% !important;
	min-width: 0 !important;
	color: var(--nsff-text) !important;
	font-size: 17px !important;
	font-weight: 950 !important;
	line-height: 1.15 !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 2 !important;
	overflow: hidden !important;
}

[data-fct-team-page="1"] .fct-team-card-sub {
	max-width: 100% !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
	font-size: 13px !important;
}

/* Admin switch */
[data-fct-team-page="1"] .fct-admin-team-switch {
	display: grid !important;
	gap: 8px !important;
	padding: 12px !important;
	border-radius: 10px !important;
	min-width: min(420px, 100%) !important;
}

[data-fct-team-page="1"] .fct-admin-team-select {
	width: 100% !important;
	min-height: 42px !important;
	padding: 0 12px !important;
}

[data-fct-team-page="1"] .fct-admin-team-switch-meta {
	display: none !important;
}

/* Team dashboard */
[data-fct-team-page="1"] .fct-dashboard-top {
	display: grid !important;
	grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) !important;
	gap: clamp(22px, 3vw, 36px) !important;
	align-items: start !important;
}

[data-fct-team-page="1"] .fct-dashboard-media-col {
	display: grid !important;
	gap: 14px !important;
}

[data-fct-team-page="1"] .fct-dashboard-poster {
	width: 100% !important;
	max-width: 320px !important;
	aspect-ratio: 2 / 3 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border-radius: var(--nsff-radius) !important;
}

[data-fct-team-page="1"] .fct-dashboard-poster img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}

[data-fct-team-page="1"] .fct-dashboard-summary {
	min-width: 0 !important;
	display: grid !important;
	gap: 18px !important;
	align-content: start !important;
	padding: clamp(18px, 2.2vw, 26px) !important;
	border: 1px solid rgba(166, 211, 244, .16) !important;
	border-radius: var(--nsff-radius) !important;
	background: rgba(4, 9, 17, .32) !important;
}

[data-fct-team-page="1"] .fct-h3,
[data-fct-team-page="1"] .fct-panel h3,
[data-fct-team-page="1"] .fct-panel-title {
	margin: 0 0 12px !important;
	color: var(--nsff-text) !important;
	font-size: clamp(18px, 2vw, 24px) !important;
	font-weight: 950 !important;
}

[data-fct-team-page="1"] .fct-dashboard-progress {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	height: 14px !important;
	overflow: hidden !important;
	border: 1px solid rgba(166, 211, 244, .22) !important;
	border-radius: 999px !important;
	background: rgba(4, 9, 17, .76) !important;
}

[data-fct-team-page="1"] .fct-dashboard-progress-fill {
	display: block !important;
	height: 100% !important;
	max-width: 100% !important;
	border-radius: inherit !important;
	background: linear-gradient(90deg, var(--nsff-ice-2), var(--nsff-cyan)) !important;
	box-shadow: 0 0 18px rgba(103, 232, 249, .20) !important;
}

[data-fct-team-page="1"] .fct-dashboard-alerts,
[data-fct-team-page="1"] .fct-dashboard-promo-actions {
	display: grid !important;
	gap: 10px !important;
}

[data-fct-team-page="1"] .fct-dashboard-alert {
	padding: 12px 14px !important;
	border-radius: var(--nsff-radius-sm) !important;
	border: 1px solid var(--fct-status-border, rgba(166, 211, 244, .18)) !important;
	background: var(--fct-status-bg, rgba(166, 211, 244, .08)) !important;
	color: var(--nsff-text-soft) !important;
}

[data-fct-team-page="1"] .fct-dashboard-alert.is-warning {
	--fct-status-border: rgba(246, 183, 60, .44);
	--fct-status-bg: rgba(246, 183, 60, .10);
}

[data-fct-team-page="1"] .fct-dashboard-alert.is-expired {
	--fct-status-border: rgba(248, 113, 113, .50);
	--fct-status-bg: rgba(248, 113, 113, .12);
}

[data-fct-team-page="1"] .fct-dashboard-custom {
	display: block !important;
	padding: 0 !important;
	margin: 12px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* Task dashboard and task detail */
[data-fct-team-page="1"] .fct-task-groups,
[data-fct-team-page="1"] .fct-task-cards {
	display: grid !important;
	gap: clamp(16px, 2vw, 24px) !important;
}

[data-fct-team-page="1"] .fct-task-group {
	padding: clamp(18px, 2.4vw, 28px) !important;
	border-radius: var(--nsff-radius) !important;
}

[data-fct-team-page="1"] .fct-task-group-title {
	margin-bottom: 16px !important;
	font-size: 13px !important;
	font-weight: 950 !important;
}

[data-fct-team-page="1"] .fct-task-cards {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

[data-fct-team-page="1"] .fct-task-card {
	display: block !important;
	padding: 18px !important;
	border-radius: var(--nsff-radius) !important;
	text-decoration: none !important;
	transition: transform .16s ease, border-color .16s ease !important;
}

[data-fct-team-page="1"] .fct-task-card:hover {
	transform: translateY(-2px) !important;
	border-color: rgba(103, 232, 249, .44) !important;
}

[data-fct-team-page="1"] .fct-task-card-top {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 12px !important;
}

[data-fct-team-page="1"] .fct-task-card-title {
	color: var(--nsff-text) !important;
	font-size: 17px !important;
	font-weight: 950 !important;
	line-height: 1.2 !important;
}

[data-fct-team-page="1"] .fct-task-badge-wrap {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	margin-top: 12px !important;
}

[data-fct-team-page="1"] .fct-task-nav {
	display: grid !important;
	grid-template-columns: auto minmax(0, 1fr) auto !important;
	align-items: center !important;
	gap: 12px !important;
	margin-bottom: 18px !important;
}

[data-fct-team-page="1"] .fct-task-menu {
	position: relative !important;
	min-width: 0 !important;
}

[data-fct-team-page="1"] .fct-task-menu-panel {
	position: absolute !important;
	top: calc(100% + 8px) !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	z-index: 9000 !important;
	width: min(520px, calc(100vw - 40px)) !important;
	max-height: 60vh !important;
	overflow: auto !important;
	padding: 10px !important;
	border: 1px solid rgba(166, 211, 244, .24) !important;
	border-radius: var(--nsff-radius) !important;
	background: var(--nsff-panel-bg) !important;
	box-shadow: 0 24px 56px rgba(0, 0, 0, .44) !important;
}

[data-fct-team-page="1"] .fct-task-menu-panel[hidden],
[data-fct-team-page="1"] .is-hidden {
	display: none !important;
}

[data-fct-team-page="1"] .fct-task-menu-panel a,
[data-fct-team-page="1"] .fct-task-menu-link {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	padding: 10px 12px !important;
	border-radius: 10px !important;
	color: var(--nsff-text-soft) !important;
	text-decoration: none !important;
}

[data-fct-team-page="1"] .fct-task-menu-panel a:hover,
[data-fct-team-page="1"] .fct-task-menu-link:hover {
	background: rgba(166, 211, 244, .08) !important;
	color: #ffffff !important;
}

[data-fct-team-page="1"] .fct-unified-bar {
	display: grid !important;
	grid-template-columns: 46px minmax(0, 1fr) !important;
	gap: 14px !important;
	align-items: center !important;
	margin: 18px 0 !important;
	padding: 16px !important;
	border: 1px solid var(--fct-status-border, rgba(166, 211, 244, .20)) !important;
	border-radius: var(--nsff-radius) !important;
	background: var(--fct-status-bg, rgba(166, 211, 244, .08)) !important;
}

[data-fct-team-page="1"] .fct-unified-bar.is-draft {
	--fct-status-border: rgba(246, 183, 60, .42);
	--fct-status-bg: rgba(246, 183, 60, .10);
}

[data-fct-team-page="1"] .fct-unified-bar.is-complete,
[data-fct-team-page="1"] .fct-unified-bar.is-locked {
	--fct-status-border: rgba(52, 211, 153, .42);
	--fct-status-bg: rgba(52, 211, 153, .10);
}

[data-fct-team-page="1"] .fct-unified-bar.is-expired {
	--fct-status-border: rgba(248, 113, 113, .48);
	--fct-status-bg: rgba(248, 113, 113, .12);
}

[data-fct-team-page="1"] .fct-bar-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 46px !important;
	height: 46px !important;
	border-radius: 999px !important;
	background: rgba(4, 9, 17, .42) !important;
	border: 1px solid rgba(226, 245, 255, .13) !important;
}

[data-fct-team-page="1"] .fct-bar-content {
	display: grid !important;
	gap: 4px !important;
	min-width: 0 !important;
}

[data-fct-team-page="1"] .fct-bar-content strong {
	color: var(--nsff-text) !important;
	font-weight: 950 !important;
}

[data-fct-team-page="1"] .fct-bar-content span {
	color: var(--nsff-text-soft) !important;
}

[data-fct-team-page="1"] .fct-inline-poster {
	width: min(280px, 100%) !important;
	margin: 18px 0 !important;
}

[data-fct-team-page="1"] .fct-inline-poster img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	border-radius: var(--nsff-radius) !important;
	border: 1px solid rgba(166, 211, 244, .20) !important;
}

[data-fct-team-page="1"] .fct-form-footer {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	margin-top: 22px !important;
	padding-top: 18px !important;
	border-top: 1px solid rgba(166, 211, 244, .14) !important;
}

[data-fct-team-page="1"] .fct-form-footer-left,
[data-fct-team-page="1"] .fct-form-footer-right {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
}

[data-fct-team-page="1"] .fct-action-primary,
[data-fct-team-page="1"] .fct-mark-complete-btn {
	border-color: rgba(52, 211, 153, .46) !important;
	background: linear-gradient(180deg, rgba(52, 211, 153, .18), rgba(13, 23, 38, .92)) !important;
}

[data-fct-team-page="1"] .fct-action-msg,
[data-fct-team-page="1"] .fct-draft-msg {
	color: var(--nsff-text-soft) !important;
	font-size: 13px !important;
}

/* Uploaded file, feedback, and payment blocks */
[data-fct-team-page="1"] .fct-files-wrap,
[data-fct-team-page="1"] .fct-payment-list,
[data-fct-team-page="1"] .fct-fb-wrap,
[data-fct-team-page="1"] .fct-last-uploaded-list {
	display: grid !important;
	gap: 12px !important;
	margin-top: 16px !important;
}

[data-fct-team-page="1"] .fct-files-block,
[data-fct-team-page="1"] .fct-payment-list > div,
[data-fct-team-page="1"] .fct-fb-block,
[data-fct-team-page="1"] .fct-last-uploaded-list > div {
	padding: 14px !important;
	border: 1px solid rgba(166, 211, 244, .14) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(4, 9, 17, .32) !important;
}

[data-fct-team-page="1"] .fct-fb-title {
	margin-bottom: 12px !important;
	color: var(--nsff-text) !important;
	font-weight: 950 !important;
}

[data-fct-team-page="1"] .fct-fb-judge {
	padding: 12px 0 !important;
	border-top: 1px solid rgba(166, 211, 244, .12) !important;
}

[data-fct-team-page="1"] .fct-fb-text {
	color: var(--nsff-text-soft) !important;
	line-height: 1.6 !important;
}

/* Team access and sharing */
[data-fct-team-page="1"] .fct-share-panel {
	padding: clamp(22px, 2.5vw, 32px) !important;
	border-radius: var(--nsff-radius) !important;
}

[data-fct-team-page="1"] .fct-share-head,
[data-fct-team-page="1"] .fct-panel-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	padding-bottom: 16px !important;
	margin-bottom: 18px !important;
	border-bottom: 1px solid rgba(166, 211, 244, .14) !important;
}

[data-fct-team-page="1"] .fct-share-title {
	font-size: clamp(18px, 2vw, 24px) !important;
	font-weight: 950 !important;
	color: var(--nsff-text) !important;
}

[data-fct-team-page="1"] .fct-share-body,
[data-fct-team-page="1"] .fct-share-section,
[data-fct-team-page="1"] .fct-share-member-list {
	display: grid !important;
	gap: 14px !important;
}

[data-fct-team-page="1"] .fct-share-member-row {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 14px !important;
	padding: 14px !important;
	border: 1px solid rgba(166, 211, 244, .14) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(4, 9, 17, .34) !important;
}

[data-fct-team-page="1"] .fct-share-member-main {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	min-width: 0 !important;
}

[data-fct-team-page="1"] .fct-share-avatar,
[data-fct-team-page="1"] .fct-share-avatar img {
	width: 42px !important;
	height: 42px !important;
	border-radius: 999px !important;
}

[data-fct-team-page="1"] .fct-share-avatar.is-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(166, 211, 244, .10) !important;
	border: 1px solid rgba(166, 211, 244, .20) !important;
}

[data-fct-team-page="1"] .fct-share-member-copy,
[data-fct-team-page="1"] .fct-share-member-name,
[data-fct-team-page="1"] .fct-share-member-email {
	min-width: 0 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

[data-fct-team-page="1"] .fct-share-invite {
	display: grid !important;
	gap: 10px !important;
}

[data-fct-team-page="1"] .fct-share-invite-row {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 10px !important;
	align-items: center !important;
}

/* Lightbox and modal */
[data-fct-team-page="1"] .fct-lightbox-box,
[data-fct-team-page="1"] .fct-modal-box {
	background: var(--nsff-panel-bg) !important;
	border: 1px solid rgba(166, 211, 244, .24) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .55) !important;
}

[data-fct-team-page="1"] .fct-modal-title {
	color: var(--nsff-text) !important;
	font-weight: 950 !important;
}

[data-fct-team-page="1"] .fct-modal-desc,
[data-fct-team-page="1"] .fct-modal-list {
	color: var(--nsff-text-soft) !important;
}

/* Status chips, only status classes use amber, green, or red. */
.is-new,
.is-pending,
.is-prog,
.is-progress,
.is-pay,
.is-in-progress,
.status-pending,
.status-in-progress,
.fct-status-pending,
.fct-badge.is-new,
.fct-badge.is-prog,
.fct-badge.is-pay,
.fct-dot.is-new,
.fct-dot.is-prog {
	--fct-status-color: var(--nsff-pending) !important;
	--fct-status-bg: rgba(246, 183, 60, .11) !important;
	--fct-status-border: rgba(246, 183, 60, .46) !important;
}

.is-done,
.is-finished,
.is-complete,
.is-submitted,
.is-approved,
.status-done,
.status-submitted,
.status-finished,
.fct-status-done,
.fct-status-submitted,
.fct-badge.is-done,
.fct-badge.is-complete,
.fct-dot.is-done {
	--fct-status-color: var(--nsff-done) !important;
	--fct-status-bg: rgba(52, 211, 153, .11) !important;
	--fct-status-border: rgba(52, 211, 153, .46) !important;
}

.is-expired,
.is-overdue,
.is-closed,
.is-danger,
.is-deadline-passed,
.status-expired,
.status-closed,
.status-overdue,
.fct-status-expired,
.fct-status-closed,
.fct-badge.is-expired,
.fct-badge.is-closed,
.fct-dot.is-expired {
	--fct-status-color: var(--nsff-expired) !important;
	--fct-status-bg: rgba(248, 113, 113, .12) !important;
	--fct-status-border: rgba(248, 113, 113, .50) !important;
}

.fct-badge,
.fct-mobile-status,
.fct-judge-status-count,
.fct-profile-status-badge,
.fct-judge-special-badge {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	width: fit-content !important;
	padding: 5px 9px !important;
	border: 1px solid var(--fct-status-border, rgba(166, 211, 244, .28)) !important;
	background: var(--fct-status-bg, rgba(166, 211, 244, .09)) !important;
	color: var(--fct-status-color, var(--nsff-ice-2)) !important;
	border-radius: 999px !important;
	font-size: 11px !important;
	font-weight: 950 !important;
	line-height: 1 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

@media (max-width: 900px) {
	.fct-cinema-content,
	.fct-public-profile-content,
	[data-fct-team-page="1"] .fct-cinema-content,
	.fct-judge-page-wrap .fct-cinema-content {
		width: min(100% - 28px, var(--fct-shared-content-width)) !important;
		padding: 32px 16px 58px !important;
		border-left: 0 !important;
		border-right: 0 !important;
	}

	[data-fct-team-page="1"] .fct-portal-head,
	[data-fct-team-page="1"] .fct-portal-head-main,
	[data-fct-team-page="1"] .fct-section-title,
	[data-fct-team-page="1"] .fct-share-head,
	[data-fct-team-page="1"] .fct-panel-header {
		align-items: flex-start !important;
		flex-direction: column !important;
	}

	[data-fct-team-page="1"] .fct-dashboard-top,
	[data-fct-team-page="1"] .fct-task-nav,
	[data-fct-team-page="1"] .fct-share-invite-row {
		grid-template-columns: 1fr !important;
	}

	[data-fct-team-page="1"] .fct-dashboard-poster {
		max-width: 260px !important;
	}

	[data-fct-team-page="1"] .fct-team-grid,
	[data-fct-team-page="1"] .fct-task-cards {
		grid-template-columns: 1fr !important;
	}

	[data-fct-team-page="1"] .fct-form-footer,
	[data-fct-team-page="1"] .fct-share-member-row {
		align-items: stretch !important;
		flex-direction: column !important;
	}
}

@media (max-width: 560px) {
	[data-fct-team-page="1"] .fct-team-card {
		grid-template-columns: 78px minmax(0, 1fr) !important;
		min-height: 122px !important;
	}

	[data-fct-team-page="1"] .fct-team-poster-wrap {
		width: 78px !important;
		min-height: 122px !important;
	}

	.fct-tabs,
	.fct-team-tabs,
	.fct-profile-steps,
	.fct-front-admin-tabs,
	.fct-judge-page-wrap .fct-tab-container,
	.fct-judge-page-wrap .fct-dash-tabs {
		overflow-x: auto !important;
	}

	.fct-tabs .fct-tab,
	.fct-team-tabs .fct-tab,
	.fct-profile-step,
	.fct-front-admin-tabs a,
	.fct-judge-page-wrap .fct-full-tab,
	.fct-judge-page-wrap .fct-dash-tab {
		min-width: 160px !important;
	}
}


/* Judge portal status and detail-page polish, v42.13.7
   Keep this in the shared UI layer so statuses and judging details use the same system everywhere. */
.fct-badge,
.fct-mobile-status,
.fct-judge-status-count,
.fct-status-banner-target,
.fct-nav-item,
.fct-dot {
	--fct-status-color: var(--nsff-muted) !important;
	--fct-status-bg: rgba(115, 131, 154, .12) !important;
	--fct-status-border: rgba(115, 131, 154, .34) !important;
}

.is-new,
.st-grey,
.status-not-started,
.fct-status-not-started,
.fct-badge.is-new,
.fct-mobile-status.is-new,
.fct-judge-status-count.is-new,
.fct-status-banner-target.st-grey,
.fct-nav-item.is-new,
.fct-dot.is-new {
	--fct-status-color: var(--nsff-muted) !important;
	--fct-status-bg: rgba(115, 131, 154, .12) !important;
	--fct-status-border: rgba(115, 131, 154, .34) !important;
}

.is-pending,
.is-prog,
.is-progress,
.is-pay,
.is-in-progress,
.st-yellow,
.status-pending,
.status-in-progress,
.fct-status-pending,
.fct-badge.is-pending,
.fct-badge.is-prog,
.fct-badge.is-pay,
.fct-mobile-status.is-prog,
.fct-judge-status-count.is-prog,
.fct-status-banner-target.st-yellow,
.fct-nav-item.is-prog,
.fct-dot.is-prog {
	--fct-status-color: var(--nsff-pending) !important;
	--fct-status-bg: rgba(246, 183, 60, .11) !important;
	--fct-status-border: rgba(246, 183, 60, .46) !important;
}

.is-done,
.is-finished,
.is-complete,
.is-submitted,
.is-approved,
.st-green,
.status-done,
.status-submitted,
.status-finished,
.fct-status-done,
.fct-status-submitted,
.fct-badge.is-done,
.fct-badge.is-complete,
.fct-mobile-status.is-done,
.fct-judge-status-count.is-done,
.fct-status-banner-target.st-green,
.fct-nav-item.is-done,
.fct-dot.is-done {
	--fct-status-color: var(--nsff-done) !important;
	--fct-status-bg: rgba(52, 211, 153, .11) !important;
	--fct-status-border: rgba(52, 211, 153, .46) !important;
}

.fct-judge-page-wrap .fct-nav-item,
.fct-judge-page-wrap .fct-dot,
.fct-judge-page-wrap .fct-badge,
.fct-judge-page-wrap .fct-mobile-status,
.fct-judge-page-wrap .fct-judge-status-count,
.fct-judge-page-wrap .fct-status-banner-target {
	border-color: var(--fct-status-border, rgba(166, 211, 244, .28)) !important;
	background: var(--fct-status-bg, rgba(166, 211, 244, .09)) !important;
	color: var(--fct-status-color, var(--nsff-ice-2)) !important;
}

.fct-judge-page-wrap .fct-dot {
	width: 9px !important;
	height: 9px !important;
	border-radius: 999px !important;
	padding: 0 !important;
	box-shadow: 0 0 12px var(--fct-status-bg, transparent) !important;
}

.fct-judge-page-wrap .fct-section {
	display: grid !important;
	gap: 18px !important;
	padding: clamp(18px, 2.2vw, 28px) !important;
	background: var(--nsff-panel-bg) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: var(--nsff-shadow-soft) !important;
}

.fct-judge-page-wrap .fct-judge-detail-tools {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 14px !important;
	align-items: stretch !important;
}

.fct-judge-page-wrap .fct-judge-guidelines-btn,
.fct-judge-page-wrap .fct-judge-control-pill {
	min-height: 52px !important;
	padding: 13px 16px !important;
	border: 1px solid var(--nsff-border-strong) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(166, 211, 244, .07) !important;
	color: var(--nsff-text) !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap .fct-judge-control-pill {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	min-width: 260px !important;
}

.fct-judge-page-wrap .fct-judge-control-pill span {
	color: var(--nsff-text-soft) !important;
	font-size: 12px !important;
	font-weight: 950 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

.fct-judge-page-wrap .fct-judge-control-pill strong {
	color: var(--nsff-ice) !important;
	font-size: 18px !important;
	font-weight: 950 !important;
	white-space: nowrap !important;
}

.fct-judge-page-wrap .fct-control-rules-box {
	overflow: hidden !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(5, 8, 13, .42) !important;
}

.fct-judge-page-wrap .fct-control-rules-head {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 14px !important;
	padding: 15px 17px !important;
	cursor: pointer !important;
	background: rgba(166, 211, 244, .07) !important;
	border-bottom: 1px solid var(--nsff-border-soft) !important;
}

.fct-judge-page-wrap .fct-control-rules-title,
.fct-judge-page-wrap .fct-control-rules-toggle {
	color: var(--nsff-text) !important;
	font-weight: 950 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

.fct-judge-page-wrap .fct-control-rules-title {
	font-size: 13px !important;
}

.fct-judge-page-wrap .fct-control-rules-toggle {
	color: var(--nsff-muted) !important;
	font-size: 11px !important;
	white-space: nowrap !important;
}

.fct-judge-page-wrap .fct-control-rules-body {
	padding: 18px !important;
	color: var(--nsff-text-soft) !important;
}

.fct-judge-page-wrap .fct-control-rules-body.is-collapsed {
	display: none !important;
}

.fct-judge-page-wrap .fct-global-rules,
.fct-judge-page-wrap .fct-global-rules * {
	font-family: inherit !important;
	color: var(--nsff-text-soft) !important;
}

.fct-judge-page-wrap .fct-global-rules > div,
.fct-judge-page-wrap .fct-global-rules details > div,
.fct-judge-page-wrap .fct-global-rules [style*="background"] {
	background: rgba(13, 21, 34, .78) !important;
	border-color: var(--nsff-border) !important;
	color: var(--nsff-text-soft) !important;
}

.fct-judge-page-wrap .fct-global-rules h1,
.fct-judge-page-wrap .fct-global-rules h2,
.fct-judge-page-wrap .fct-global-rules h3,
.fct-judge-page-wrap .fct-global-rules h4,
.fct-judge-page-wrap .fct-global-rules summary,
.fct-judge-page-wrap .fct-global-rules strong {
	color: var(--nsff-text) !important;
}

.fct-judge-page-wrap .fct-global-rules [style*="color: #c53030"],
.fct-judge-page-wrap .fct-global-rules [style*="color:#c53030"] {
	color: var(--nsff-expired) !important;
}

.fct-judge-page-wrap .fct-judge-desktop-required-warning {
	padding: 16px 18px !important;
	border: 1px solid rgba(246, 183, 60, .36) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(246, 183, 60, .08) !important;
	color: var(--nsff-text-soft) !important;
	line-height: 1.55 !important;
}

.fct-judge-page-wrap .fct-judge-desktop-required-warning strong {
	display: block !important;
	margin-bottom: 4px !important;
	color: var(--nsff-pending) !important;
	font-size: 13px !important;
	font-weight: 950 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

.fct-judge-page-wrap .fct-judge-video-frame,
.fct-judge-page-wrap .fct-media-embed-shell,
.fct-judge-page-wrap .fct-media-embed-inner {
	width: 100% !important;
}

.fct-judge-page-wrap .fct-media-embed-shell {
	padding: 10px !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	background: rgba(5, 8, 13, .60) !important;
}

.fct-judge-page-wrap .fct-media-aspect {
	position: relative !important;
	width: 100% !important;
	aspect-ratio: 16 / 9 !important;
	overflow: hidden !important;
	border-radius: calc(var(--nsff-radius) - 6px) !important;
	background: #000 !important;
}

.fct-judge-page-wrap .fct-media-aspect iframe {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	border: 0 !important;
}

.fct-judge-page-wrap .fct-form-wrapper {
	padding: clamp(16px, 2vw, 24px) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	background: rgba(5, 8, 13, .46) !important;
}

.fct-judge-page-wrap .fct-form-wrapper fieldset {
	border: 0 !important;
	background: transparent !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-t-container {
	gap: 18px !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-t-cell {
	padding: 0 !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-group {
	margin-bottom: 18px !important;
	padding: 15px !important;
	border: 1px solid var(--nsff-border-soft) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(13, 21, 34, .72) !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-input--label label,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-input--label,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-group label {
	color: var(--nsff-text) !important;
	font-weight: 900 !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-input--content {
	margin-top: 10px !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
	display: grid !important;
	grid-template-columns: repeat(10, minmax(34px, 1fr)) !important;
	gap: 6px !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 38px !important;
	padding: 0 !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: 10px !important;
	background: rgba(5, 8, 13, .74) !important;
	color: var(--nsff-text-soft) !important;
	font-weight: 900 !important;
	cursor: pointer !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label input {
	position: absolute !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label:has(input:checked),
.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label.is-checked {
	border-color: rgba(166, 211, 244, .60) !important;
	background: rgba(166, 211, 244, .16) !important;
	color: #fff !important;
}

.fct-judge-page-wrap .fct-form-wrapper textarea,
.fct-judge-page-wrap .fct-form-wrapper input[type="text"],
.fct-judge-page-wrap .fct-form-wrapper input[type="email"],
.fct-judge-page-wrap .fct-form-wrapper select {
	width: 100% !important;
	min-height: 48px !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: var(--nsff-field-bg) !important;
	color: var(--nsff-text) !important;
	padding: 12px 14px !important;
}

.fct-judge-page-wrap #fct-score-guide {
	margin: 0 0 18px !important;
}

.fct-judge-page-wrap #fct-score-guide .sg-wrap {
	padding: 18px !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	background: rgba(13, 21, 34, .80) !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap #fct-score-guide .sg-title {
	color: var(--nsff-text) !important;
	font-size: 17px !important;
	font-weight: 950 !important;
}

.fct-judge-page-wrap #fct-score-guide .sg-sub,
.fct-judge-page-wrap #fct-score-guide .sg-desc {
	color: var(--nsff-muted) !important;
}

.fct-judge-page-wrap #fct-score-guide .sg-grid {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 10px !important;
}

.fct-judge-page-wrap #fct-score-guide .sg-card {
	min-width: 0 !important;
	padding: 13px !important;
	border: 1px solid var(--nsff-border-soft) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(5, 8, 13, .62) !important;
}

.fct-judge-page-wrap #fct-score-guide .sg-range {
	border-color: var(--nsff-border-strong) !important;
	background: rgba(166, 211, 244, .12) !important;
	color: var(--nsff-ice) !important;
}

.fct-judge-page-wrap #fct-score-guide .sg-label {
	color: var(--nsff-text) !important;
}

.fct-judge-page-wrap .fct-form-footer {
	margin-top: 16px !important;
	padding: 16px !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	background: rgba(5, 8, 13, .64) !important;
}

.fct-judge-page-wrap .fct-save-status {
	min-height: 20px !important;
	color: var(--nsff-muted) !important;
	font-weight: 850 !important;
}

.fct-judge-page-wrap .fct-save-status.is-saving {
	color: var(--nsff-pending) !important;
}

.fct-judge-page-wrap .fct-save-status.is-success {
	color: var(--nsff-ice-2) !important;
}

.fct-judge-page-wrap .fct-save-status.is-error {
	color: var(--nsff-expired) !important;
}

@media (max-width: 980px) {
	.fct-judge-page-wrap .fct-judge-detail-tools {
		grid-template-columns: 1fr !important;
	}

	.fct-judge-page-wrap .fct-judge-control-pill {
		min-width: 0 !important;
	}

	.fct-judge-page-wrap #fct-score-guide .sg-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 620px) {
	.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
		grid-template-columns: repeat(5, minmax(34px, 1fr)) !important;
	}

	.fct-judge-page-wrap #fct-score-guide .sg-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Judge form mobile support, v42.13.8
   Keep this in shared UI so the official judging form can scale without inline fixes. */
.fct-judge-page-wrap .fct-judge-mobile-friendly-note,
.fct-judge-page-wrap .fct-judge-desktop-required-warning {
	padding: 16px 18px !important;
	border: 1px solid rgba(166, 211, 244, .34) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(166, 211, 244, .08) !important;
	color: var(--nsff-text-soft) !important;
	line-height: 1.55 !important;
}

.fct-judge-page-wrap .fct-judge-mobile-friendly-note strong,
.fct-judge-page-wrap .fct-judge-desktop-required-warning strong {
	display: block !important;
	margin-bottom: 4px !important;
	color: var(--nsff-ice) !important;
	font-size: 13px !important;
	font-weight: 950 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

.fct-judge-page-wrap .fct-judge-single-view,
.fct-judge-page-wrap .fct-section,
.fct-judge-page-wrap .fct-judge-mobile-block-target,
.fct-judge-page-wrap .fct-form-wrapper {
	max-width: 100% !important;
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-tooltip,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-tooltip svg {
	max-width: 100% !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-group,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-input--content,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label {
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label span {
	line-height: 1 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	min-width: 0 !important;
	color: inherit !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-input--label {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-input--label label {
	min-width: 0 !important;
	overflow-wrap: anywhere !important;
}

.fct-judge-page-wrap .fct-form-wrapper textarea {
	min-height: 130px !important;
	line-height: 1.55 !important;
	resize: vertical !important;
}

@media (max-width: 860px) {
	.fct-judge-page-wrap .fct-judge-single-view {
		display: grid !important;
		gap: 18px !important;
	}

	.fct-judge-page-wrap .fct-navigator-wrap,
	.fct-judge-page-wrap .fct-section,
	.fct-judge-page-wrap .fct-form-wrapper,
	.fct-judge-page-wrap .fct-form-footer {
		padding: 16px !important;
		border-radius: var(--nsff-radius-sm) !important;
	}

	.fct-judge-page-wrap .fct-navigator-list {
		display: flex !important;
		flex-wrap: nowrap !important;
		gap: 8px !important;
		overflow-x: auto !important;
		padding: 4px 2px 12px !important;
		margin-inline: -2px !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: thin !important;
		scrollbar-color: rgba(166, 211, 244, .55) rgba(5, 8, 13, .35) !important;
	}

	.fct-judge-page-wrap .fct-nav-item {
		flex: 0 0 38px !important;
		width: 38px !important;
		height: 38px !important;
	}

	.fct-judge-page-wrap .fct-nav-legend {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 8px 14px !important;
	}

	.fct-judge-page-wrap .fct-judge-film-nav-row,
	.fct-judge-page-wrap .fct-judge-film-nav-actions {
		align-items: stretch !important;
	}

	.fct-judge-page-wrap .fct-judge-film-nav-row > .fct-btn,
	.fct-judge-page-wrap .fct-judge-film-nav-actions > .fct-btn {
		flex: 1 1 auto !important;
	}

	.fct-judge-page-wrap .fct-judge-detail-tools,
	.fct-judge-page-wrap .fct-judge-control-pill {
		grid-template-columns: 1fr !important;
		width: 100% !important;
		min-width: 0 !important;
	}

	.fct-judge-page-wrap .fct-judge-control-pill {
		align-items: flex-start !important;
		flex-direction: column !important;
		gap: 6px !important;
	}

	.fct-judge-page-wrap .fct-control-rules-head {
		align-items: flex-start !important;
		flex-direction: column !important;
		gap: 6px !important;
	}

	.fct-judge-page-wrap .fct-control-rules-toggle {
		white-space: normal !important;
	}

	.fct-judge-page-wrap .fct-media-embed-shell {
		padding: 6px !important;
		border-radius: var(--nsff-radius-sm) !important;
	}

	.fct-judge-page-wrap .fct-media-aspect {
		border-radius: 8px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-t-container,
	.fct-judge-page-wrap .fct-form-wrapper .ff-column-container,
	.fct-judge-page-wrap .fct-form-wrapper .ff_columns_total_2 {
		display: block !important;
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-t-cell,
	.fct-judge-page-wrap .fct-form-wrapper .ff-t-column-1,
	.fct-judge-page-wrap .fct-form-wrapper .ff-t-column-2 {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		flex-basis: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
		grid-template-columns: repeat(5, minmax(42px, 1fr)) !important;
		gap: 8px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label {
		min-height: 44px !important;
		border-radius: 9px !important;
		font-size: 14px !important;
	}

	.fct-judge-page-wrap #fct-score-guide .sg-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.fct-judge-page-wrap .fct-form-footer,
	.fct-judge-page-wrap .fct-judge-action-status,
	.fct-judge-page-wrap .fct-judge-action-lock,
	.fct-judge-page-wrap .fct-judge-action-buttons {
		align-items: stretch !important;
		flex-direction: column !important;
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-judge-action-buttons .fct-action-btn,
	.fct-judge-page-wrap .fct-form-footer .fct-action-btn {
		width: 100% !important;
		min-height: 48px !important;
	}

	.fct-judge-page-wrap .fct-status-banner-target {
		align-self: flex-start !important;
	}
}

@media (max-width: 520px) {
	.fct-judge-page-wrap .fct-cinema-content {
		width: min(100% - 18px, var(--fct-shared-content-width)) !important;
		padding-inline: 10px !important;
	}

	.fct-judge-page-wrap .fct-navigator-wrap,
	.fct-judge-page-wrap .fct-section,
	.fct-judge-page-wrap .fct-form-wrapper,
	.fct-judge-page-wrap .fct-form-footer {
		padding: 14px !important;
	}

	.fct-judge-page-wrap .fct-judge-film-nav-row,
	.fct-judge-page-wrap .fct-judge-film-nav-actions {
		flex-direction: column !important;
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-judge-film-nav-row .fct-btn,
	.fct-judge-page-wrap .fct-judge-film-nav-actions .fct-btn,
	.fct-judge-page-wrap .fct-judge-guidelines-btn {
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-el-group {
		padding: 13px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
		grid-template-columns: repeat(5, minmax(34px, 1fr)) !important;
		gap: 6px !important;
	}

	.fct-judge-page-wrap #fct-score-guide .sg-grid {
		grid-template-columns: 1fr !important;
	}
}


/* Judge portal v42.13.9: shared legend status styling and responsive media embeds */
.fct-nav-legend {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 8px 10px !important;
	margin-top: 10px !important;
}

.fct-legend-item {
	display: inline-flex !important;
	align-items: center !important;
	gap: 7px !important;
	width: fit-content !important;
	padding: 5px 9px !important;
	border: 1px solid var(--fct-status-border, rgba(115, 131, 154, .34)) !important;
	border-radius: 999px !important;
	background: var(--fct-status-bg, rgba(115, 131, 154, .12)) !important;
	color: var(--fct-status-color, var(--nsff-muted)) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
	white-space: nowrap !important;
}

.fct-legend-item.is-new,
.fct-legend-item:has(.fct-dot.is-new) {
	--fct-status-color: var(--nsff-muted) !important;
	--fct-status-bg: rgba(115, 131, 154, .12) !important;
	--fct-status-border: rgba(115, 131, 154, .34) !important;
}

.fct-legend-item.is-prog,
.fct-legend-item.is-pending,
.fct-legend-item:has(.fct-dot.is-prog),
.fct-legend-item:has(.fct-dot.is-pending) {
	--fct-status-color: var(--nsff-pending) !important;
	--fct-status-bg: rgba(246, 183, 60, .11) !important;
	--fct-status-border: rgba(246, 183, 60, .46) !important;
}

.fct-legend-item.is-done,
.fct-legend-item.is-submitted,
.fct-legend-item:has(.fct-dot.is-done),
.fct-legend-item:has(.fct-dot.is-submitted) {
	--fct-status-color: var(--nsff-done) !important;
	--fct-status-bg: rgba(52, 211, 153, .11) !important;
	--fct-status-border: rgba(52, 211, 153, .46) !important;
}

.fct-legend-item.is-expired,
.fct-legend-item.is-closed,
.fct-legend-item:has(.fct-dot.is-expired),
.fct-legend-item:has(.fct-dot.is-closed) {
	--fct-status-color: var(--nsff-expired) !important;
	--fct-status-bg: rgba(239, 68, 68, .12) !important;
	--fct-status-border: rgba(239, 68, 68, .48) !important;
}

.fct-dot {
	display: inline-block !important;
	flex: 0 0 auto !important;
	width: 9px !important;
	height: 9px !important;
	min-width: 9px !important;
	min-height: 9px !important;
	padding: 0 !important;
	border: 1px solid var(--fct-status-border, rgba(115, 131, 154, .34)) !important;
	border-radius: 999px !important;
	background: var(--fct-status-color, var(--nsff-muted)) !important;
	box-shadow: 0 0 12px var(--fct-status-bg, transparent) !important;
}

/* Make judge video embeds responsive even when iframes/videos bring their own dimensions. */
.fct-judge-page-wrap .fct-section,
.fct-judge-page-wrap .fct-judge-video-frame,
.fct-judge-page-wrap .fct-judge-mobile-block-target,
.fct-judge-page-wrap .fct-media-embed-shell,
.fct-judge-page-wrap .fct-media-embed-inner {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-media-embed-shell {
	display: block !important;
	overflow: hidden !important;
}

.fct-judge-page-wrap .fct-media-embed-inner {
	display: block !important;
}

.fct-judge-page-wrap .fct-media-aspect {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	height: 0 !important;
	padding-top: 56.25% !important;
	aspect-ratio: auto !important;
	overflow: hidden !important;
	border-radius: calc(var(--nsff-radius) - 6px) !important;
	background: #000 !important;
}

.fct-judge-page-wrap .fct-media-drive-aspect {
	padding-top: 75% !important;
}

.fct-judge-page-wrap .fct-media-aspect iframe,
.fct-judge-page-wrap .fct-media-aspect video,
.fct-judge-page-wrap .fct-media-aspect embed,
.fct-judge-page-wrap .fct-media-aspect object {
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	border: 0 !important;
}

@media (max-width: 760px) {
	.fct-nav-legend {
		gap: 7px !important;
	}

	.fct-legend-item {
		font-size: 10px !important;
		padding: 5px 8px !important;
	}

	.fct-judge-page-wrap .fct-media-embed-shell {
		padding: 6px !important;
	}
}

/* Judge portal v42.13.10: stronger mobile rules for status legend, media embeds, judge form, and dashboard cards */
.fct-nav-legend,
.fct-judge-page-wrap .fct-nav-legend {
	box-sizing: border-box !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	margin: 10px 0 0 !important;
	padding: 0 !important;
}

.fct-legend-item,
.fct-judge-page-wrap .fct-legend-item {
	box-sizing: border-box !important;
	flex: 0 0 auto !important;
	min-width: 0 !important;
	max-width: 100% !important;
}

.fct-dot.is-new,
.fct-badge.is-new,
.fct-status.is-new,
.fct-legend-item.is-new {
	--fct-status-color: var(--nsff-muted) !important;
	--fct-status-bg: rgba(115, 131, 154, .12) !important;
	--fct-status-border: rgba(115, 131, 154, .34) !important;
}

.fct-dot.is-prog,
.fct-dot.is-pending,
.fct-badge.is-prog,
.fct-badge.is-pending,
.fct-status.is-prog,
.fct-status.is-pending,
.fct-legend-item.is-prog,
.fct-legend-item.is-pending {
	--fct-status-color: var(--nsff-pending) !important;
	--fct-status-bg: rgba(246, 183, 60, .11) !important;
	--fct-status-border: rgba(246, 183, 60, .46) !important;
}

.fct-dot.is-done,
.fct-dot.is-submitted,
.fct-badge.is-done,
.fct-badge.is-submitted,
.fct-status.is-done,
.fct-status.is-submitted,
.fct-legend-item.is-done,
.fct-legend-item.is-submitted {
	--fct-status-color: var(--nsff-done) !important;
	--fct-status-bg: rgba(52, 211, 153, .11) !important;
	--fct-status-border: rgba(52, 211, 153, .46) !important;
}

.fct-dot.is-expired,
.fct-dot.is-closed,
.fct-badge.is-expired,
.fct-badge.is-closed,
.fct-status.is-expired,
.fct-status.is-closed,
.fct-legend-item.is-expired,
.fct-legend-item.is-closed {
	--fct-status-color: var(--nsff-expired) !important;
	--fct-status-bg: rgba(239, 68, 68, .12) !important;
	--fct-status-border: rgba(239, 68, 68, .48) !important;
}

.fct-media-embed-shell,
.fct-media-embed-inner,
.fct-media-aspect,
.fct-judge-video-frame,
.fct-judge-mobile-block-target,
.fct-judge-page-wrap .fct-media-embed-shell,
.fct-judge-page-wrap .fct-media-embed-inner,
.fct-judge-page-wrap .fct-media-aspect,
.fct-judge-page-wrap .fct-judge-video-frame,
.fct-judge-page-wrap .fct-judge-mobile-block-target {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.fct-media-embed-shell,
.fct-judge-page-wrap .fct-media-embed-shell {
	display: block !important;
	overflow: hidden !important;
	clear: both !important;
}

.fct-media-embed-inner,
.fct-judge-page-wrap .fct-media-embed-inner {
	display: block !important;
	overflow: hidden !important;
}

.fct-media-aspect,
.fct-judge-page-wrap .fct-media-aspect {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	aspect-ratio: 16 / 9 !important;
	padding: 0 !important;
	overflow: hidden !important;
	background: #000 !important;
}

.fct-media-drive-aspect,
.fct-judge-page-wrap .fct-media-drive-aspect {
	aspect-ratio: 4 / 3 !important;
}

.fct-media-aspect iframe,
.fct-media-aspect video,
.fct-media-aspect embed,
.fct-media-aspect object,
.fct-media-embed-shell > iframe,
.fct-media-embed-shell > video,
.fct-judge-page-wrap .fct-media-aspect iframe,
.fct-judge-page-wrap .fct-media-aspect video,
.fct-judge-page-wrap .fct-media-aspect embed,
.fct-judge-page-wrap .fct-media-aspect object,
.fct-judge-page-wrap .fct-media-embed-shell > iframe,
.fct-judge-page-wrap .fct-media-embed-shell > video {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	border: 0 !important;
}

.fct-media-embed-shell > iframe,
.fct-media-embed-shell > video,
.fct-judge-page-wrap .fct-media-embed-shell > iframe,
.fct-judge-page-wrap .fct-media-embed-shell > video {
	position: relative !important;
	inset: auto !important;
	aspect-ratio: 16 / 9 !important;
	height: auto !important;
}

.fct-judge-page-wrap .fct-form-wrapper,
.fct-judge-page-wrap .fct-form-wrapper form,
.fct-judge-page-wrap .fct-form-wrapper fieldset,
.fct-judge-page-wrap .fct-form-wrapper .ff-t-container,
.fct-judge-page-wrap .fct-form-wrapper .ff-column-container,
.fct-judge-page-wrap .fct-form-wrapper .ff-t-cell,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-group,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-input--content,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label,
#fct-score-guide,
#fct-score-guide .sg-wrap,
#fct-score-guide .sg-grid,
#fct-score-guide .sg-card {
	box-sizing: border-box !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label span {
	position: relative !important;
	z-index: 1 !important;
}

.fct-personal-favorites-panel,
.fct-nominations-panel,
.fct-grid-4,
.fct-favorite-card,
.fct-award-bg,
.fct-judge-page-wrap .fct-personal-favorites-panel,
.fct-judge-page-wrap .fct-nominations-panel,
.fct-judge-page-wrap .fct-grid-4,
.fct-judge-page-wrap .fct-favorite-card,
.fct-judge-page-wrap .fct-award-bg {
	box-sizing: border-box !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.fct-grid-4,
.fct-judge-page-wrap .fct-grid-4 {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)) !important;
	gap: 16px !important;
}

.fct-favorite-card,
.fct-award-bg,
.fct-judge-page-wrap .fct-favorite-card,
.fct-judge-page-wrap .fct-award-bg {
	overflow: hidden !important;
}

.fct-favorite-card .fct-card-title,
.fct-favorite-card .fct-card-sub,
.fct-favorite-card .fct-card-score,
.fct-award-bg .fct-card-title,
.fct-award-bg .fct-card-sub,
.fct-award-bg .fct-card-score,
.fct-judge-page-wrap .fct-favorite-card .fct-card-title,
.fct-judge-page-wrap .fct-favorite-card .fct-card-sub,
.fct-judge-page-wrap .fct-favorite-card .fct-card-score,
.fct-judge-page-wrap .fct-award-bg .fct-card-title,
.fct-judge-page-wrap .fct-award-bg .fct-card-sub,
.fct-judge-page-wrap .fct-award-bg .fct-card-score {
	max-width: 100% !important;
	overflow-wrap: anywhere !important;
}

@media (max-width: 760px) {
	.fct-nav-legend,
	.fct-judge-page-wrap .fct-nav-legend {
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: thin !important;
		padding: 2px 0 8px !important;
		margin-inline: 0 !important;
	}

	.fct-legend-item,
	.fct-judge-page-wrap .fct-legend-item {
		font-size: 10px !important;
		padding: 6px 9px !important;
		white-space: nowrap !important;
	}

	.fct-judge-page-wrap .fct-judge-video-frame,
	.fct-judge-page-wrap .fct-judge-mobile-block-target {
		overflow: visible !important;
	}

	.fct-media-embed-shell,
	.fct-judge-page-wrap .fct-media-embed-shell {
		padding: 6px !important;
		border-radius: var(--nsff-radius-sm) !important;
	}

	.fct-media-aspect,
	.fct-judge-page-wrap .fct-media-aspect {
		border-radius: 8px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-t-container,
	.fct-judge-page-wrap .fct-form-wrapper .ff-column-container,
	.fct-judge-page-wrap .fct-form-wrapper .ff_columns_total_2 {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-t-cell,
	.fct-judge-page-wrap .fct-form-wrapper .ff-t-column-1,
	.fct-judge-page-wrap .fct-form-wrapper .ff-t-column-2 {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		flex-basis: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
		display: grid !important;
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
		gap: 8px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label {
		min-height: 46px !important;
		font-size: 14px !important;
	}

	#fct-score-guide .sg-grid,
	.fct-judge-page-wrap #fct-score-guide .sg-grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	.fct-grid-4,
	.fct-judge-page-wrap .fct-grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}
}

@media (max-width: 480px) {
	.fct-judge-page-wrap .fct-section,
	.fct-judge-page-wrap .fct-form-wrapper,
	.fct-judge-page-wrap .fct-form-footer,
	.fct-personal-favorites-panel .fct-panel-body,
	.fct-judge-page-wrap .fct-personal-favorites-panel .fct-panel-body {
		padding: 14px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
		gap: 6px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label {
		min-height: 42px !important;
		font-size: 13px !important;
	}

	#fct-score-guide .sg-grid,
	.fct-judge-page-wrap #fct-score-guide .sg-grid,
	.fct-grid-4,
	.fct-judge-page-wrap .fct-grid-4 {
		grid-template-columns: 1fr !important;
	}
}

/* ========================================================================== 
   Judge portal v42.13.11: responsive container hardening
   Keeps the judge form, legend, nav, and media player inside the shared page
   container on phone/tablet without changing the desktop layout.
   ========================================================================== */
.fct-judge-page-wrap,
.fct-judge-page-wrap *,
.fct-judge-page-wrap *::before,
.fct-judge-page-wrap *::after {
	box-sizing: border-box !important;
}

.fct-judge-page-wrap {
	max-width: 100% !important;
	overflow-x: clip !important;
}

@supports not (overflow-x: clip) {
	.fct-judge-page-wrap {
		overflow-x: hidden !important;
	}
}

.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
	box-sizing: border-box !important;
	width: min(var(--fct-shared-content-width), calc(100vw - 56px)) !important;
	max-width: calc(100vw - 56px) !important;
	min-width: 0 !important;
	padding-inline: clamp(18px, 3vw, 36px) !important;
	overflow: visible !important;
}

.fct-judge-page-wrap .fct-judge-content > *,
.fct-judge-page-wrap .fct-judge-portal-shell,
.fct-judge-page-wrap .fct-integrated-nav,
.fct-judge-page-wrap .fct-navigator-wrap,
.fct-judge-page-wrap .fct-section,
.fct-judge-page-wrap .fct-judge-video-frame,
.fct-judge-page-wrap .fct-judge-mobile-block-target,
.fct-judge-page-wrap .fct-form-wrapper,
.fct-judge-page-wrap .fct-form-wrapper form,
.fct-judge-page-wrap .fct-form-wrapper fieldset,
.fct-judge-page-wrap .fct-form-wrapper .fluentform,
.fct-judge-page-wrap .fct-form-wrapper .fluentform_wrapper,
.fct-judge-page-wrap .fct-form-wrapper .frm-fluent-form,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-group,
.fct-judge-page-wrap .fct-form-wrapper .ff-el-input--content,
.fct-judge-page-wrap .fct-form-wrapper .ff-t-container,
.fct-judge-page-wrap .fct-form-wrapper .ff-column-container,
.fct-judge-page-wrap .fct-form-wrapper .ff-t-cell,
.fct-judge-page-wrap .fct-control-rules-box,
.fct-judge-page-wrap .fct-control-rules-body,
.fct-judge-page-wrap .fct-global-rules,
.fct-judge-page-wrap #fct-score-guide,
.fct-judge-page-wrap #fct-score-guide .sg-wrap,
.fct-judge-page-wrap #fct-score-guide .sg-grid,
.fct-judge-page-wrap #fct-score-guide .sg-card {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-global-rules,
.fct-judge-page-wrap .fct-global-rules * {
	max-width: 100% !important;
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-global-rules img,
.fct-judge-page-wrap .fct-global-rules iframe,
.fct-judge-page-wrap .fct-global-rules video,
.fct-judge-page-wrap .fct-global-rules table {
	max-width: 100% !important;
}

.fct-judge-page-wrap .fct-global-rules table {
	display: block !important;
	overflow-x: auto !important;
	-webkit-overflow-scrolling: touch !important;
}

.fct-judge-page-wrap .fct-nav-legend {
	min-width: 0 !important;
	max-width: 100% !important;
}

.fct-judge-page-wrap .fct-media-embed-shell,
.fct-judge-page-wrap .fct-media-embed-inner,
.fct-judge-page-wrap .fct-media-aspect {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-media-embed-shell {
	padding: clamp(6px, 1.6vw, 10px) !important;
	overflow: hidden !important;
}

.fct-judge-page-wrap .fct-media-aspect {
	position: relative !important;
	display: block !important;
	aspect-ratio: 16 / 9 !important;
	height: auto !important;
	min-height: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

.fct-judge-page-wrap .fct-media-drive-aspect {
	aspect-ratio: 4 / 3 !important;
}

.fct-judge-page-wrap .fct-media-aspect iframe,
.fct-judge-page-wrap .fct-media-aspect video,
.fct-judge-page-wrap .fct-media-aspect embed,
.fct-judge-page-wrap .fct-media-aspect object {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	border: 0 !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-t-container,
.fct-judge-page-wrap .fct-form-wrapper .ff-column-container,
.fct-judge-page-wrap .fct-form-wrapper .ff_columns_total_2 {
	align-items: stretch !important;
	min-width: 0 !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
	min-width: 0 !important;
}

@media (max-width: 900px) {
	.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		padding: 26px 14px 58px !important;
		gap: 24px !important;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta,
	.fct-judge-page-wrap .fct-nav-upper-row,
	.fct-judge-page-wrap .fct-nav-search-fluid {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta,
	.fct-judge-page-wrap .fct-integrated-nav-meta-right,
	.fct-judge-page-wrap .fct-nav-upper-row,
	.fct-judge-page-wrap .fct-judge-detail-tools,
	.fct-judge-page-wrap .fct-judge-film-nav-row,
	.fct-judge-page-wrap .fct-judge-film-nav-actions {
		display: grid !important;
		grid-template-columns: 1fr !important;
		align-items: stretch !important;
		justify-content: stretch !important;
		gap: 12px !important;
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta-right > strong {
		justify-self: start !important;
	}

	.fct-judge-page-wrap .fct-judge-mode-dock,
	.fct-judge-page-wrap .fct-judge-mode-trigger,
	.fct-judge-page-wrap .fct-nav-side-action,
	.fct-judge-page-wrap .fct-nav-side-action .fct-btn,
	.fct-judge-page-wrap .fct-judge-guidelines-btn,
	.fct-judge-page-wrap .fct-judge-control-pill,
	.fct-judge-page-wrap .fct-judge-film-nav-row .fct-btn,
	.fct-judge-page-wrap .fct-judge-film-nav-actions .fct-btn {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	.fct-judge-page-wrap .fct-judge-mode-panel {
		left: 0 !important;
		right: auto !important;
		width: min(100%, calc(100vw - 56px)) !important;
		max-width: calc(100vw - 56px) !important;
	}

	.fct-judge-page-wrap .fct-judge-tabs {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		width: 100% !important;
		overflow: hidden !important;
	}

	.fct-judge-page-wrap .fct-judge-tabs .fct-tab {
		min-width: 0 !important;
		padding-left: 8px !important;
		padding-right: 8px !important;
		font-size: 12px !important;
		line-height: 1.2 !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-t-container,
	.fct-judge-page-wrap .fct-form-wrapper .ff-column-container,
	.fct-judge-page-wrap .fct-form-wrapper .ff_columns_total_2 {
		display: flex !important;
		flex-direction: column !important;
		gap: 14px !important;
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-t-cell,
	.fct-judge-page-wrap .fct-form-wrapper .ff-t-column-1,
	.fct-judge-page-wrap .fct-form-wrapper .ff-t-column-2 {
		flex: 0 0 auto !important;
		flex-basis: auto !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}

@media (max-width: 640px) {
	.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
		width: calc(100vw - 20px) !important;
		max-width: calc(100vw - 20px) !important;
		padding: 20px 10px 48px !important;
		gap: 20px !important;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta,
	.fct-judge-page-wrap .fct-nav-upper-row,
	.fct-judge-page-wrap .fct-nav-search-fluid {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.fct-judge-page-wrap .fct-judge-tabs {
		grid-template-columns: 1fr !important;
	}

	.fct-judge-page-wrap .fct-judge-tabs .fct-tab {
		min-height: 46px !important;
		justify-content: flex-start !important;
		text-align: left !important;
		padding: 12px !important;
	}

	.fct-judge-page-wrap #fct_judge_search {
		min-height: 48px !important;
		font-size: 15px !important;
		padding-left: 14px !important;
		padding-right: 42px !important;
	}

	.fct-judge-page-wrap .fct-nav-search-icon {
		right: 22px !important;
	}

	.fct-judge-page-wrap .fct-navigator-wrap,
	.fct-judge-page-wrap .fct-section,
	.fct-judge-page-wrap .fct-form-wrapper,
	.fct-judge-page-wrap .fct-form-footer,
	.fct-judge-page-wrap .fct-control-rules-box,
	.fct-judge-page-wrap .fct-judge-mobile-friendly-note,
	.fct-judge-page-wrap .fct-judge-video-frame {
		padding: 12px !important;
		border-radius: 14px !important;
	}

	.fct-judge-page-wrap .fct-control-rules-head {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 6px !important;
	}

	.fct-judge-page-wrap .fct-nav-legend {
		display: flex !important;
		flex-wrap: nowrap !important;
		max-width: 100% !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		padding-bottom: 8px !important;
		-webkit-overflow-scrolling: touch !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
		display: grid !important;
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
		gap: 6px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label {
		min-width: 0 !important;
		min-height: 42px !important;
		padding: 8px 4px !important;
	}

	.fct-judge-page-wrap #fct-score-guide .sg-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}
}

@media (max-width: 420px) {
	.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
		width: calc(100vw - 12px) !important;
		max-width: calc(100vw - 12px) !important;
		padding: 16px 6px 42px !important;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta,
	.fct-judge-page-wrap .fct-nav-upper-row,
	.fct-judge-page-wrap .fct-nav-search-fluid {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
		gap: 5px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-el-form-check-label {
		font-size: 12px !important;
		min-height: 38px !important;
	}
}

/* ========================================================================== 
   Judge portal v42.13.12: phone layout correction
   Make the actual judge detail container use the full mobile viewport and stop
   the nested panel/card structure from squeezing the video and form.
   ========================================================================== */
@media (max-width: 640px) {
	.fct-judge-page-wrap {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		overflow-x: hidden !important;
	}

	.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 14px 12px 44px !important;
		border-left: 0 !important;
		border-right: 0 !important;
		box-shadow: none !important;
		overflow-x: hidden !important;
	}

	.fct-judge-page-wrap .fct-judge-single-view,
	.fct-judge-page-wrap .fct-judge-portal-shell,
	.fct-judge-page-wrap .fct-navigator-wrap,
	.fct-judge-page-wrap .fct-section {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.fct-judge-page-wrap .fct-section {
		display: grid !important;
		gap: 14px !important;
		padding: 0 !important;
		background: transparent !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
	}

	.fct-judge-page-wrap .fct-judge-detail-tools {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.fct-judge-page-wrap .fct-judge-guidelines-btn,
	.fct-judge-page-wrap .fct-judge-control-pill,
	.fct-judge-page-wrap .fct-control-rules-box,
	.fct-judge-page-wrap .fct-judge-mobile-friendly-note,
	.fct-judge-page-wrap .fct-judge-video-frame,
	.fct-judge-page-wrap .fct-form-wrapper {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 14px !important;
		border-radius: 14px !important;
		background: var(--nsff-panel-bg) !important;
		border: 1px solid var(--nsff-border) !important;
		box-shadow: none !important;
	}

	.fct-judge-page-wrap .fct-judge-guidelines-btn {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: 52px !important;
		padding: 13px 14px !important;
		text-align: center !important;
	}

	.fct-judge-page-wrap .fct-judge-control-pill {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 8px !important;
		align-items: start !important;
	}

	.fct-judge-page-wrap .fct-judge-control-pill strong {
		font-size: 22px !important;
		line-height: 1.1 !important;
	}

	.fct-judge-page-wrap .fct-control-rules-head {
		padding: 0 !important;
		background: transparent !important;
		border: 0 !important;
	}

	.fct-judge-page-wrap .fct-control-rules-body:not(.is-collapsed) {
		margin-top: 12px !important;
	}

	.fct-judge-page-wrap .fct-global-rules,
	.fct-judge-page-wrap .fct-global-rules > div,
	.fct-judge-page-wrap .fct-global-rules > div > div {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}

	.fct-judge-page-wrap .fct-judge-video-frame {
		padding: 8px !important;
	}

	.fct-judge-page-wrap .fct-judge-video-frame .fct-media-embed-shell,
	.fct-judge-page-wrap .fct-judge-video-frame .fct-media-embed-inner,
	.fct-judge-page-wrap .fct-judge-video-frame .fct-media-aspect {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
	}

	.fct-judge-page-wrap .fct-judge-video-frame .fct-media-embed-shell {
		padding: 0 !important;
		background: #000 !important;
		border: 0 !important;
		border-radius: 10px !important;
		overflow: hidden !important;
	}

	.fct-judge-page-wrap .fct-judge-video-frame .fct-media-embed-inner {
		padding: 0 !important;
		background: transparent !important;
		border: 0 !important;
	}

	.fct-judge-page-wrap .fct-judge-video-frame .fct-media-aspect {
		position: relative !important;
		display: block !important;
		aspect-ratio: 16 / 9 !important;
		height: auto !important;
		padding: 0 !important;
		border: 0 !important;
	}

	.fct-judge-page-wrap .fct-judge-video-frame .fct-media-aspect iframe,
	.fct-judge-page-wrap .fct-judge-video-frame .fct-media-aspect video {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper {
		padding: 12px !important;
		overflow: hidden !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-t-container,
	.fct-judge-page-wrap .fct-form-wrapper .ff-column-container,
	.fct-judge-page-wrap .fct-form-wrapper .ff_columns_total_2 {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff-t-cell,
	.fct-judge-page-wrap .fct-form-wrapper .ff-t-column-1,
	.fct-judge-page-wrap .fct-form-wrapper .ff-t-column-2 {
		width: 100% !important;
		max-width: 100% !important;
		flex: none !important;
		flex-basis: auto !important;
	}

	.fct-judge-page-wrap #fct-score-guide .sg-wrap {
		padding: 14px !important;
	}

	.fct-judge-page-wrap #fct-score-guide .sg-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}
}

@media (max-width: 420px) {
	.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}

	.fct-judge-page-wrap .fct-judge-guidelines-btn,
	.fct-judge-page-wrap .fct-judge-control-pill,
	.fct-judge-page-wrap .fct-control-rules-box,
	.fct-judge-page-wrap .fct-judge-mobile-friendly-note,
	.fct-judge-page-wrap .fct-form-wrapper {
		padding: 12px !important;
	}

	.fct-judge-page-wrap .fct-judge-video-frame {
		padding: 6px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .ff_list_buttons .ff-el-input--content {
		grid-template-columns: repeat(5, minmax(38px, 1fr)) !important;
		gap: 6px !important;
	}
}

/* ========================================================================== 
   Judge portal v42.13.13: responsive TinyMCE/comment editor toolbar
   Keep the comment editor and toolbar inside the mobile judge form container.
   ========================================================================== */
.fct-judge-page-wrap .fct-form-wrapper .wp-editor-wrap,
.fct-judge-page-wrap .fct-form-wrapper .wp-editor-container,
.fct-judge-page-wrap .fct-form-wrapper .quicktags-toolbar,
.fct-judge-page-wrap .fct-form-wrapper .mce-tinymce,
.fct-judge-page-wrap .fct-form-wrapper .mce-panel,
.fct-judge-page-wrap .fct-form-wrapper .mce-container,
.fct-judge-page-wrap .fct-form-wrapper .mce-container-body,
.fct-judge-page-wrap .fct-form-wrapper .mce-stack-layout,
.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp,
.fct-judge-page-wrap .fct-form-wrapper .mce-edit-area,
.fct-judge-page-wrap .fct-form-wrapper .mce-statusbar {
	box-sizing: border-box !important;
	max-width: 100% !important;
}

.fct-judge-page-wrap .fct-form-wrapper .wp-editor-wrap,
.fct-judge-page-wrap .fct-form-wrapper .wp-editor-container,
.fct-judge-page-wrap .fct-form-wrapper .mce-tinymce {
	width: 100% !important;
	overflow: hidden !important;
	border-radius: 14px !important;
}

.fct-judge-page-wrap .fct-form-wrapper .mce-edit-area iframe,
.fct-judge-page-wrap .fct-form-wrapper textarea.wp-editor-area {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box !important;
}

@media (max-width: 640px) {
	.fct-judge-page-wrap .fct-form-wrapper .wp-editor-wrap,
	.fct-judge-page-wrap .fct-form-wrapper .wp-editor-container,
	.fct-judge-page-wrap .fct-form-wrapper .mce-tinymce {
		width: 100% !important;
		max-width: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp {
		width: 100% !important;
		max-width: 100% !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		-webkit-overflow-scrolling: touch !important;
		padding: 6px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-container-body,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar,
	.fct-judge-page-wrap .fct-form-wrapper .mce-btn-group,
	.fct-judge-page-wrap .fct-form-wrapper .mce-flow-layout {
		display: flex !important;
		flex-wrap: wrap !important;
		align-items: center !important;
		gap: 4px !important;
		width: auto !important;
		max-width: 100% !important;
		height: auto !important;
		white-space: normal !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-flow-layout-item,
	.fct-judge-page-wrap .fct-form-wrapper .mce-btn-group,
	.fct-judge-page-wrap .fct-form-wrapper .mce-btn {
		float: none !important;
		position: relative !important;
		left: auto !important;
		top: auto !important;
		margin: 0 !important;
		flex: 0 0 auto !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-btn button {
		min-width: 34px !important;
		min-height: 34px !important;
		padding: 6px 8px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-listbox button,
	.fct-judge-page-wrap .fct-form-wrapper .mce-menubtn button {
		max-width: 160px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-edit-area {
		width: 100% !important;
		max-width: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-edit-area iframe {
		min-height: 180px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .quicktags-toolbar {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 6px !important;
		padding: 8px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .quicktags-toolbar input.ed_button {
		float: none !important;
		min-height: 34px !important;
		margin: 0 !important;
	}
}

@media (max-width: 420px) {
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp {
		padding: 5px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-container-body,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar,
	.fct-judge-page-wrap .fct-form-wrapper .mce-btn-group,
	.fct-judge-page-wrap .fct-form-wrapper .mce-flow-layout {
		gap: 3px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-btn button {
		min-width: 32px !important;
		min-height: 32px !important;
		padding: 5px 7px !important;
	}
}



/* ========================================================================== 
   Judge portal v42.13.14: wrap TinyMCE toolbar instead of horizontal scroll
   ========================================================================== */
@media (max-width: 640px) {
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
		padding: 6px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-container-body,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-toolbar,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-toolbar .mce-container-body,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-flow-layout {
		display: flex !important;
		flex-flow: row wrap !important;
		align-items: center !important;
		align-content: flex-start !important;
		gap: 4px !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
		white-space: normal !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-toolbar {
		margin: 0 0 4px 0 !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-btn-group {
		display: flex !important;
		flex-flow: row wrap !important;
		align-items: center !important;
		gap: 3px !important;
		width: auto !important;
		max-width: 100% !important;
		min-width: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		margin: 2px !important;
		padding: 0 !important;
		overflow: visible !important;
		white-space: normal !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-flow-layout-item,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-btn {
		display: inline-flex !important;
		float: none !important;
		clear: none !important;
		position: static !important;
		left: auto !important;
		top: auto !important;
		flex: 0 0 auto !important;
		margin: 0 !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-btn button {
		min-width: 32px !important;
		min-height: 32px !important;
		padding: 5px 7px !important;
		box-sizing: border-box !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-listbox,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-menubtn {
		max-width: 100% !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-listbox button,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-menubtn button {
		max-width: calc(100vw - 84px) !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-separator {
		margin: 0 2px !important;
	}
}

@media (max-width: 420px) {
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp {
		padding: 5px !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-container-body,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-toolbar,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-toolbar .mce-container-body,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-flow-layout,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-btn-group {
		gap: 3px !important;
	}
}

/* ========================================================================== 
   Judge portal v42.13.15: TinyMCE mobile toolbar scroll fallback
   TinyMCE does not reliably honor wrapping because it calculates fixed toolbar
   group widths in JS. Keep the editor inside the container and let only the
   toolbar area scroll horizontally on small screens.
   ========================================================================== */
@media (max-width: 640px) {
	.fct-judge-page-wrap .fct-form-wrapper .wp-editor-wrap,
	.fct-judge-page-wrap .fct-form-wrapper .wp-editor-container,
	.fct-judge-page-wrap .fct-form-wrapper .mce-tinymce {
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden !important;
		box-sizing: border-box !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp {
		width: 100% !important;
		max-width: 100% !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		-webkit-overflow-scrolling: touch !important;
		padding: 6px !important;
		box-sizing: border-box !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-container-body,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-toolbar,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-toolbar .mce-container-body,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-flow-layout,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-btn-group {
		display: flex !important;
		flex-flow: row nowrap !important;
		align-items: center !important;
		gap: 3px !important;
		width: max-content !important;
		max-width: none !important;
		min-width: max-content !important;
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
		white-space: nowrap !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-flow-layout-item,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-btn {
		float: none !important;
		clear: none !important;
		position: static !important;
		left: auto !important;
		top: auto !important;
		flex: 0 0 auto !important;
		margin: 0 !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-btn button {
		min-width: 32px !important;
		min-height: 32px !important;
		padding: 5px 7px !important;
		box-sizing: border-box !important;
		white-space: nowrap !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-listbox button,
	.fct-judge-page-wrap .fct-form-wrapper .mce-toolbar-grp .mce-menubtn button {
		max-width: 180px !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}

	.fct-judge-page-wrap .fct-form-wrapper .quicktags-toolbar {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 6px !important;
		overflow: visible !important;
	}
}


/* v42.13.15.1: judge guidelines modal */
.fct-guidelines-panel {
	width: min(1100px, calc(100vw - 28px));
}

.fct-guidelines-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fct-guidelines-frame-wrap {
	width: 100%;
	height: min(72vh, 760px);
	min-height: 420px;
	border: 1px solid var(--nsff-border-soft);
	border-radius: var(--nsff-radius-sm);
	overflow: hidden;
	background: var(--nsff-bg);
}

.fct-guidelines-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: var(--nsff-bg);
}

.fct-guidelines-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
}

@media (max-width: 700px) {
	.fct-guidelines-panel {
		width: calc(100vw - 16px);
		max-height: calc(100vh - 16px);
	}

	.fct-guidelines-frame-wrap {
		height: 68vh;
		min-height: 340px;
	}

	.fct-guidelines-modal-actions {
		justify-content: stretch;
	}

	.fct-guidelines-modal-actions .fct-btn {
		width: 100%;
		justify-content: center;
	}
}


/* v42.13.15.2: performer photo lightbox for judge award photos */
.fct-judge-page-wrap .fct-performer-photo-zoom {
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	padding: 0;
	cursor: zoom-in;
	text-align: center;
}

.fct-judge-page-wrap .fct-performer-photo-zoom:focus-visible {
	outline: 3px solid rgba(142, 197, 255, .72);
	outline-offset: 3px;
}

.fct-judge-page-wrap .fct-performer-photo-zoom-label {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(8, 17, 29, .82);
	border: 1px solid rgba(166, 197, 231, .34);
	color: var(--nsff-text);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: .01em;
	pointer-events: none;
	backdrop-filter: blur(8px);
}

.fct-performer-photo-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(14px, 4vw, 42px);
	background: rgba(3, 7, 18, .88);
	backdrop-filter: blur(12px);
}

.fct-performer-photo-modal.is-open {
	display: flex;
}

.fct-performer-photo-modal-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(980px, 100%);
	max-height: calc(100vh - 42px);
	padding: clamp(10px, 2vw, 18px);
	border: 1px solid rgba(166, 197, 231, .30);
	border-radius: 24px;
	background: rgba(8, 17, 29, .94);
	box-shadow: 0 32px 90px rgba(0, 0, 0, .62);
}

.fct-performer-photo-modal-img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: calc(100vh - 96px);
	object-fit: contain;
	border-radius: 18px;
	background: #020617;
}

.fct-performer-photo-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(166, 197, 231, .34);
	border-radius: 999px;
	background: rgba(8, 17, 29, .88);
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.fct-performer-photo-modal-close:hover,
.fct-performer-photo-modal-close:focus-visible {
	background: rgba(166, 197, 231, .18);
	outline: none;
}

@media (max-width: 700px) {
	.fct-judge-page-wrap .fct-performer-photo-zoom-label {
		font-size: 10px;
		min-height: 22px;
		padding: 3px 7px;
	}

	.fct-performer-photo-modal {
		padding: 10px;
	}

	.fct-performer-photo-modal-inner {
		width: 100%;
		max-height: calc(100vh - 20px);
		border-radius: 18px;
		padding: 8px;
	}

	.fct-performer-photo-modal-img {
		max-height: calc(100vh - 62px);
		border-radius: 14px;
	}

	.fct-performer-photo-modal-close {
		top: 8px;
		right: 8px;
		width: 38px;
		height: 38px;
		font-size: 24px;
	}
}

/* ========================================================================== 
   Judge portal v42.13.15.3: award photo/list usability
   --------------------------------------------------------------------------
   Keep the large performer photo zoomable, but make the right-side nominee
   thumbnails passive image references. Also make the mobile nominee list feel
   clearly scrollable without changing the shared card system.
   ========================================================================== */

.fct-judge-page-wrap .fct-performer-photo-thumb {
	cursor: default !important;
	pointer-events: none !important;
}

.fct-judge-page-wrap .fct-award-mobile-scroll-cue {
	display: none;
}

@media (max-width: 700px) {
	.fct-judge-page-wrap .fct-award-mobile-scroll-cue {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 8px !important;
		margin: 2px 0 -4px !important;
		padding: 10px 12px !important;
		border: 1px solid rgba(166, 211, 244, .28) !important;
		border-radius: var(--nsff-radius-sm) !important;
		background: linear-gradient(180deg, rgba(166, 211, 244, .12), rgba(8, 15, 26, .78)) !important;
		color: var(--nsff-text-soft) !important;
		font-size: 12px !important;
		font-weight: 850 !important;
		letter-spacing: .04em !important;
		text-transform: uppercase !important;
	}

	.fct-judge-page-wrap .fct-award-side-list {
		max-height: min(68vh, 560px) !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
		-webkit-overflow-scrolling: touch !important;
		overscroll-behavior: contain !important;
		padding: 14px !important;
		border-color: rgba(166, 211, 244, .34) !important;
		box-shadow:
			inset 0 18px 22px -26px rgba(227, 244, 255, .55),
			inset 0 -34px 32px -34px rgba(166, 211, 244, .70),
			0 14px 30px rgba(0, 0, 0, .22) !important;
		scrollbar-color: rgba(166, 211, 244, .55) rgba(8, 15, 26, .92) !important;
	}

	.fct-judge-page-wrap .fct-award-side-list::-webkit-scrollbar {
		width: 10px;
	}

	.fct-judge-page-wrap .fct-award-side-list::-webkit-scrollbar-track {
		background: rgba(8, 15, 26, .92);
		border-radius: 999px;
	}

	.fct-judge-page-wrap .fct-award-side-list::-webkit-scrollbar-thumb {
		background: rgba(166, 211, 244, .58);
		border-radius: 999px;
		border: 2px solid rgba(8, 15, 26, .92);
	}
}


/* ========================================================================== 
   Judge portal v42.13.15.4: review dashboard nomination vote state
   --------------------------------------------------------------------------
   Nominations in the Review Dashboard use the shared icy card styling, with
   completed votes shown as a green/success state. This is intentionally scoped
   to the judge dashboard so generic award cards elsewhere are not affected.
   ========================================================================== */

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid {
	align-items: stretch !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg {
	position: relative !important;
	display: grid !important;
	grid-template-rows: auto minmax(2.8em, 1fr) auto auto !important;
	align-content: stretch !important;
	align-items: center !important;
	justify-items: center !important;
	gap: 12px !important;
	min-height: 190px !important;
	padding: 20px 18px !important;
	text-align: center !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg .fct-card-kicker,
.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg .fct-card-title,
.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg .fct-card-sub,
.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg .fct-mini-link,
.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg .fct-vote-cast-pill {
	width: 100% !important;
	max-width: 100% !important;
	text-align: center !important;
	justify-self: center !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg .fct-card-kicker {
	align-self: start !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg .fct-card-title {
	align-self: center !important;
	-webkit-line-clamp: 2 !important;
	min-height: 2.36em !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg .fct-card-sub {
	align-self: center !important;
	white-space: normal !important;
	-webkit-line-clamp: 2 !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	min-height: 2.4em !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg.needs-vote {
	border-color: rgba(166, 211, 244, .20) !important;
	background: linear-gradient(180deg, rgba(12, 22, 36, .94), rgba(6, 12, 22, .96)) !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg.needs-vote .fct-card-title.is-empty {
	color: var(--nsff-muted) !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg.has-vote {
	border-color: rgba(74, 222, 128, .62) !important;
	background:
		linear-gradient(180deg, rgba(34, 197, 94, .16), rgba(6, 12, 22, .96)),
		var(--nsff-panel-bg) !important;
	box-shadow:
		inset 0 1px 0 rgba(220, 252, 231, .14),
		0 0 0 1px rgba(74, 222, 128, .12),
		var(--nsff-shadow-soft) !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg.has-vote::before {
	content: '' !important;
	position: absolute !important;
	inset: 0 auto 0 0 !important;
	width: 4px !important;
	background: linear-gradient(180deg, rgba(134, 239, 172, .95), rgba(34, 197, 94, .72)) !important;
}

.fct-vote-cast-pill,
.fct-judge-page-wrap .fct-vote-cast-pill {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 104px !important;
	margin-top: auto !important;
	padding: 7px 12px !important;
	border: 1px solid rgba(74, 222, 128, .58) !important;
	border-radius: 999px !important;
	background: rgba(34, 197, 94, .18) !important;
	color: #dcfce7 !important;
	font-size: 11px !important;
	font-weight: 950 !important;
	letter-spacing: .08em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg.has-vote .fct-card-kicker {
	color: #bbf7d0 !important;
}

.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg.has-vote .fct-card-title {
	color: #ffffff !important;
}

@media (max-width: 700px) {
	.fct-judge-page-wrap .fct-judge-dashboard-view .fct-dash-grid .fct-award-bg {
		min-height: 168px !important;
		padding: 18px 14px !important;
	}
}

/* ========================================================================== 
   Judge portal v42.13.15.5: integrated nav polish
   --------------------------------------------------------------------------
   Make the top judge navigation read as one seamless cinematic control panel
   instead of separate rectangles stacked together.
   ========================================================================== */

.fct-judge-page-wrap .fct-integrated-nav {
	position: relative !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	grid-template-areas:
		"meta meta"
		"tabs search" !important;
	align-items: center !important;
	gap: 16px 18px !important;
	padding: clamp(16px, 2.2vw, 24px) !important;
	border: 1px solid rgba(166, 197, 231, .18) !important;
	border-radius: 24px !important;
	background:
		radial-gradient(circle at 10% 0%, rgba(166, 197, 231, .12), transparent 34%),
		linear-gradient(180deg, rgba(13, 21, 34, .92), rgba(7, 12, 20, .96)) !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .06),
		0 18px 42px rgba(0, 0, 0, .22) !important;
	overflow: visible !important;
}

.fct-judge-page-wrap .fct-integrated-nav::before,
.fct-judge-page-wrap .fct-integrated-nav::after {
	display: none !important;
	content: none !important;
}

.fct-judge-page-wrap .fct-integrated-nav-meta {
	grid-area: meta !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	margin: 0 !important;
	padding: 0 2px 12px !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(166, 197, 231, .12) !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--nsff-muted) !important;
}

.fct-judge-page-wrap .fct-integrated-nav-meta > span {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	min-width: 0 !important;
	color: var(--nsff-text-soft) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	letter-spacing: .12em !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

.fct-judge-page-wrap .fct-integrated-nav-meta > span::before {
	content: '' !important;
	display: inline-block !important;
	width: 8px !important;
	height: 8px !important;
	border-radius: 999px !important;
	background: var(--nsff-ice-2) !important;
	box-shadow: 0 0 18px rgba(166, 197, 231, .58) !important;
	flex: 0 0 auto !important;
}

.fct-judge-page-wrap .fct-integrated-nav-meta-right {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 10px !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap .fct-integrated-nav-meta-right > strong {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 38px !important;
	padding: 0 14px !important;
	border: 1px solid rgba(166, 197, 231, .16) !important;
	border-radius: 999px !important;
	background: rgba(166, 197, 231, .07) !important;
	color: var(--nsff-ice) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	letter-spacing: .04em !important;
	white-space: nowrap !important;
}

.fct-judge-page-wrap .fct-nav-upper-row {
	grid-area: tabs !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 14px !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap .fct-judge-tabs {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 4px !important;
	width: auto !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 5px !important;
	border: 1px solid rgba(166, 197, 231, .14) !important;
	border-radius: 999px !important;
	background: rgba(5, 8, 13, .38) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04) !important;
	overflow: visible !important;
}

.fct-judge-page-wrap .fct-judge-tabs .fct-tab {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 38px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--nsff-muted) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: .02em !important;
	white-space: nowrap !important;
	transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.fct-judge-page-wrap .fct-judge-tabs .fct-tab:hover,
.fct-judge-page-wrap .fct-judge-tabs .fct-tab.is-active {
	background: linear-gradient(180deg, rgba(166, 197, 231, .22), rgba(96, 165, 250, .12)) !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .12),
		0 10px 24px rgba(0, 0, 0, .18) !important;
	color: #ffffff !important;
	transform: translateY(-1px) !important;
}

.fct-judge-page-wrap .fct-nav-side-action {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex: 0 0 auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap .fct-howto-ghost-btn {
	min-height: 42px !important;
	padding: 0 15px !important;
	border-radius: 999px !important;
	border-color: rgba(166, 197, 231, .22) !important;
	background: rgba(166, 197, 231, .08) !important;
	box-shadow: none !important;
	white-space: nowrap !important;
}

.fct-judge-page-wrap .fct-nav-search-fluid {
	grid-area: search !important;
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	width: min(420px, 100%) !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	box-shadow: none !important;
	justify-self: end !important;
}

.fct-judge-page-wrap .fct-nav-search-fluid input,
.fct-judge-page-wrap .fct-nav-search-fluid #fct_judge_search {
	width: 100% !important;
	min-height: 46px !important;
	padding: 0 46px 0 16px !important;
	border: 1px solid rgba(166, 197, 231, .16) !important;
	border-radius: 999px !important;
	background: rgba(5, 8, 13, .42) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04) !important;
	color: var(--nsff-text) !important;
	font-size: 14px !important;
}

.fct-judge-page-wrap .fct-nav-search-fluid input:focus,
.fct-judge-page-wrap .fct-nav-search-fluid #fct_judge_search:focus {
	border-color: rgba(166, 197, 231, .44) !important;
	background: rgba(5, 8, 13, .58) !important;
	box-shadow: 0 0 0 4px rgba(166, 197, 231, .12) !important;
	outline: none !important;
}

.fct-judge-page-wrap .fct-nav-search-icon {
	position: absolute !important;
	top: 50% !important;
	right: 15px !important;
	transform: translateY(-50%) !important;
	width: auto !important;
	height: auto !important;
	color: var(--nsff-ice-2) !important;
	font-size: 14px !important;
	line-height: 1 !important;
	pointer-events: none !important;
}

.fct-judge-page-wrap .fct-judge-mode-dock {
	position: relative !important;
	z-index: 2500 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap .fct-judge-mode-trigger {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	grid-template-areas:
		"kicker icon"
		"label icon" !important;
	align-items: center !important;
	column-gap: 10px !important;
	min-height: 44px !important;
	min-width: 190px !important;
	padding: 8px 12px !important;
	border: 1px solid rgba(166, 197, 231, .18) !important;
	border-radius: 16px !important;
	background: rgba(166, 197, 231, .07) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06) !important;
	cursor: pointer !important;
}

.fct-judge-page-wrap .fct-judge-mode-trigger-kicker {
	grid-area: kicker !important;
	color: var(--nsff-muted) !important;
	font-size: 10px !important;
	font-weight: 950 !important;
	letter-spacing: .10em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

.fct-judge-page-wrap .fct-judge-mode-trigger-label {
	grid-area: label !important;
	min-width: 0 !important;
	color: var(--nsff-text) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.fct-judge-page-wrap .fct-judge-mode-trigger-icon {
	grid-area: icon !important;
	color: var(--nsff-ice-2) !important;
	font-size: 15px !important;
	transition: transform .18s ease !important;
}

.fct-judge-page-wrap .fct-judge-mode-panel {
	top: calc(100% + 10px) !important;
	right: 0 !important;
	z-index: 3000 !important;
	border-radius: 18px !important;
	border-color: rgba(166, 197, 231, .28) !important;
	background: linear-gradient(180deg, rgba(13, 21, 34, .98), rgba(5, 8, 13, .98)) !important;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .52) !important;
}

@media (max-width: 980px) {
	.fct-judge-page-wrap .fct-integrated-nav {
		grid-template-columns: 1fr !important;
		grid-template-areas:
			"meta"
			"tabs"
			"search" !important;
		gap: 14px !important;
	}

	.fct-judge-page-wrap .fct-nav-upper-row,
	.fct-judge-page-wrap .fct-nav-search-fluid {
		width: 100% !important;
		justify-self: stretch !important;
	}

	.fct-judge-page-wrap .fct-judge-tabs {
		flex: 1 1 auto !important;
		width: 100% !important;
		justify-content: center !important;
	}
}

@media (max-width: 700px) {
	.fct-judge-page-wrap .fct-integrated-nav {
		width: 100% !important;
		padding: 14px !important;
		border-radius: 18px !important;
		gap: 12px !important;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta {
		align-items: stretch !important;
		flex-direction: column !important;
		gap: 12px !important;
		padding-bottom: 12px !important;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta-right {
		align-items: stretch !important;
		justify-content: stretch !important;
		flex-direction: column !important;
		width: 100% !important;
		gap: 10px !important;
	}

	.fct-judge-page-wrap .fct-integrated-nav-meta-right > strong,
	.fct-judge-page-wrap .fct-judge-mode-dock,
	.fct-judge-page-wrap .fct-judge-mode-trigger {
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-nav-upper-row {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 10px !important;
	}

	.fct-judge-page-wrap .fct-judge-tabs {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 6px !important;
		padding: 6px !important;
		border-radius: 18px !important;
	}

	.fct-judge-page-wrap .fct-judge-tabs .fct-tab {
		width: 100% !important;
		min-height: 42px !important;
		padding: 0 12px !important;
	}

	.fct-judge-page-wrap .fct-nav-side-action,
	.fct-judge-page-wrap .fct-howto-ghost-btn {
		width: 100% !important;
	}

	.fct-judge-page-wrap .fct-judge-mode-panel {
		position: fixed !important;
		top: auto !important;
		right: 12px !important;
		bottom: 12px !important;
		left: 12px !important;
		width: auto !important;
		max-width: none !important;
		max-height: calc(100vh - 24px) !important;
		overflow: auto !important;
	}
}

/*
   Team Portal shared cleanup v42.13.16
   This section centralizes Team Portal layout into the shared asset system.
   It is intentionally scoped to data-fct-team-page so the Judge Portal stays unchanged.
*/
[data-fct-team-page="1"] {
	--fct-team-grid-min: 320px;
	--fct-team-panel-pad: clamp(18px, 2.5vw, 28px);
	--fct-team-card-pad: clamp(16px, 2vw, 22px);
	--fct-team-gap: clamp(16px, 2vw, 24px);
	background: var(--nsff-bg);
	color: var(--nsff-text);
}

[data-fct-team-page="1"],
[data-fct-team-page="1"] * {
	box-sizing: border-box;
}

[data-fct-team-page="1"] a {
	color: var(--nsff-ice-2);
}

[data-fct-team-page="1"] a:hover {
	color: var(--nsff-ice);
}

/* Team Portal uses the shared .fct-cinema-content shell above. Keep page-specific rules below limited to the content inside the shell. */

[data-fct-team-page="1"] .fct-team-hero.fct-directory-style-hero {
	position: relative;
	isolation: isolate;
	min-height: var(--fct-shared-hero-height);
	width: 100vw;
	max-width: none;
	margin: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(5, 8, 13, .94), rgba(5, 8, 13, .68), rgba(5, 8, 13, .28)),
		var(--nsff-hero-image) center / cover no-repeat;
}

[data-fct-team-page="1"] .fct-team-hero.fct-directory-style-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 20% 25%, rgba(166, 197, 231, .2), transparent 34%),
		linear-gradient(180deg, rgba(5, 8, 13, .18), rgba(5, 8, 13, .92));
	pointer-events: none;
}

[data-fct-team-page="1"] .fct-team-hero-inner {
	width: min(var(--fct-shared-content-width), calc(100vw - 56px));
	max-width: var(--fct-shared-content-width);
	margin: 0 auto;
	padding: clamp(72px, 9vw, 116px) 0;
}

[data-fct-team-page="1"] .fct-team-hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 7px 12px;
	border: 1px solid rgba(166, 197, 231, .26);
	border-radius: 999px;
	background: rgba(13, 21, 34, .58);
	color: var(--nsff-ice-2);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

[data-fct-team-page="1"] .fct-team-hero h1 {
	max-width: 820px;
	margin: 0;
	color: var(--nsff-text);
	font-size: clamp(42px, 6vw, 76px);
	line-height: .96;
	letter-spacing: -.055em;
	text-wrap: balance;
}

[data-fct-team-page="1"] .fct-team-hero p {
	max-width: 760px;
	margin: 18px 0 0;
	color: var(--nsff-text-soft);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.65;
}

[data-fct-team-page="1"] .fct-panel,
[data-fct-team-page="1"] .fct-team-card,
[data-fct-team-page="1"] .fct-task-card,
[data-fct-team-page="1"] .fct-task-group,
[data-fct-team-page="1"] .fct-dashboard-poster,
[data-fct-team-page="1"] .fct-share-panel,
[data-fct-team-page="1"] .fct-admin-team-switch,
[data-fct-team-page="1"] .fct-payment-panel,
[data-fct-team-page="1"] .fct-payment-summary-item,
[data-fct-team-page="1"] .fct-payment-reference-card,
[data-fct-team-page="1"] .fct-files-block,
[data-fct-team-page="1"] .fct-fb-wrap {
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: var(--nsff-panel-bg);
	box-shadow: var(--nsff-shadow-soft);
}

[data-fct-team-page="1"] .fct-panel,
[data-fct-team-page="1"] .fct-share-panel,
[data-fct-team-page="1"] .fct-payment-panel {
	padding: var(--fct-team-panel-pad);
	margin: 0 0 var(--fct-team-gap);
}

[data-fct-team-page="1"] .fct-panel > h3,
[data-fct-team-page="1"] .fct-h3,
[data-fct-team-page="1"] .fct-share-title,
[data-fct-team-page="1"] .fct-task-group-title,
[data-fct-team-page="1"] .fct-section-title,
[data-fct-team-page="1"] .fct-portal-title {
	color: var(--nsff-text);
	font-weight: 850;
	letter-spacing: -.02em;
}

[data-fct-team-page="1"] .fct-muted,
[data-fct-team-page="1"] .fct-portal-leader,
[data-fct-team-page="1"] .fct-team-card-sub,
[data-fct-team-page="1"] .fct-task-card-sub,
[data-fct-team-page="1"] .fct-share-subtitle,
[data-fct-team-page="1"] .fct-share-help,
[data-fct-team-page="1"] .fct-payment-row-sub,
[data-fct-team-page="1"] .fct-payment-cta-desc {
	color: var(--nsff-muted);
}

[data-fct-team-page="1"] .fct-panel-header,
[data-fct-team-page="1"] .fct-portal-head,
[data-fct-team-page="1"] .fct-portal-head-main,
[data-fct-team-page="1"] .fct-share-head,
[data-fct-team-page="1"] .fct-task-card-top,
[data-fct-team-page="1"] .fct-payment-cta-row,
[data-fct-team-page="1"] .fct-payment-row,
[data-fct-team-page="1"] .fct-payment-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

[data-fct-team-page="1"] .fct-panel-header,
[data-fct-team-page="1"] .fct-share-head {
	padding-bottom: 16px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--nsff-border-soft);
}

[data-fct-team-page="1"] .fct-portal-head,
[data-fct-team-page="1"] .fct-portal-head-main {
	padding: 20px 22px;
	margin-bottom: 22px;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: linear-gradient(180deg, rgba(17, 29, 45, .72), rgba(8, 13, 20, .92));
	box-shadow: var(--nsff-shadow-soft);
}

[data-fct-team-page="1"] .fct-portal-title-wrap {
	min-width: 0;
}

[data-fct-team-page="1"] .fct-portal-title {
	font-size: clamp(22px, 3vw, 32px);
	line-height: 1.08;
}

[data-fct-team-page="1"] .fct-portal-leader {
	margin-top: 6px;
	font-size: 14px;
}

[data-fct-team-page="1"] .fct-admin-team-switch {
	padding: 16px;
	min-width: min(100%, 360px);
	box-shadow: none;
}

[data-fct-team-page="1"] .fct-admin-team-switch-kicker {
	margin-bottom: 8px;
	color: var(--nsff-ice-2);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

[data-fct-team-page="1"] .fct-admin-team-select,
[data-fct-team-page="1"] input[type="text"],
[data-fct-team-page="1"] input[type="email"],
[data-fct-team-page="1"] input[type="url"],
[data-fct-team-page="1"] input[type="search"],
[data-fct-team-page="1"] input[type="number"],
[data-fct-team-page="1"] textarea,
[data-fct-team-page="1"] select {
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--nsff-border);
	border-radius: 12px;
	background: var(--nsff-field-bg);
	color: var(--nsff-text);
	padding: 12px 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

[data-fct-team-page="1"] input:focus,
[data-fct-team-page="1"] textarea:focus,
[data-fct-team-page="1"] select:focus {
	border-color: var(--nsff-border-strong);
	outline: 3px solid var(--nsff-focus-ring);
}

[data-fct-team-page="1"] .fct-btn,
[data-fct-team-page="1"] .fct-action-btn,
[data-fct-team-page="1"] .fct-modal-btn,
[data-fct-team-page="1"] button.fct-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 11px 16px;
	border: 1px solid rgba(166, 197, 231, .24);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(166, 197, 231, .22), rgba(96, 165, 250, .12));
	color: var(--nsff-text) !important;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
	cursor: pointer;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

[data-fct-team-page="1"] .fct-btn:hover,
[data-fct-team-page="1"] .fct-action-btn:hover {
	transform: translateY(-1px);
	border-color: rgba(215, 236, 251, .42);
	background: linear-gradient(180deg, rgba(166, 197, 231, .3), rgba(96, 165, 250, .17));
}

[data-fct-team-page="1"] .fct-btn-secondary,
[data-fct-team-page="1"] .fct-save-draft-btn,
[data-fct-team-page="1"] .fct-btn-disabled {
	background: rgba(13, 21, 34, .78);
	border-color: var(--nsff-border);
	color: var(--nsff-text-soft) !important;
}

[data-fct-team-page="1"] .fct-btn-disabled {
	opacity: .5;
	cursor: not-allowed;
	pointer-events: none;
}

[data-fct-team-page="1"] .fct-action-primary,
[data-fct-team-page="1"] .fct-mark-complete-btn {
	background: linear-gradient(180deg, rgba(16, 185, 129, .28), rgba(16, 185, 129, .12));
	border-color: rgba(16, 185, 129, .42);
}

[data-fct-team-page="1"] .fct-tabs,
[data-fct-team-page="1"] .fct-team-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px;
	margin: 0 0 24px;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: rgba(8, 13, 20, .72);
	box-shadow: var(--nsff-shadow-soft);
}

[data-fct-team-page="1"] .fct-tab,
[data-fct-team-page="1"] .fct-team-tabs .fct-tab {
	flex: 0 1 auto;
	padding: 11px 15px;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--nsff-muted) !important;
	font-weight: 800;
	text-decoration: none !important;
}

[data-fct-team-page="1"] .fct-tab:hover,
[data-fct-team-page="1"] .fct-tab.is-active,
[data-fct-team-page="1"] .fct-team-tabs .fct-tab:hover,
[data-fct-team-page="1"] .fct-team-tabs .fct-tab.is-active {
	border-color: rgba(166, 197, 231, .32);
	background: rgba(166, 197, 231, .12);
	color: var(--nsff-text) !important;
}

[data-fct-team-page="1"] .fct-portal-notice,
[data-fct-team-page="1"] .fct-archive-notice,
[data-fct-team-page="1"] .fct-alert,
[data-fct-team-page="1"] .fct-notice,
[data-fct-team-page="1"] .fct-student-discount-notice {
	padding: 15px 16px;
	margin: 0 0 20px;
	border: 1px solid rgba(166, 197, 231, .22);
	border-left: 4px solid var(--nsff-ice-2);
	border-radius: 14px;
	background: rgba(166, 197, 231, .08);
	color: var(--nsff-text-soft);
}

[data-fct-team-page="1"] .fct-student-discount-title {
	margin-bottom: 5px;
	color: var(--nsff-text);
	font-weight: 850;
}

[data-fct-team-page="1"] .fct-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 28px 0 16px;
	font-size: clamp(22px, 3vw, 30px);
}

[data-fct-team-page="1"] .fct-nav-legend {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 12px;
}

[data-fct-team-page="1"] .fct-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 10px;
	border: 1px solid var(--nsff-border);
	border-radius: 999px;
	background: rgba(13, 21, 34, .68);
	color: var(--nsff-muted);
	font-weight: 800;
	white-space: nowrap;
}

[data-fct-team-page="1"] .fct-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #8b98aa;
	box-shadow: 0 0 0 3px rgba(139, 152, 170, .12);
}

[data-fct-team-page="1"] .fct-dot.is-prog,
[data-fct-team-page="1"] .fct-legend-item.is-prog .fct-dot {
	background: var(--nsff-pending);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, .16);
}

[data-fct-team-page="1"] .fct-dot.is-done,
[data-fct-team-page="1"] .fct-legend-item.is-done .fct-dot {
	background: var(--nsff-done);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, .16);
}

[data-fct-team-page="1"] .fct-dot.is-expired,
[data-fct-team-page="1"] .fct-legend-item.is-expired .fct-dot {
	background: var(--nsff-expired);
	box-shadow: 0 0 0 3px rgba(239, 68, 68, .16);
}

[data-fct-team-page="1"] .fct-admin-search-wrap {
	margin: 0 0 24px;
}

[data-fct-team-page="1"] .fct-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--fct-team-grid-min), 1fr));
	gap: var(--fct-team-gap);
	align-items: stretch;
}

[data-fct-team-page="1"] .fct-team-card {
	position: relative;
	display: grid;
	grid-template-columns: 98px minmax(0, 1fr);
	gap: 16px;
	align-items: stretch;
	padding: 14px;
	min-height: 138px;
	color: var(--nsff-text) !important;
	text-decoration: none !important;
	overflow: hidden;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

[data-fct-team-page="1"] .fct-team-card::before,
[data-fct-team-page="1"] .fct-task-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: #8b98aa;
	opacity: .9;
}

[data-fct-team-page="1"] .fct-team-card:hover,
[data-fct-team-page="1"] .fct-task-card:hover {
	transform: translateY(-2px);
	border-color: var(--nsff-border-strong);
}

[data-fct-team-page="1"] .fct-team-card.is-prog::before,
[data-fct-team-page="1"] .fct-team-card.is-pay::before,
[data-fct-team-page="1"] .fct-task-card.is-prog::before,
[data-fct-team-page="1"] .fct-task-card.is-locked::before {
	background: var(--nsff-pending);
}

[data-fct-team-page="1"] .fct-team-card.is-done::before,
[data-fct-team-page="1"] .fct-task-card.is-done::before {
	background: var(--nsff-done);
}

[data-fct-team-page="1"] .fct-team-card.is-expired::before,
[data-fct-team-page="1"] .fct-task-card.is-expired::before {
	background: var(--nsff-expired);
}

[data-fct-team-page="1"] .fct-team-poster-wrap {
	width: 100%;
	min-height: 110px;
	border-radius: 12px;
	background: rgba(5, 8, 13, .78);
	overflow: hidden;
}

[data-fct-team-page="1"] .fct-team-poster-img,
[data-fct-team-page="1"] .fct-team-poster-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

[data-fct-team-page="1"] .fct-team-poster-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	color: var(--nsff-muted);
	font-size: 13px;
	font-weight: 800;
}

[data-fct-team-page="1"] .fct-team-card-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

[data-fct-team-page="1"] .fct-team-card-title,
[data-fct-team-page="1"] .fct-team-card-title strong {
	min-width: 0;
	color: var(--nsff-text);
	font-size: 17px;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

[data-fct-team-page="1"] .fct-team-card-sub {
	font-size: 13px;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

[data-fct-team-page="1"] .fct-badge,
[data-fct-team-page="1"] .fct-tag-critical {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	padding: 6px 10px;
	border: 1px solid rgba(139, 152, 170, .26);
	border-radius: 999px;
	background: rgba(139, 152, 170, .12);
	color: #c7d0dc;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
}

[data-fct-team-page="1"] .fct-badge-in_progress,
[data-fct-team-page="1"] .fct-badge.is-warning,
[data-fct-team-page="1"] .fct-badge.is-pay,
[data-fct-team-page="1"] .fct-tag-critical {
	border-color: rgba(245, 158, 11, .36);
	background: rgba(245, 158, 11, .12);
	color: #fbbf24;
}

[data-fct-team-page="1"] .fct-badge-complete,
[data-fct-team-page="1"] .fct-badge-submitted,
[data-fct-team-page="1"] .fct-badge-approved,
[data-fct-team-page="1"] .fct-badge.is-done {
	border-color: rgba(16, 185, 129, .36);
	background: rgba(16, 185, 129, .12);
	color: #6ee7b7;
}

[data-fct-team-page="1"] .fct-badge.is-expired,
[data-fct-team-page="1"] .fct-badge-expired {
	border-color: rgba(239, 68, 68, .36);
	background: rgba(239, 68, 68, .12);
	color: #fca5a5;
}

[data-fct-team-page="1"] .fct-dashboard-top {
	display: grid;
	grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
	gap: var(--fct-team-gap);
	align-items: start;
}

[data-fct-team-page="1"] .fct-dashboard-media-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

[data-fct-team-page="1"] .fct-dashboard-poster {
	width: 100%;
	aspect-ratio: 2 / 3;
	padding: 0;
	background: rgba(5, 8, 13, .8);
	overflow: hidden;
}

[data-fct-team-page="1"] .fct-dashboard-poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

[data-fct-team-page="1"] .fct-dashboard-summary {
	min-width: 0;
}

[data-fct-team-page="1"] .fct-dashboard-summary .fct-h3 {
	margin: 0 0 10px;
	font-size: clamp(24px, 3vw, 34px);
}

[data-fct-team-page="1"] .fct-dashboard-progress {
	width: 100%;
	height: 12px;
	margin: 14px 0 18px;
	border-radius: 999px;
	background: rgba(5, 8, 13, .72);
	border: 1px solid rgba(166, 197, 231, .15);
	overflow: hidden;
}

[data-fct-team-page="1"] .fct-dashboard-progress-fill {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--nsff-ice-2), var(--nsff-blue));
	box-shadow: 0 0 20px rgba(166, 197, 231, .2);
}

[data-fct-team-page="1"] .fct-dashboard-alerts {
	display: grid;
	gap: 10px;
	margin: 16px 0;
}

[data-fct-team-page="1"] .fct-dashboard-alert {
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(245, 158, 11, .28);
	background: rgba(245, 158, 11, .1);
	color: var(--nsff-text-soft);
}

[data-fct-team-page="1"] .fct-dashboard-alert.is-expired {
	border-color: rgba(239, 68, 68, .32);
	background: rgba(239, 68, 68, .1);
}

[data-fct-team-page="1"] .fct-dashboard-custom {
	display: block !important;
	padding: 0 !important;
	margin: 12px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

[data-fct-team-page="1"] .fct-dashboard-promo-actions {
	display: grid;
	gap: 10px;
}

[data-fct-team-page="1"] .fct-dashboard-promo-actions .fct-btn {
	width: 100%;
}

[data-fct-team-page="1"] .fct-task-groups {
	display: grid;
	gap: var(--fct-team-gap);
	margin-top: 18px;
}

[data-fct-team-page="1"] .fct-task-group {
	padding: var(--fct-team-card-pad);
	box-shadow: none;
}

[data-fct-team-page="1"] .fct-task-group-title {
	margin-bottom: 14px;
	font-size: 18px;
}

[data-fct-team-page="1"] .fct-task-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

[data-fct-team-page="1"] .fct-task-card {
	position: relative;
	display: block;
	padding: 16px 16px 16px 20px;
	color: var(--nsff-text) !important;
	text-decoration: none !important;
	overflow: hidden;
	box-shadow: none;
}

[data-fct-team-page="1"] .fct-task-card-title {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: var(--nsff-text);
	font-weight: 850;
}

[data-fct-team-page="1"] .fct-task-card-sub {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.45;
}

[data-fct-team-page="1"] .fct-task-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

[data-fct-team-page="1"] .fct-task-menu {
	position: relative;
	z-index: 40;
}

[data-fct-team-page="1"] .fct-task-menu > summary {
	list-style: none;
}

[data-fct-team-page="1"] .fct-task-menu > summary::-webkit-details-marker {
	display: none;
}

[data-fct-team-page="1"] .fct-task-menu-panel {
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	transform: translateX(-50%);
	width: min(520px, calc(100vw - 40px));
	max-height: min(70vh, 560px);
	overflow: auto;
	padding: 12px;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: rgba(8, 13, 20, .98);
	box-shadow: var(--nsff-shadow);
}

[data-fct-team-page="1"] .fct-task-menu-link {
	display: block;
	padding: 11px 12px;
	border: 1px solid transparent;
	border-radius: 12px;
	color: var(--nsff-text-soft) !important;
	text-decoration: none !important;
}

[data-fct-team-page="1"] .fct-task-menu-link:hover,
[data-fct-team-page="1"] .fct-task-menu-link.is-current {
	border-color: var(--nsff-border);
	background: rgba(166, 197, 231, .08);
}

[data-fct-team-page="1"] .fct-task-menu-link > div:first-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

[data-fct-team-page="1"] .fct-unified-bar {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 15px 16px;
	margin: 16px 0 18px;
	border: 1px solid rgba(245, 158, 11, .28);
	border-left: 4px solid var(--nsff-pending);
	border-radius: 14px;
	background: rgba(245, 158, 11, .08);
	color: var(--nsff-text-soft);
}

[data-fct-team-page="1"] .fct-unified-bar.is-complete,
[data-fct-team-page="1"] .fct-unified-bar.is-locked {
	border-color: rgba(16, 185, 129, .28);
	border-left-color: var(--nsff-done);
	background: rgba(16, 185, 129, .08);
}

[data-fct-team-page="1"] .fct-unified-bar.is-expired {
	border-color: rgba(239, 68, 68, .28);
	border-left-color: var(--nsff-expired);
	background: rgba(239, 68, 68, .08);
}

[data-fct-team-page="1"] .fct-bar-icon {
	font-size: 22px;
	line-height: 1;
}

[data-fct-team-page="1"] .fct-bar-content {
	display: grid;
	gap: 4px;
}

[data-fct-team-page="1"] .fct-bar-content strong {
	color: var(--nsff-text);
}

[data-fct-team-page="1"] .fct-inline-poster {
	max-width: 360px;
	margin: 18px auto;
	border-radius: var(--nsff-radius);
	overflow: hidden;
}

[data-fct-team-page="1"] .fct-inline-poster img {
	display: block;
	width: 100%;
	height: auto;
}

[data-fct-team-page="1"] .fct-form-locked {
	opacity: .68;
	filter: grayscale(.15);
}

[data-fct-team-page="1"] .fluentform,
[data-fct-team-page="1"] .frm-fluent-form,
[data-fct-team-page="1"] .ff-el-group,
[data-fct-team-page="1"] .ff-t-container,
[data-fct-team-page="1"] .ff-t-cell {
	max-width: 100%;
}

[data-fct-team-page="1"] .ff-el-input--label label,
[data-fct-team-page="1"] .ff-el-group label {
	color: var(--nsff-text-soft);
	font-weight: 750;
}

[data-fct-team-page="1"] .ff-el-form-control,
[data-fct-team-page="1"] .fluentform input[type="text"],
[data-fct-team-page="1"] .fluentform input[type="email"],
[data-fct-team-page="1"] .fluentform input[type="url"],
[data-fct-team-page="1"] .fluentform input[type="number"],
[data-fct-team-page="1"] .fluentform textarea,
[data-fct-team-page="1"] .fluentform select {
	border-color: var(--nsff-border) !important;
	border-radius: 12px !important;
	background: var(--nsff-field-bg) !important;
	color: var(--nsff-text) !important;
}

[data-fct-team-page="1"] .ff_upload_btn.ff-btn,
[data-fct-team-page="1"] .ff-btn-submit {
	border-radius: 999px !important;
}

[data-fct-team-page="1"] .fct-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--nsff-border-soft);
}

[data-fct-team-page="1"] .fct-form-footer-left,
[data-fct-team-page="1"] .fct-form-footer-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

[data-fct-team-page="1"] .fct-draft-msg,
[data-fct-team-page="1"] .fct-action-msg,
[data-fct-team-page="1"] .fct-share-msg {
	color: var(--nsff-muted);
	font-size: 13px;
}

[data-fct-team-page="1"] .fct-files-wrap,
[data-fct-team-page="1"] .fct-last-uploaded-list {
	display: grid;
	gap: 12px;
}

[data-fct-team-page="1"] .fct-files-block,
[data-fct-team-page="1"] .fct-last-uploaded-list > div {
	padding: 14px;
	box-shadow: none;
}

[data-fct-team-page="1"] .fct-last-uploaded-title,
[data-fct-team-page="1"] .fct-fb-title {
	color: var(--nsff-text);
	font-weight: 850;
}

[data-fct-team-page="1"] .fct-share-panel {
	margin-top: var(--fct-team-gap);
}

[data-fct-team-page="1"] .fct-share-body,
[data-fct-team-page="1"] .fct-share-section,
[data-fct-team-page="1"] .fct-share-member-list,
[data-fct-team-page="1"] .fct-share-invite {
	display: grid;
	gap: 14px;
}

[data-fct-team-page="1"] .fct-share-member-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--nsff-border-soft);
	border-radius: 14px;
	background: rgba(5, 8, 13, .32);
}

[data-fct-team-page="1"] .fct-share-member-main {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

[data-fct-team-page="1"] .fct-share-avatar,
[data-fct-team-page="1"] .fct-share-avatar img {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	object-fit: cover;
}

[data-fct-team-page="1"] .fct-share-avatar.is-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(166, 197, 231, .12);
	color: var(--nsff-ice-2);
	font-weight: 850;
}

[data-fct-team-page="1"] .fct-share-member-copy {
	min-width: 0;
}

[data-fct-team-page="1"] .fct-share-member-name,
[data-fct-team-page="1"] .fct-share-member-email {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

[data-fct-team-page="1"] .fct-share-invite-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

[data-fct-team-page="1"] .fct-payment-cta-row,
[data-fct-team-page="1"] .fct-payment-row,
[data-fct-team-page="1"] .fct-payment-reference-card,
[data-fct-team-page="1"] .fct-payment-summary-item {
	padding: 14px;
	box-shadow: none;
}

[data-fct-team-page="1"] .fct-payment-cta-title,
[data-fct-team-page="1"] .fct-payment-row-title,
[data-fct-team-page="1"] .fct-payment-reference-label,
[data-fct-team-page="1"] .fct-payment-summary-item strong {
	color: var(--nsff-text);
	font-weight: 850;
}

[data-fct-team-page="1"] .fct-payment-list,
[data-fct-team-page="1"] .fct-payment-summary-grid {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

[data-fct-team-page="1"] .fct-payment-summary-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

[data-fct-team-page="1"] .fct-payment-summary-item span {
	display: block;
	margin-bottom: 6px;
	color: var(--nsff-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
}

[data-fct-team-page="1"] .fct-payment-code-group {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

[data-fct-team-page="1"] .fct-payment-code-group code {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 9px 12px;
	border: 1px solid var(--nsff-border);
	border-radius: 10px;
	background: rgba(5, 8, 13, .76);
	color: var(--nsff-ice);
	font-weight: 850;
	letter-spacing: .04em;
}

[data-fct-team-page="1"] .fct-fb-wrap {
	padding: 18px;
	box-shadow: none;
}

[data-fct-team-page="1"] .fct-fb-judge {
	padding: 14px;
	border: 1px solid var(--nsff-border-soft);
	border-radius: 14px;
	background: rgba(5, 8, 13, .3);
}

[data-fct-team-page="1"] .fct-fb-label {
	color: var(--nsff-ice-2);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .08em;
}

[data-fct-team-page="1"] .fct-lightbox-box,
[data-fct-team-page="1"] .fct-modal-box {
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: var(--nsff-panel-bg);
	box-shadow: var(--nsff-shadow);
}

@media (max-width: 900px) {
	[data-fct-team-page="1"] .fct-cinema-content,
	[data-fct-team-page="1"] .fct-team-hero-inner {
		width: min(100%, calc(100vw - 32px));
	}

	[data-fct-team-page="1"] .fct-portal-head,
	[data-fct-team-page="1"] .fct-portal-head-main,
	[data-fct-team-page="1"] .fct-panel-header,
	[data-fct-team-page="1"] .fct-section-title,
	[data-fct-team-page="1"] .fct-payment-cta-row,
	[data-fct-team-page="1"] .fct-payment-row,
	[data-fct-team-page="1"] .fct-payment-actions {
		align-items: stretch;
		flex-direction: column;
	}

	[data-fct-team-page="1"] .fct-portal-back-wrap,
	[data-fct-team-page="1"] .fct-portal-back-wrap .fct-btn,
	[data-fct-team-page="1"] .fct-payment-actions .fct-btn,
	[data-fct-team-page="1"] .fct-payment-cta-row .fct-btn {
		width: 100%;
	}

	[data-fct-team-page="1"] .fct-dashboard-top {
		grid-template-columns: 1fr;
	}

	[data-fct-team-page="1"] .fct-dashboard-poster {
		max-width: 340px;
		margin: 0 auto;
	}

	[data-fct-team-page="1"] .fct-task-cards,
	[data-fct-team-page="1"] .fct-payment-summary-grid {
		grid-template-columns: 1fr;
	}

	[data-fct-team-page="1"] .ff-t-container,
	[data-fct-team-page="1"] .ff-column-container {
		display: block !important;
	}

	[data-fct-team-page="1"] .ff-t-cell {
		width: 100% !important;
		max-width: 100% !important;
		flex-basis: auto !important;
	}
}

@media (max-width: 640px) {
	[data-fct-team-page="1"] .fct-cinema-content,
	[data-fct-team-page="1"] .fct-team-hero-inner {
		width: min(100%, calc(100vw - 24px));
	}

	[data-fct-team-page="1"] .fct-team-hero.fct-directory-style-hero {
		min-height: 340px;
	}

	[data-fct-team-page="1"] .fct-panel,
	[data-fct-team-page="1"] .fct-share-panel,
	[data-fct-team-page="1"] .fct-payment-panel {
		padding: 16px;
	}

	[data-fct-team-page="1"] .fct-team-grid {
		grid-template-columns: 1fr;
	}

	[data-fct-team-page="1"] .fct-team-card {
		grid-template-columns: 78px minmax(0, 1fr);
		min-height: 116px;
		gap: 12px;
		padding: 12px;
	}

	[data-fct-team-page="1"] .fct-team-poster-wrap,
	[data-fct-team-page="1"] .fct-team-poster-placeholder {
		min-height: 92px;
	}

	[data-fct-team-page="1"] .fct-tabs,
	[data-fct-team-page="1"] .fct-team-tabs {
		display: grid;
		grid-template-columns: 1fr;
	}

	[data-fct-team-page="1"] .fct-tab,
	[data-fct-team-page="1"] .fct-team-tabs .fct-tab,
	[data-fct-team-page="1"] .fct-btn,
	[data-fct-team-page="1"] .fct-action-btn {
		width: 100%;
	}

	[data-fct-team-page="1"] .fct-task-nav,
	[data-fct-team-page="1"] .fct-form-footer,
	[data-fct-team-page="1"] .fct-form-footer-left,
	[data-fct-team-page="1"] .fct-form-footer-right,
	[data-fct-team-page="1"] .fct-share-member-row,
	[data-fct-team-page="1"] .fct-share-invite-row {
		align-items: stretch;
		flex-direction: column;
		display: flex;
	}

	[data-fct-team-page="1"] .fct-task-menu-panel {
		left: 0;
		transform: none;
		width: calc(100vw - 32px);
	}

	[data-fct-team-page="1"] .fct-payment-code-group,
	[data-fct-team-page="1"] .fct-payment-code-group .fct-btn,
	[data-fct-team-page="1"] .fct-payment-code-group code {
		width: 100%;
	}
}

/* Shared shell polish v42.13.17
   Keep the outer shell identical across Directory, Team Portal, and Judge Portal.
   Page-specific CSS should style only the content inside this shell. */
.fct-seamless-cinematic .fct-cinema-content,
.fct-seamless-cinematic .fct-public-profile-content,
[data-fct-team-page="1"] .fct-cinema-content,
.fct-judge-page-wrap .fct-cinema-content {
	width: min(var(--fct-shared-content-width), calc(100vw - 56px)) !important;
	max-width: var(--fct-shared-content-width) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: clamp(42px, 5vw, 68px) clamp(28px, 3vw, 44px) clamp(64px, 6vw, 92px) !important;
	background: linear-gradient(180deg, rgba(166, 211, 244, .032), rgba(166, 211, 244, .010)) !important;
	border-left: 1px solid rgba(166, 211, 244, .08) !important;
	border-right: 1px solid rgba(166, 211, 244, .08) !important;
	border-top: 0 !important;
	border-bottom: 0 !important;
	border-radius: 0 !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 20px 60px rgba(0, 0, 0, .10) !important;
	overflow: visible !important;
}

[data-fct-team-page="1"] .fct-cinema-content > :first-child,
.fct-seamless-cinematic .fct-cinema-content > :first-child,
.fct-judge-page-wrap .fct-cinema-content > :first-child {
	margin-top: 0 !important;
}

@media (max-width: 900px) {
	.fct-seamless-cinematic .fct-cinema-content,
	.fct-seamless-cinematic .fct-public-profile-content,
	[data-fct-team-page="1"] .fct-cinema-content,
	.fct-judge-page-wrap .fct-cinema-content {
		width: min(100%, calc(100vw - 32px)) !important;
		padding: 32px 18px 58px !important;
	}
}

@media (max-width: 640px) {
	.fct-seamless-cinematic .fct-cinema-content,
	.fct-seamless-cinematic .fct-public-profile-content,
	[data-fct-team-page="1"] .fct-cinema-content,
	.fct-judge-page-wrap .fct-cinema-content {
		width: min(100%, calc(100vw - 20px)) !important;
		padding: 24px 12px 48px !important;
	}
}


/* Team Portal v42.13.18 shared layout refinements
   Keep the shared shell intact. Only content components are adjusted here. */
[data-fct-team-page="1"] .fct-dashboard-inline-content,
[data-fct-team-page="1"] .fct-dashboard-custom {
	display: block !important;
	padding: 0 !important;
	margin: 14px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--nsff-text-soft) !important;
}

[data-fct-team-page="1"] .fct-dashboard-inline-content > :first-child,
[data-fct-team-page="1"] .fct-dashboard-custom > :first-child {
	margin-top: 0 !important;
}

[data-fct-team-page="1"] .fct-dashboard-inline-content > :last-child,
[data-fct-team-page="1"] .fct-dashboard-custom > :last-child {
	margin-bottom: 0 !important;
}

[data-fct-team-page="1"] .fct-dashboard-inline-content p,
[data-fct-team-page="1"] .fct-dashboard-custom p {
	margin: 0 0 10px !important;
	line-height: 1.55 !important;
}

[data-fct-team-page="1"] .fct-dashboard-summary {
	gap: 14px !important;
}

[data-fct-team-page="1"] .fct-task-menu {
	position: relative !important;
	z-index: 80 !important;
}

[data-fct-team-page="1"] .fct-task-menu-trigger {
	min-width: 160px !important;
}

[data-fct-team-page="1"] .fct-task-menu[open] .fct-task-menu-trigger {
	border-color: rgba(166, 197, 231, .42) !important;
	background: linear-gradient(180deg, rgba(166, 197, 231, .18), rgba(96, 165, 250, .10)) !important;
}

[data-fct-team-page="1"] .fct-task-menu-panel {
	position: absolute !important;
	top: calc(100% + 12px) !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	z-index: 9000 !important;
	width: min(680px, calc(100vw - 48px)) !important;
	max-height: min(72vh, 660px) !important;
	overflow: auto !important;
	padding: 14px !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	background: linear-gradient(180deg, rgba(13, 21, 34, .98), rgba(5, 8, 13, .98)) !important;
	box-shadow: 0 26px 70px rgba(0, 0, 0, .58) !important;
}

[data-fct-team-page="1"] .fct-task-menu-phase {
	display: grid !important;
	gap: 8px !important;
}

[data-fct-team-page="1"] .fct-task-menu-phase + .fct-task-menu-phase {
	margin-top: 14px !important;
	padding-top: 14px !important;
	border-top: 1px solid var(--nsff-border-soft) !important;
}

[data-fct-team-page="1"] .fct-task-menu-phase-title {
	padding: 0 4px 4px !important;
	color: var(--nsff-ice-2) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	letter-spacing: .12em !important;
	text-transform: uppercase !important;
}

[data-fct-team-page="1"] .fct-task-menu-link {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 7px !important;
	padding: 12px 13px !important;
	border: 1px solid rgba(166, 197, 231, .12) !important;
	border-radius: 14px !important;
	background: rgba(166, 197, 231, .045) !important;
	color: var(--nsff-text-soft) !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

[data-fct-team-page="1"] .fct-task-menu-link:hover,
[data-fct-team-page="1"] .fct-task-menu-link.is-current {
	border-color: rgba(166, 197, 231, .34) !important;
	background: rgba(166, 197, 231, .10) !important;
	color: var(--nsff-text) !important;
}

[data-fct-team-page="1"] .fct-task-menu-link.is-current {
	box-shadow: inset 3px 0 0 var(--nsff-ice-2) !important;
}

[data-fct-team-page="1"] .fct-task-menu-link.is-done {
	border-color: rgba(16, 185, 129, .26) !important;
	background: rgba(16, 185, 129, .075) !important;
}

[data-fct-team-page="1"] .fct-task-menu-link.is-prog {
	border-color: rgba(245, 158, 11, .28) !important;
	background: rgba(245, 158, 11, .08) !important;
}

[data-fct-team-page="1"] .fct-task-menu-link.is-expired {
	border-color: rgba(239, 68, 68, .30) !important;
	background: rgba(239, 68, 68, .08) !important;
}

[data-fct-team-page="1"] .fct-task-menu-link.is-new,
[data-fct-team-page="1"] .fct-task-menu-link.is-locked {
	border-color: rgba(139, 152, 170, .24) !important;
	background: rgba(139, 152, 170, .055) !important;
}

[data-fct-team-page="1"] .fct-task-menu-link-main {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	align-items: center !important;
	gap: 12px !important;
}

[data-fct-team-page="1"] .fct-task-menu-link-title {
	min-width: 0 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
	color: var(--nsff-text) !important;
	font-weight: 850 !important;
	line-height: 1.25 !important;
}

[data-fct-team-page="1"] .fct-task-menu-link-badge {
	display: inline-flex !important;
	justify-content: flex-end !important;
	min-width: 0 !important;
}

[data-fct-team-page="1"] .fct-task-menu-link-due {
	color: var(--nsff-muted) !important;
	font-size: 12px !important;
	line-height: 1.35 !important;
}

@media (max-width: 700px) {
	[data-fct-team-page="1"] .fct-task-menu-panel {
		position: fixed !important;
		top: auto !important;
		right: 12px !important;
		bottom: 12px !important;
		left: 12px !important;
		transform: none !important;
		width: auto !important;
		max-height: min(72vh, 620px) !important;
		padding: 12px !important;
	}

	[data-fct-team-page="1"] .fct-task-menu-link-main {
		grid-template-columns: 1fr !important;
		gap: 8px !important;
	}

	[data-fct-team-page="1"] .fct-task-menu-link-title {
		white-space: normal !important;
		display: -webkit-box !important;
		-webkit-line-clamp: 2 !important;
		-webkit-box-orient: vertical !important;
	}

	[data-fct-team-page="1"] .fct-task-menu-link-badge {
		justify-content: flex-start !important;
	}
}

/* Team Portal v42.13.19 task menu center + sticky action footer
   Shared asset cleanup only. Keeps the page shell consistent and avoids inline styling. */
[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav {
	display: grid !important;
	grid-template-columns: minmax(120px, auto) minmax(0, 1fr) minmax(120px, auto) !important;
	align-items: center !important;
	gap: 14px !important;
	margin: 0 0 18px !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn:first-child,
[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn-disabled:first-child {
	justify-self: start !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn:last-child,
[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn-disabled:last-child {
	justify-self: end !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-menu {
	justify-self: center !important;
	width: min(100%, 720px) !important;
	text-align: center !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-menu-trigger {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 190px !important;
	margin-inline: auto !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-menu-panel {
	text-align: left !important;
	width: min(760px, calc(100vw - 56px)) !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer {
	position: sticky !important;
	bottom: 14px !important;
	z-index: 3500 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 14px !important;
	margin: 24px 0 0 !important;
	padding: 12px 14px !important;
	border: 1px solid rgba(166, 197, 231, .24) !important;
	border-radius: 18px !important;
	background: linear-gradient(180deg, rgba(14, 25, 40, .96), rgba(8, 15, 26, .96)) !important;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .38), 0 0 0 1px rgba(255, 255, 255, .03) inset !important;
	backdrop-filter: blur(16px) !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer-left,
[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer-right {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	min-width: 0 !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer-left {
	flex: 1 1 auto !important;
	flex-wrap: wrap !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer-right {
	flex: 0 1 auto !important;
	justify-content: flex-end !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-alert,
[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-action-msg {
	max-width: 100% !important;
}

@media (max-width: 820px) {
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav {
		grid-template-columns: 1fr 1fr !important;
		gap: 10px !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-menu {
		grid-column: 1 / -1 !important;
		grid-row: 1 !important;
		width: 100% !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn:first-child,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn-disabled:first-child {
		grid-column: 1 !important;
		grid-row: 2 !important;
		justify-self: stretch !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn:last-child,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn-disabled:last-child {
		grid-column: 2 !important;
		grid-row: 2 !important;
		justify-self: stretch !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-menu-trigger {
		width: 100% !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer {
		bottom: 10px !important;
		align-items: stretch !important;
		flex-direction: column !important;
		padding: 12px !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer-left,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer-right {
		width: 100% !important;
		justify-content: stretch !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-action-btn,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-action-primary,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-save-draft-btn,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-mark-complete-btn {
		flex: 1 1 140px !important;
		justify-content: center !important;
	}
}

@media (max-width: 520px) {
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav {
		grid-template-columns: 1fr !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn:first-child,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn-disabled:first-child,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn:last-child,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-task-nav > .fct-btn-disabled:last-child {
		grid-column: 1 !important;
		grid-row: auto !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer {
		bottom: 8px !important;
		border-radius: 16px !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer-left {
		flex-direction: column !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-action-btn,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-action-primary,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-save-draft-btn,
	[data-fct-team-page="1"] [data-fct-task-wrap="1"] .fct-form-footer .fct-mark-complete-btn {
		width: 100% !important;
		flex-basis: auto !important;
	}
}

/* Team Portal v42.13.20: shared inner layout refinements */
[data-fct-team-page="1"] .fct-portal-head.is-member-view {
	justify-content: flex-start !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

[data-fct-team-page="1"] .fct-portal-head.is-member-view .fct-portal-back-inline {
	width: fit-content !important;
}

[data-fct-team-page="1"] .fct-portal-head.is-admin-view {
	align-items: center !important;
	padding: 14px !important;
	background: linear-gradient(180deg, rgba(13, 23, 38, .74), rgba(4, 9, 17, .54)) !important;
}

[data-fct-team-page="1"] .fct-portal-head.is-admin-view .fct-portal-title-wrap {
	flex: 1 1 auto !important;
}

[data-fct-team-page="1"] .fct-task-upload-layout {
	display: grid !important;
	grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) !important;
	gap: clamp(18px, 2.5vw, 30px) !important;
	align-items: start !important;
	margin-top: 22px !important;
}

[data-fct-team-page="1"] .fct-task-upload-main,
[data-fct-team-page="1"] .fct-task-upload-preview {
	min-width: 0 !important;
}

[data-fct-team-page="1"] .fct-task-upload-main {
	display: grid !important;
	gap: 18px !important;
}

[data-fct-team-page="1"] .fct-task-upload-preview {
	position: sticky !important;
	top: 96px !important;
	display: grid !important;
	gap: 14px !important;
	padding: clamp(16px, 2vw, 20px) !important;
	border: 1px solid rgba(166, 211, 244, .18) !important;
	border-radius: var(--nsff-radius) !important;
	background: linear-gradient(180deg, rgba(13, 23, 38, .78), rgba(4, 9, 17, .48)) !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .04) !important;
}

[data-fct-team-page="1"] .fct-task-upload-preview-head {
	display: grid !important;
	gap: 4px !important;
	padding-bottom: 12px !important;
	border-bottom: 1px solid rgba(166, 211, 244, .13) !important;
}

[data-fct-team-page="1"] .fct-task-upload-preview-head span {
	color: var(--nsff-text) !important;
	font-size: 13px !important;
	font-weight: 950 !important;
	letter-spacing: .10em !important;
	text-transform: uppercase !important;
}

[data-fct-team-page="1"] .fct-task-upload-preview-head small {
	color: var(--nsff-muted) !important;
	font-size: 12px !important;
}

[data-fct-team-page="1"] .fct-task-upload-preview .fct-inline-poster {
	width: 100% !important;
	max-width: 260px !important;
	margin: 0 auto !important;
}

[data-fct-team-page="1"] .fct-task-upload-preview .fct-inline-poster img,
[data-fct-team-page="1"] .fct-task-upload-preview .fct-team-poster-placeholder {
	width: 100% !important;
	aspect-ratio: 2 / 3 !important;
	object-fit: cover !important;
	border-radius: calc(var(--nsff-radius) - 6px) !important;
	border: 1px solid rgba(166, 211, 244, .22) !important;
	background: rgba(4, 9, 17, .62) !important;
	box-shadow: 0 18px 34px rgba(0, 0, 0, .30) !important;
}

[data-fct-team-page="1"] .fct-task-upload-main .fct-task-form-live,
[data-fct-team-page="1"] .fct-task-upload-main .fct-form-locked {
	min-width: 0 !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .fluentform,
[data-fct-team-page="1"] [data-fct-task-wrap] .fluentform_wrapper,
[data-fct-team-page="1"] [data-fct-task-wrap] form,
[data-fct-team-page="1"] [data-fct-task-wrap] fieldset {
	max-width: 100% !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .ff-el-group:has(input[type="file"]),
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-el-group:has(.ff-upload),
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-el-group:has(.ff_upload_btn),
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-el-group:has(.ff_file_upload_btn) {
	padding: clamp(16px, 2vw, 22px) !important;
	border: 1px dashed rgba(166, 211, 244, .30) !important;
	border-radius: var(--nsff-radius) !important;
	background: rgba(13, 23, 38, .46) !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .ff-el-group:has(input[type="file"]) .ff-el-input--label,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-el-group:has(.ff-upload) .ff-el-input--label,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-el-group:has(.ff_upload_btn) .ff-el-input--label,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-el-group:has(.ff_file_upload_btn) .ff-el-input--label {
	margin-bottom: 12px !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .ff_upload_btn,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff_file_upload_btn,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff_upload_btn.ff-btn,
[data-fct-team-page="1"] [data-fct-task-wrap] input[type="file"]::file-selector-button {
	min-height: 42px !important;
	padding: 10px 16px !important;
	border: 1px solid rgba(166, 211, 244, .30) !important;
	border-radius: 999px !important;
	background: linear-gradient(180deg, rgba(36, 52, 71, .98), rgba(18, 31, 49, .96)) !important;
	color: var(--nsff-text) !important;
	font-weight: 900 !important;
	letter-spacing: .02em !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .ff-upload-preview,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-uploaded-list,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-upload-progress-inline,
[data-fct-team-page="1"] [data-fct-task-wrap] .fct-last-uploaded {
	margin-top: 14px !important;
	padding: 14px !important;
	border: 1px solid rgba(166, 211, 244, .16) !important;
	border-radius: var(--nsff-radius-sm) !important;
	background: rgba(4, 9, 17, .38) !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .fct-last-uploaded-title {
	margin-bottom: 10px !important;
	color: var(--nsff-ice) !important;
	font-size: 12px !important;
	font-weight: 950 !important;
	letter-spacing: .10em !important;
	text-transform: uppercase !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .fct-last-uploaded-list {
	margin-top: 0 !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .fct-last-uploaded-list > div,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-upload-preview li,
[data-fct-team-page="1"] [data-fct-task-wrap] .ff-uploaded-list li {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	padding: 12px !important;
	border: 1px solid rgba(166, 211, 244, .12) !important;
	border-radius: 12px !important;
	background: rgba(13, 23, 38, .56) !important;
	color: var(--nsff-text-soft) !important;
}

[data-fct-team-page="1"] [data-fct-task-wrap] .fct-task-upload-main input[type="text"],
[data-fct-team-page="1"] [data-fct-task-wrap] .fct-task-upload-main input[type="email"],
[data-fct-team-page="1"] [data-fct-task-wrap] .fct-task-upload-main input[type="url"],
[data-fct-team-page="1"] [data-fct-task-wrap] .fct-task-upload-main textarea,
[data-fct-team-page="1"] [data-fct-task-wrap] .fct-task-upload-main select {
	max-width: 100% !important;
}

@media (max-width: 980px) {
	[data-fct-team-page="1"] .fct-task-upload-layout {
		grid-template-columns: 1fr !important;
	}

	[data-fct-team-page="1"] .fct-task-upload-preview {
		position: static !important;
	}

	[data-fct-team-page="1"] .fct-task-upload-preview .fct-inline-poster {
		max-width: 220px !important;
	}
}

@media (max-width: 620px) {
	[data-fct-team-page="1"] .fct-portal-head.is-admin-view {
		align-items: stretch !important;
	}

	[data-fct-team-page="1"] .fct-portal-head.is-member-view .fct-portal-back-inline,
	[data-fct-team-page="1"] .fct-portal-head.is-admin-view .fct-portal-back-wrap,
	[data-fct-team-page="1"] .fct-portal-head.is-admin-view .fct-portal-back-wrap .fct-btn {
		width: 100% !important;
	}

	[data-fct-team-page="1"] [data-fct-task-wrap] .fct-last-uploaded-list > div,
	[data-fct-team-page="1"] [data-fct-task-wrap] .ff-upload-preview li,
	[data-fct-team-page="1"] [data-fct-task-wrap] .ff-uploaded-list li {
		align-items: flex-start !important;
		flex-direction: column !important;
	}
}

/* Team Portal payment notice and lock screen polish */
[data-fct-team-page="1"] .fct-registration-payment-panel,
[data-fct-team-page="1"] .fct-payment-lock-panel {
	display: grid;
	gap: 18px;
	padding: clamp(20px, 3vw, 30px) !important;
	overflow: hidden;
}

[data-fct-team-page="1"] .fct-payment-hero {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(166, 211, 244, .18);
	background:
		linear-gradient(135deg, rgba(166, 197, 231, .14), rgba(8, 13, 20, .34)),
		rgba(4, 9, 17, .36);
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .05);
}

[data-fct-team-page="1"] .fct-payment-hero-icon,
[data-fct-team-page="1"] .fct-payment-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(166, 211, 244, .26);
	border-radius: 999px;
	background: rgba(166, 197, 231, .12);
	color: var(--nsff-ice);
	font-size: 20px;
	font-weight: 950;
	line-height: 1;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .08);
}

[data-fct-team-page="1"] .fct-payment-hero-copy h3 {
	margin: 4px 0 8px;
	color: var(--nsff-text);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 950;
	letter-spacing: -.035em;
	line-height: 1.05;
}

[data-fct-team-page="1"] .fct-payment-hero-copy p,
[data-fct-team-page="1"] .fct-payment-reference-copy p {
	margin: 0;
	color: var(--nsff-muted);
	font-size: 15px;
	line-height: 1.6;
}

[data-fct-team-page="1"] .fct-payment-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

[data-fct-team-page="1"] .fct-payment-step {
	display: grid;
	gap: 6px;
	align-content: start;
	min-height: 118px;
	padding: 15px;
	border: 1px solid rgba(166, 211, 244, .16);
	background: rgba(4, 9, 17, .34);
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .04);
}

[data-fct-team-page="1"] .fct-payment-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: rgba(166, 197, 231, .14);
	color: var(--nsff-ice);
	font-size: 12px;
	font-weight: 950;
}

[data-fct-team-page="1"] .fct-payment-step strong {
	color: var(--nsff-text);
	font-size: 15px;
	font-weight: 950;
}

[data-fct-team-page="1"] .fct-payment-step em {
	color: var(--nsff-muted);
	font-size: 13px;
	font-style: normal;
	line-height: 1.45;
}

[data-fct-team-page="1"] .fct-payment-info-card,
[data-fct-team-page="1"] .fct-student-discount-notice.fct-payment-info-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 14px;
	margin: 0 !important;
	padding: 16px !important;
	border: 1px solid rgba(245, 158, 11, .26) !important;
	border-left: 3px solid var(--nsff-pending) !important;
	border-radius: 0 !important;
	background: linear-gradient(135deg, rgba(245, 158, 11, .12), rgba(13, 21, 34, .64)) !important;
}

[data-fct-team-page="1"] .fct-student-discount-notice .fct-payment-info-icon {
	border-color: rgba(245, 158, 11, .36);
	background: rgba(245, 158, 11, .15);
	color: #fbbf24;
}

[data-fct-team-page="1"] .fct-payment-info-copy {
	min-width: 0;
}

[data-fct-team-page="1"] .fct-student-discount-title {
	margin: 0 0 6px !important;
	color: var(--nsff-text) !important;
	font-size: 13px;
	font-weight: 950 !important;
	letter-spacing: .10em !important;
	text-transform: uppercase !important;
}

[data-fct-team-page="1"] .fct-student-discount-copy {
	margin: 0;
	color: var(--nsff-text-soft) !important;
	font-size: 14px;
	line-height: 1.65;
}

[data-fct-team-page="1"] .fct-student-discount-copy a {
	color: var(--nsff-ice) !important;
	font-weight: 850;
	text-decoration-color: rgba(166, 197, 231, .5);
}

[data-fct-team-page="1"] .fct-payment-cta-row,
[data-fct-team-page="1"] .fct-payment-row,
[data-fct-team-page="1"] .fct-payment-reference-card,
[data-fct-team-page="1"] .fct-payment-summary-item {
	border: 1px solid rgba(166, 211, 244, .14);
	background: rgba(4, 9, 17, .36);
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .04);
}

[data-fct-team-page="1"] .fct-payment-reference-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	padding: 16px;
}

[data-fct-team-page="1"] .fct-payment-reference-label {
	margin-bottom: 4px;
}

[data-fct-team-page="1"] .fct-payment-balance-note {
	color: var(--nsff-muted);
	font-size: 13px;
	font-weight: 800;
}

[data-fct-team-page="1"] .fct-payment-lock-head {
	margin-bottom: 0 !important;
}

@media (max-width: 900px) {
	[data-fct-team-page="1"] .fct-payment-steps,
	[data-fct-team-page="1"] .fct-payment-reference-card {
		grid-template-columns: 1fr;
	}

	[data-fct-team-page="1"] .fct-payment-hero,
	[data-fct-team-page="1"] .fct-payment-info-card,
	[data-fct-team-page="1"] .fct-student-discount-notice.fct-payment-info-card {
		grid-template-columns: 1fr;
	}

	[data-fct-team-page="1"] .fct-payment-hero-icon,
	[data-fct-team-page="1"] .fct-payment-info-icon {
		width: 42px;
		height: 42px;
	}

	[data-fct-team-page="1"] .fct-payment-step {
		min-height: 0;
	}
}


/* ==========================================================
   Front Admin Dashboard v42.13.23
   Uses the same shared cinematic UI system as the filmmaker directory.
   ========================================================== */
.fct-admin-dashboard-wrap,
.fct-admin-login-shell,
.fct-admin-message-shell {
	background: var(--nsff-bg);
	color: var(--nsff-text);
}

.fct-admin-dashboard-wrap {
	display: block;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.fct-admin-dashboard-wrap .fct-admin-dashboard-content {
	display: block !important;
}

.fct-admin-dashboard-wrap .fct-master-wrap {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	min-height: 760px;
	width: 100%;
	margin: 0;
	border: 1px solid rgba(166, 211, 244, .18);
	background: linear-gradient(180deg, rgba(13, 21, 34, .88), rgba(5, 8, 13, .98));
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .05), 0 24px 60px rgba(0, 0, 0, .30);
	overflow: hidden;
	box-sizing: border-box;
}

.fct-admin-dashboard-wrap .fct-master-wrap *,
.fct-admin-login-shell *,
.fct-admin-message-shell * {
	box-sizing: border-box;
}

.fct-admin-dashboard-wrap .fct-master-nav {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px 16px;
	border-right: 1px solid rgba(166, 211, 244, .14);
	background:
		linear-gradient(180deg, rgba(13, 21, 34, .94), rgba(4, 9, 17, .98)),
		radial-gradient(circle at 25% 12%, rgba(166, 211, 244, .12), transparent 34%);
	color: var(--nsff-text);
}

.fct-admin-dashboard-wrap .fct-master-brand {
	padding: 8px 10px 22px;
	color: var(--nsff-ice-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.fct-admin-dashboard-wrap .fct-master-item {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 11px 12px;
	border: 1px solid transparent;
	border-radius: 10px;
	background: transparent;
	color: var(--nsff-text-soft);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none !important;
	transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.fct-admin-dashboard-wrap .fct-master-item:hover,
.fct-admin-dashboard-wrap .fct-master-item.active {
	border-color: rgba(103, 232, 249, .42);
	background: linear-gradient(180deg, rgba(103, 232, 249, .14), rgba(166, 211, 244, .08));
	color: #fff;
	transform: translateX(2px);
}

.fct-admin-dashboard-wrap .fct-master-item.active {
	box-shadow: inset 0 0 0 1px rgba(226, 245, 255, .05), 0 12px 24px rgba(0, 0, 0, .20);
}

.fct-admin-dashboard-wrap .fct-master-content {
	min-width: 0;
	padding: clamp(22px, 3vw, 38px);
	background:
		linear-gradient(180deg, rgba(8, 13, 20, .48), rgba(5, 8, 13, .88)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 82px);
	overflow-x: auto;
}

.fct-admin-dashboard-wrap .fct-master-alert,
.fct-admin-dashboard-wrap .fct-notice,
.fct-admin-dashboard-wrap .fct-sender-notice,
.fct-admin-dashboard-wrap .fct-inline-save-status,
.fct-admin-dashboard-wrap .fct-dashboard-alert,
.fct-admin-dashboard-wrap .fct-admin-soft-card {
	border-radius: 12px;
	line-height: 1.55;
}

.fct-admin-dashboard-wrap .fct-view-header {
	margin: 0 0 24px;
	padding: 0 0 18px;
	border-bottom: 1px solid rgba(166, 211, 244, .14);
}

.fct-admin-dashboard-wrap .fct-view-header h2,
.fct-admin-dashboard-wrap .fct-panel h3,
.fct-admin-dashboard-wrap .fct-panel-title,
.fct-admin-dashboard-wrap h3,
.fct-admin-dashboard-wrap h4 {
	color: var(--nsff-ice) !important;
	font-weight: 950;
	letter-spacing: -.02em;
}

.fct-admin-dashboard-wrap .fct-view-header h2 {
	margin: 0 0 8px;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.05;
}

.fct-admin-dashboard-wrap .fct-view-header p,
.fct-admin-dashboard-wrap p,
.fct-admin-dashboard-wrap .fct-muted,
.fct-admin-dashboard-wrap .fct-scroll-cell,
.fct-admin-dashboard-wrap .fct-admin-small-note {
	color: var(--nsff-muted) !important;
}

.fct-admin-dashboard-wrap .fct-panel,
.fct-admin-dashboard-wrap .fct-access-card,
.fct-admin-dashboard-wrap .fct-registration-tier-row,
.fct-admin-dashboard-wrap .fct-table-responsive,
.fct-fb-wrap,
.fct-fb-judge,
.fct-admin-login-card,
.fct-admin-empty-state {
	border: 1px solid rgba(166, 211, 244, .18) !important;
	background: var(--nsff-panel-bg) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .055), 0 18px 42px rgba(0, 0, 0, .26) !important;
	color: var(--nsff-text) !important;
}

.fct-admin-dashboard-wrap .fct-panel,
.fct-admin-login-card,
.fct-admin-empty-state {
	padding: clamp(20px, 2.5vw, 32px) !important;
}

.fct-admin-dashboard-wrap .fct-panel h3 {
	margin-top: 0;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(166, 211, 244, .12);
}

.fct-admin-dashboard-wrap .fct-table-responsive {
	width: 100%;
	max-height: 75vh;
	overflow: auto;
	border-radius: var(--nsff-radius) !important;
}

.fct-admin-dashboard-wrap .fct-data-table {
	width: 100%;
	min-width: 800px;
	border-collapse: collapse;
	text-align: left;
}

.fct-admin-dashboard-wrap .fct-data-table th {
	position: sticky;
	top: 0;
	z-index: 10;
	padding: 15px 18px;
	border-bottom: 1px solid rgba(166, 211, 244, .18);
	background: rgba(13, 21, 34, .98);
	color: var(--nsff-ice-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.fct-admin-dashboard-wrap .fct-data-table td {
	padding: 14px 18px;
	border-bottom: 1px solid rgba(166, 211, 244, .09);
	color: var(--nsff-text-soft);
	font-size: 14px;
	vertical-align: middle;
}

.fct-admin-dashboard-wrap .fct-data-table tr:hover td {
	background: rgba(166, 211, 244, .055);
}

.fct-admin-dashboard-wrap .fct-sticky-col {
	position: sticky;
	left: 0;
	z-index: 5;
	background: rgba(13, 21, 34, .98) !important;
	border-right: 1px solid rgba(166, 211, 244, .14);
	box-shadow: 10px 0 22px rgba(0, 0, 0, .18);
}

.fct-admin-dashboard-wrap th.fct-sticky-col {
	z-index: 15;
}

.fct-admin-dashboard-wrap .fct-sticky-col a,
.fct-admin-dashboard-wrap a {
	color: var(--nsff-ice-2);
}

.fct-admin-dashboard-wrap .fct-select,
.fct-admin-dashboard-wrap .fct-input-text,
.fct-admin-dashboard-wrap .fct-raw-html-editor,
.fct-admin-dashboard-wrap input[type="text"],
.fct-admin-dashboard-wrap input[type="email"],
.fct-admin-dashboard-wrap input[type="url"],
.fct-admin-dashboard-wrap input[type="search"],
.fct-admin-dashboard-wrap input[type="number"],
.fct-admin-dashboard-wrap select,
.fct-admin-dashboard-wrap textarea,
.fct-admin-login-shell input[type="text"],
.fct-admin-login-shell input[type="password"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(166, 211, 244, .26) !important;
	border-radius: 10px !important;
	background: var(--nsff-field-bg) !important;
	color: var(--nsff-text) !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .04) !important;
	outline: none !important;
}

.fct-admin-dashboard-wrap .fct-select:focus,
.fct-admin-dashboard-wrap .fct-input-text:focus,
.fct-admin-dashboard-wrap .fct-raw-html-editor:focus,
.fct-admin-dashboard-wrap input:focus,
.fct-admin-dashboard-wrap textarea:focus,
.fct-admin-dashboard-wrap select:focus,
.fct-admin-login-shell input:focus {
	border-color: rgba(103, 232, 249, .62) !important;
	box-shadow: 0 0 0 4px rgba(103, 232, 249, .12) !important;
}

.fct-admin-dashboard-wrap .fct-input-label,
.fct-admin-dashboard-wrap label,
.fct-admin-dashboard-wrap .fct-access-tab-key,
.fct-admin-dashboard-wrap .fct-card-kicker {
	color: var(--nsff-ice-2) !important;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-admin-dashboard-wrap .fct-btn-primary,
.fct-admin-dashboard-wrap .fct-btn-secondary,
.fct-admin-dashboard-wrap .fct-tab-btn,
.fct-admin-dashboard-wrap button,
.fct-admin-dashboard-wrap a.fct-btn-primary,
.fct-admin-login-shell .login-submit input {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 10px 15px;
	border: 1px solid rgba(166, 211, 244, .34) !important;
	border-radius: 8px !important;
	background: linear-gradient(180deg, rgba(166, 211, 244, .14), rgba(126, 200, 239, .08)) !important;
	color: var(--nsff-text) !important;
	font-size: 13px;
	font-weight: 950;
	line-height: 1.1;
	text-decoration: none !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .08) !important;
	cursor: pointer;
}

.fct-admin-dashboard-wrap .fct-btn-primary:hover,
.fct-admin-dashboard-wrap .fct-btn-secondary:hover,
.fct-admin-dashboard-wrap .fct-tab-btn:hover,
.fct-admin-dashboard-wrap button:hover,
.fct-admin-dashboard-wrap a.fct-btn-primary:hover,
.fct-admin-login-shell .login-submit input:hover {
	border-color: rgba(103, 232, 249, .62) !important;
	background: linear-gradient(180deg, rgba(103, 232, 249, .18), rgba(166, 211, 244, .10)) !important;
	color: #fff !important;
}

.fct-admin-dashboard-wrap .fct-editor-tabs,
.fct-admin-dashboard-wrap .fct-committee-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(166, 211, 244, .14);
}

.fct-admin-dashboard-wrap .fct-tab-btn.fct-tab-active,
.fct-admin-dashboard-wrap .fct-committee-tab.active {
	border-color: rgba(103, 232, 249, .62) !important;
	background: rgba(18, 31, 49, .96) !important;
	box-shadow: inset 0 -2px 0 var(--nsff-ice-2) !important;
}

.fct-admin-dashboard-wrap .fct-committee-inner-panel,
.fct-admin-dashboard-wrap .fct-access-search-wrap {
	position: relative;
}

.fct-admin-dashboard-wrap .fct-inline-save-status {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
}

.fct-admin-dashboard-wrap .fct-inline-save-status.is-saving,
.fct-admin-dashboard-wrap .fct-inline-save-status.is-success,
.fct-admin-dashboard-wrap .fct-inline-save-status.is-error {
	display: inline-flex;
}

.fct-admin-dashboard-wrap .fct-sender-notice.is-success,
.fct-admin-dashboard-wrap .fct-inline-save-status.is-success {
	border-color: rgba(16, 185, 129, .36) !important;
	background: rgba(16, 185, 129, .14) !important;
	color: #34d399 !important;
}

.fct-admin-dashboard-wrap .fct-sender-notice.is-error,
.fct-admin-dashboard-wrap .fct-inline-save-status.is-error,
.fct-admin-dashboard-wrap .fct-master-alert {
	border-color: rgba(239, 68, 68, .34) !important;
	background: rgba(239, 68, 68, .14) !important;
	color: #fca5a5 !important;
}

.fct-admin-dashboard-wrap .fct-inline-save-status.is-saving {
	border-color: rgba(96, 165, 250, .32) !important;
	background: rgba(96, 165, 250, .10) !important;
	color: #bfdbfe !important;
}

.fct-admin-dashboard-wrap .fct-access-card {
	padding: 16px;
}

.fct-admin-dashboard-wrap .fct-access-card-head,
.fct-admin-dashboard-wrap .fct-access-selected,
.fct-admin-dashboard-wrap .fct-role-cleanup-summary,
.fct-admin-dashboard-wrap .fct-settings-grid {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.fct-admin-dashboard-wrap .fct-access-card-head {
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 12px;
}

.fct-admin-dashboard-wrap .fct-access-tab-label {
	color: var(--nsff-ice) !important;
	font-size: 16px;
	font-weight: 950;
	line-height: 1.3;
}

.fct-admin-dashboard-wrap .fct-access-selected {
	min-height: 36px;
	margin-bottom: 12px;
}

.fct-admin-dashboard-wrap .fct-access-empty {
	padding: 8px 0;
	color: rgba(203, 213, 225, .72);
	font-size: 13px;
	font-weight: 700;
}

.fct-admin-dashboard-wrap .fct-access-chip,
.fct-admin-dashboard-wrap .fct-sender-badge,
.fct-admin-dashboard-wrap .fct-dash-badge,
.fct-admin-dashboard-wrap .fct-admin-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	padding: 5px 9px;
	border: 1px solid rgba(166, 211, 244, .22);
	border-radius: 999px;
	background: rgba(96, 165, 250, .12);
	color: var(--nsff-ice);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .05em;
	line-height: 1;
	text-transform: uppercase;
}

.fct-admin-dashboard-wrap .fct-admin-status-badge.is-success,
.fct-admin-dashboard-wrap .fct-status-submitted,
.fct-admin-dashboard-wrap .fct-status-complete,
.fct-admin-dashboard-wrap .fct-status-approved,
.fct-admin-dashboard-wrap .fct-sender-badge.is-auto {
	border-color: rgba(16, 185, 129, .36) !important;
	background: rgba(16, 185, 129, .14) !important;
	color: #34d399 !important;
}

.fct-admin-dashboard-wrap .fct-admin-status-badge.is-error,
.fct-admin-dashboard-wrap .fct-status-not_started {
	border-color: rgba(239, 68, 68, .34) !important;
	background: rgba(239, 68, 68, .14) !important;
	color: #fca5a5 !important;
}

.fct-admin-dashboard-wrap .fct-admin-status-badge.is-warning,
.fct-admin-dashboard-wrap .fct-status-in_progress {
	border-color: rgba(245, 158, 11, .38) !important;
	background: rgba(245, 158, 11, .16) !important;
	color: #fbbf24 !important;
}

.fct-admin-dashboard-wrap .fct-admin-status-badge.is-info {
	border-color: rgba(96, 165, 250, .34) !important;
	background: rgba(96, 165, 250, .14) !important;
	color: #bfdbfe !important;
}

.fct-admin-dashboard-wrap .fct-access-results {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	z-index: 30;
	max-height: 260px;
	overflow-y: auto;
	border: 1px solid rgba(166, 211, 244, .26);
	border-radius: 12px;
	background: rgba(13, 21, 34, .98);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .38);
}

.fct-admin-dashboard-wrap .fct-access-result {
	display: block;
	width: 100%;
	padding: 11px 12px;
	border: 0 !important;
	border-bottom: 1px solid rgba(166, 211, 244, .10) !important;
	border-radius: 0 !important;
	background: transparent !important;
	text-align: left;
	cursor: pointer;
}

.fct-admin-dashboard-wrap .fct-access-result:hover,
.fct-admin-dashboard-wrap .fct-access-result-pending {
	background: rgba(166, 211, 244, .07) !important;
}

.fct-admin-dashboard-wrap .fct-access-result-name {
	color: var(--nsff-ice);
	font-size: 13px;
	font-weight: 950;
}

.fct-admin-dashboard-wrap .fct-access-result-meta {
	margin-top: 2px;
	color: var(--nsff-muted);
	font-size: 12px;
}

.fct-admin-dashboard-wrap .fct-role-cleanup-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	margin: 16px 0;
}

.fct-admin-dashboard-wrap .fct-role-cleanup-summary > div {
	padding: 14px;
	border: 1px solid rgba(166, 211, 244, .18);
	border-radius: 12px;
	background: rgba(15, 23, 42, .62);
}

.fct-admin-dashboard-wrap .fct-role-cleanup-summary strong {
	display: block;
	margin-bottom: 6px;
	color: var(--nsff-ice);
	font-size: 24px;
	line-height: 1;
}

.fct-admin-dashboard-wrap .fct-role-cleanup-summary span {
	display: block;
	color: var(--nsff-muted);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .04em;
	line-height: 1.35;
	text-transform: uppercase;
}

.fct-admin-dashboard-wrap .fct-editor-wrap {
	margin-bottom: 5px;
}

.fct-admin-dashboard-wrap .fct-raw-html-editor {
	font-family: SFMono-Regular, Consolas, monospace;
	font-size: 13px;
	line-height: 1.6;
}

.fct-admin-dashboard-wrap .fct-editor-height-180 { min-height: 180px; }
.fct-admin-dashboard-wrap .fct-editor-height-220 { min-height: 220px; }
.fct-admin-dashboard-wrap .fct-editor-height-250 { min-height: 250px; }

.fct-admin-dashboard-wrap .fct-settings-grid {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	width: 100%;
}

.fct-admin-dashboard-wrap .fct-settings-col {
	flex: 1 1 300px;
	min-width: 280px;
}

.fct-admin-dashboard-wrap .fct-settings-col-wide {
	flex: 1.5 1 420px;
	min-width: 320px;
}

.fct-admin-dashboard-wrap .fct-modal-overlay,
.fct-admin-dashboard-wrap #fct_w_modal,
.fct-admin-dashboard-wrap #fct_r_modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(5, 8, 13, .82);
	backdrop-filter: blur(8px);
}

.fct-admin-dashboard-wrap .fct-modal-card {
	width: min(420px, calc(100vw - 40px));
	padding: 30px;
	border: 1px solid rgba(166, 211, 244, .22);
	border-radius: 16px;
	background: var(--nsff-panel-bg);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .38);
	text-align: center;
}

.fct-admin-dashboard-wrap .fct-admin-preview-image {
	max-width: 120px;
	border: 1px solid rgba(166, 211, 244, .28);
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .18);
}

.fct-admin-dashboard-wrap .fct-admin-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 160px;
	border: 1px dashed rgba(166, 211, 244, .30);
	border-radius: 8px;
	background: rgba(15, 23, 42, .64);
	color: var(--nsff-muted);
	font-size: 12px;
}

.fct-fb-wrap {
	margin-bottom: 30px;
}

.fct-fb-title {
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(166, 211, 244, .14);
	color: var(--nsff-ice);
	font-size: 20px;
	font-weight: 950;
}

.fct-fb-judge {
	margin-bottom: 15px;
	padding: 20px;
	border-left: 4px solid var(--nsff-ice-2) !important;
}

.fct-fb-judge-name,
.fct-fb-label {
	color: var(--nsff-ice-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-fb-block { margin-bottom: 12px; }
.fct-fb-block:last-child { margin-bottom: 0; }
.fct-fb-text { color: var(--nsff-text-soft); font-size: 14px; line-height: 1.6; }

.fct-admin-login-shell,
.fct-admin-message-shell {
	width: min(540px, calc(100vw - 44px));
	margin: 70px auto;
}

.fct-admin-login-card,
.fct-admin-empty-state {
	text-align: center;
}

.fct-admin-login-card h2,
.fct-admin-empty-state h2 {
	margin: 0 0 8px;
	color: var(--nsff-ice);
	font-size: 24px;
	font-weight: 950;
}

.fct-admin-login-card p,
.fct-admin-empty-state p {
	margin: 0 0 26px;
	color: var(--nsff-muted);
}

.fct-admin-login-icon,
.fct-admin-empty-icon {
	margin-bottom: 15px;
	font-size: 48px;
	line-height: 1;
}

.fct-admin-login-shell #fct_admin_login label {
	display: block;
	margin-bottom: 14px;
	color: var(--nsff-ice-2);
	font-size: 13px;
	font-weight: 900;
	text-align: left;
}

.fct-admin-login-shell #fct_admin_login .login-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
}

.fct-admin-login-shell #fct_admin_login .login-remember label {
	margin: 0;
	color: var(--nsff-muted);
	font-weight: 700;
}

@media (max-width: 980px) {
	.fct-admin-dashboard-wrap .fct-master-wrap {
		grid-template-columns: 1fr;
	}

	.fct-admin-dashboard-wrap .fct-master-nav {
		position: relative;
		flex-direction: row;
		flex-wrap: wrap;
		border-right: 0;
		border-bottom: 1px solid rgba(166, 211, 244, .14);
	}

	.fct-admin-dashboard-wrap .fct-master-brand {
		width: 100%;
		padding-bottom: 8px;
	}

	.fct-admin-dashboard-wrap .fct-master-item {
		flex: 1 0 auto;
		justify-content: center;
		white-space: nowrap;
	}

	.fct-admin-dashboard-wrap .fct-master-content {
		padding: 20px 14px;
	}
}


/* Admin dashboard migrated utility styles from old inline CSS. */
.fct-admin-dashboard-wrap .fct-admin-u-001, .fct-admin-login-shell .fct-admin-u-001, .fct-admin-message-shell .fct-admin-u-001, .fct-fb-wrap .fct-admin-u-001 { background:rgba(96, 165, 250, .10); border-color:rgba(96, 165, 250, .32); color:var(--nsff-blue); }
.fct-admin-dashboard-wrap .fct-admin-u-002, .fct-admin-login-shell .fct-admin-u-002, .fct-admin-message-shell .fct-admin-u-002, .fct-fb-wrap .fct-admin-u-002 { margin-top:16px; }
.fct-admin-dashboard-wrap .fct-admin-u-003, .fct-admin-login-shell .fct-admin-u-003, .fct-admin-message-shell .fct-admin-u-003, .fct-fb-wrap .fct-admin-u-003 { cursor:pointer; font-weight:900; color:var(--nsff-text); margin-bottom:10px; }
.fct-admin-dashboard-wrap .fct-admin-u-004, .fct-admin-login-shell .fct-admin-u-004, .fct-admin-message-shell .fct-admin-u-004, .fct-fb-wrap .fct-admin-u-004 { max-height:360px; }
.fct-admin-dashboard-wrap .fct-admin-u-005, .fct-admin-login-shell .fct-admin-u-005, .fct-admin-message-shell .fct-admin-u-005, .fct-fb-wrap .fct-admin-u-005 { min-width:900px; }
.fct-admin-dashboard-wrap .fct-admin-u-006, .fct-admin-login-shell .fct-admin-u-006, .fct-admin-message-shell .fct-admin-u-006, .fct-fb-wrap .fct-admin-u-006 { font-size:12px; color:var(--nsff-muted); }
.fct-admin-dashboard-wrap .fct-admin-u-007, .fct-admin-login-shell .fct-admin-u-007, .fct-admin-message-shell .fct-admin-u-007, .fct-fb-wrap .fct-admin-u-007 { background:rgba(16, 185, 129, .14); color:#34d399; border:1px solid rgba(16, 185, 129, .36); }
.fct-admin-dashboard-wrap .fct-admin-u-008, .fct-admin-login-shell .fct-admin-u-008, .fct-admin-message-shell .fct-admin-u-008, .fct-fb-wrap .fct-admin-u-008 { color:rgba(203, 213, 225, .72); }
.fct-admin-dashboard-wrap .fct-admin-u-009, .fct-admin-login-shell .fct-admin-u-009, .fct-admin-message-shell .fct-admin-u-009, .fct-fb-wrap .fct-admin-u-009 { margin:0 0 10px; color:var(--nsff-text); font-size:15px; font-weight:900; }
.fct-admin-dashboard-wrap .fct-admin-u-010, .fct-admin-login-shell .fct-admin-u-010, .fct-admin-message-shell .fct-admin-u-010, .fct-fb-wrap .fct-admin-u-010 { min-width:820px; }
.fct-admin-dashboard-wrap .fct-admin-u-011, .fct-admin-login-shell .fct-admin-u-011, .fct-admin-message-shell .fct-admin-u-011, .fct-fb-wrap .fct-admin-u-011 { background:rgba(245, 158, 11, .16); color:#fbbf24; border:1px solid rgba(245, 158, 11, .38); }
.fct-admin-dashboard-wrap .fct-admin-u-012, .fct-admin-login-shell .fct-admin-u-012, .fct-admin-message-shell .fct-admin-u-012, .fct-fb-wrap .fct-admin-u-012 { background:rgba(239, 68, 68, .14); color:#f87171; border:1px solid rgba(239, 68, 68, .34); }
.fct-admin-dashboard-wrap .fct-admin-u-013, .fct-admin-login-shell .fct-admin-u-013, .fct-admin-message-shell .fct-admin-u-013, .fct-fb-wrap .fct-admin-u-013 { display:none; }
.fct-admin-dashboard-wrap .fct-admin-u-014, .fct-admin-login-shell .fct-admin-u-014, .fct-admin-message-shell .fct-admin-u-014, .fct-fb-wrap .fct-admin-u-014 { display:flex; justify-content:space-between; align-items:flex-start; gap:14px; flex-wrap:wrap; margin-bottom:18px; }
.fct-admin-dashboard-wrap .fct-admin-u-015, .fct-admin-login-shell .fct-admin-u-015, .fct-admin-message-shell .fct-admin-u-015, .fct-fb-wrap .fct-admin-u-015 { margin-bottom:6px; }
.fct-admin-dashboard-wrap .fct-admin-u-016, .fct-admin-login-shell .fct-admin-u-016, .fct-admin-message-shell .fct-admin-u-016, .fct-fb-wrap .fct-admin-u-016 { margin:0; color:var(--nsff-muted); font-size:13px; line-height:1.5; }
.fct-admin-dashboard-wrap .fct-admin-u-017, .fct-admin-login-shell .fct-admin-u-017, .fct-admin-message-shell .fct-admin-u-017, .fct-fb-wrap .fct-admin-u-017 { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:14px; margin-bottom:18px; }
.fct-admin-dashboard-wrap .fct-admin-u-018, .fct-admin-login-shell .fct-admin-u-018, .fct-admin-message-shell .fct-admin-u-018, .fct-fb-wrap .fct-admin-u-018 { background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); border-radius:12px; padding:16px; }
.fct-admin-dashboard-wrap .fct-admin-u-019, .fct-admin-login-shell .fct-admin-u-019, .fct-admin-message-shell .fct-admin-u-019, .fct-fb-wrap .fct-admin-u-019 { font-size:12px; text-transform:uppercase; letter-spacing:.5px; color:var(--nsff-muted); font-weight:900; margin-bottom:6px; }
.fct-admin-dashboard-wrap .fct-admin-u-020, .fct-admin-login-shell .fct-admin-u-020, .fct-admin-message-shell .fct-admin-u-020, .fct-fb-wrap .fct-admin-u-020 { font-size:14px; line-height:1.6; color:var(--nsff-text-soft); }
.fct-admin-dashboard-wrap .fct-admin-u-021, .fct-admin-login-shell .fct-admin-u-021, .fct-admin-message-shell .fct-admin-u-021, .fct-fb-wrap .fct-admin-u-021 { padding:12px 18px; }
.fct-admin-dashboard-wrap .fct-admin-u-022, .fct-admin-login-shell .fct-admin-u-022, .fct-admin-message-shell .fct-admin-u-022, .fct-fb-wrap .fct-admin-u-022 { max-height:none; }
.fct-admin-dashboard-wrap .fct-admin-u-023, .fct-admin-login-shell .fct-admin-u-023, .fct-admin-message-shell .fct-admin-u-023, .fct-fb-wrap .fct-admin-u-023 { min-width:980px; }
.fct-admin-dashboard-wrap .fct-admin-u-024, .fct-admin-login-shell .fct-admin-u-024, .fct-admin-message-shell .fct-admin-u-024, .fct-fb-wrap .fct-admin-u-024 { text-align:center; padding:24px; color:var(--nsff-muted); font-weight:800; }
.fct-admin-dashboard-wrap .fct-admin-u-025, .fct-admin-login-shell .fct-admin-u-025, .fct-admin-message-shell .fct-admin-u-025, .fct-fb-wrap .fct-admin-u-025 { color:var(--nsff-muted); font-size:12px; }
.fct-admin-dashboard-wrap .fct-admin-u-026, .fct-admin-login-shell .fct-admin-u-026, .fct-admin-message-shell .fct-admin-u-026, .fct-fb-wrap .fct-admin-u-026 { font-size:12px; color:#34d399; font-weight:800; margin-top:6px; }
.fct-admin-dashboard-wrap .fct-admin-u-027, .fct-admin-login-shell .fct-admin-u-027, .fct-admin-message-shell .fct-admin-u-027, .fct-fb-wrap .fct-admin-u-027 { display:inline-flex; gap:8px; align-items:center; font-weight:800; color:var(--nsff-text-soft); }
.fct-admin-dashboard-wrap .fct-admin-u-028, .fct-admin-login-shell .fct-admin-u-028, .fct-admin-message-shell .fct-admin-u-028, .fct-fb-wrap .fct-admin-u-028 { display:flex; justify-content:flex-end; align-items:center; gap:10px; flex-wrap:wrap; margin-top:16px; }
.fct-admin-dashboard-wrap .fct-admin-u-029, .fct-admin-login-shell .fct-admin-u-029, .fct-admin-message-shell .fct-admin-u-029, .fct-fb-wrap .fct-admin-u-029 { display:grid; grid-template-columns:minmax(240px, 420px) 1fr; gap:16px; align-items:end; margin-bottom:16px; }
.fct-admin-dashboard-wrap .fct-admin-u-030, .fct-admin-login-shell .fct-admin-u-030, .fct-admin-message-shell .fct-admin-u-030, .fct-fb-wrap .fct-admin-u-030 { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.fct-admin-dashboard-wrap .fct-admin-u-031, .fct-admin-login-shell .fct-admin-u-031, .fct-admin-message-shell .fct-admin-u-031, .fct-fb-wrap .fct-admin-u-031 { background:rgba(245, 158, 11, .12); border:1px solid rgba(251, 191, 36, .34); color:#fb923c; border-radius:12px; padding:14px; margin-bottom:16px; font-size:13px; line-height:1.6; font-weight:700; }
.fct-admin-dashboard-wrap .fct-admin-u-032, .fct-admin-login-shell .fct-admin-u-032, .fct-admin-message-shell .fct-admin-u-032, .fct-fb-wrap .fct-admin-u-032 { background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); border-radius:12px; padding:14px; margin-bottom:16px; font-size:13px; line-height:1.6; }
.fct-admin-dashboard-wrap .fct-admin-u-033, .fct-admin-login-shell .fct-admin-u-033, .fct-admin-message-shell .fct-admin-u-033, .fct-fb-wrap .fct-admin-u-033 { font-weight:900; color:var(--nsff-text); margin-bottom:6px; }
.fct-admin-dashboard-wrap .fct-admin-u-034, .fct-admin-login-shell .fct-admin-u-034, .fct-admin-message-shell .fct-admin-u-034, .fct-fb-wrap .fct-admin-u-034 { color:var(--nsff-muted); margin-bottom:10px; }
.fct-admin-dashboard-wrap .fct-admin-u-035, .fct-admin-login-shell .fct-admin-u-035, .fct-admin-message-shell .fct-admin-u-035, .fct-fb-wrap .fct-admin-u-035 { display:none; margin-top:18px; border-top:1px solid rgba(166, 211, 244, .18); padding-top:16px; }
.fct-admin-dashboard-wrap .fct-admin-u-036, .fct-admin-login-shell .fct-admin-u-036, .fct-admin-message-shell .fct-admin-u-036, .fct-fb-wrap .fct-admin-u-036 { display:flex; gap:10px; align-items:flex-start; font-weight:800; color:var(--nsff-text-soft); line-height:1.5; margin-bottom:12px; }
.fct-admin-dashboard-wrap .fct-admin-u-037, .fct-admin-login-shell .fct-admin-u-037, .fct-admin-message-shell .fct-admin-u-037, .fct-fb-wrap .fct-admin-u-037 { margin-top:4px; }
.fct-admin-dashboard-wrap .fct-admin-u-038, .fct-admin-login-shell .fct-admin-u-038, .fct-admin-message-shell .fct-admin-u-038, .fct-fb-wrap .fct-admin-u-038 { border-top:4px solid var(--nsff-ice-2); }
.fct-admin-dashboard-wrap .fct-admin-u-039, .fct-admin-login-shell .fct-admin-u-039, .fct-admin-message-shell .fct-admin-u-039, .fct-fb-wrap .fct-admin-u-039 { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:14px; }
.fct-admin-dashboard-wrap .fct-admin-u-040, .fct-admin-login-shell .fct-admin-u-040, .fct-admin-message-shell .fct-admin-u-040, .fct-fb-wrap .fct-admin-u-040 { display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.fct-admin-dashboard-wrap .fct-admin-u-041, .fct-admin-login-shell .fct-admin-u-041, .fct-admin-message-shell .fct-admin-u-041, .fct-fb-wrap .fct-admin-u-041 { display:grid; gap:14px; }
.fct-admin-dashboard-wrap .fct-admin-u-042, .fct-admin-login-shell .fct-admin-u-042, .fct-admin-message-shell .fct-admin-u-042, .fct-fb-wrap .fct-admin-u-042 { background:rgba(15, 23, 42, .64); }
.fct-admin-dashboard-wrap .fct-admin-u-043, .fct-admin-login-shell .fct-admin-u-043, .fct-admin-message-shell .fct-admin-u-043, .fct-fb-wrap .fct-admin-u-043 { margin:0; color:var(--nsff-muted); line-height:1.6; font-size:13px; }
.fct-admin-dashboard-wrap .fct-admin-u-044, .fct-admin-login-shell .fct-admin-u-044, .fct-admin-message-shell .fct-admin-u-044, .fct-fb-wrap .fct-admin-u-044 { padding:12px; color:var(--nsff-muted); font-size:13px; font-weight:700; }
.fct-admin-dashboard-wrap .fct-admin-u-045, .fct-admin-login-shell .fct-admin-u-045, .fct-admin-message-shell .fct-admin-u-045, .fct-fb-wrap .fct-admin-u-045 { padding:12px; color:#ef4444; font-size:13px; font-weight:700; }
.fct-admin-dashboard-wrap .fct-admin-u-046, .fct-admin-login-shell .fct-admin-u-046, .fct-admin-message-shell .fct-admin-u-046, .fct-fb-wrap .fct-admin-u-046 { padding:40px; text-align:center; background:rgba(15, 23, 42, .64); border:1px dashed rgba(166, 211, 244, .26); border-radius:12px; color:var(--nsff-muted); font-weight:bold; }
.fct-admin-dashboard-wrap .fct-admin-u-047, .fct-admin-login-shell .fct-admin-u-047, .fct-admin-message-shell .fct-admin-u-047, .fct-fb-wrap .fct-admin-u-047 { line-height:1.3; }
.fct-admin-dashboard-wrap .fct-admin-u-048, .fct-admin-login-shell .fct-admin-u-048, .fct-admin-message-shell .fct-admin-u-048, .fct-fb-wrap .fct-admin-u-048 { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; background: rgba(13, 21, 34, .92); padding: 20px; border-radius: 12px; border: 1px solid rgba(166, 211, 244, .18); align-items:center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.fct-admin-dashboard-wrap .fct-admin-u-049, .fct-admin-login-shell .fct-admin-u-049, .fct-admin-message-shell .fct-admin-u-049, .fct-fb-wrap .fct-admin-u-049 { max-width:400px; }
.fct-admin-dashboard-wrap .fct-admin-u-050, .fct-admin-login-shell .fct-admin-u-050, .fct-admin-message-shell .fct-admin-u-050, .fct-fb-wrap .fct-admin-u-050 { text-align:center; padding:50px; color:var(--nsff-muted); background:rgba(15, 23, 42, .64); border-radius:12px; border:1px dashed rgba(166, 211, 244, .30); font-weight:bold; }
.fct-admin-dashboard-wrap .fct-admin-u-051, .fct-admin-login-shell .fct-admin-u-051, .fct-admin-message-shell .fct-admin-u-051, .fct-fb-wrap .fct-admin-u-051 { color:var(--nsff-blue); font-weight:bold; text-decoration:none; }
.fct-admin-dashboard-wrap .fct-admin-u-052, .fct-admin-login-shell .fct-admin-u-052, .fct-admin-message-shell .fct-admin-u-052, .fct-fb-wrap .fct-admin-u-052 { text-align:center; padding:40px; color:var(--nsff-muted); background:rgba(15, 23, 42, .64); border-radius:8px; border:1px dashed rgba(166, 211, 244, .30); font-weight:bold; }
.fct-admin-dashboard-wrap .fct-admin-u-053, .fct-admin-login-shell .fct-admin-u-053, .fct-admin-message-shell .fct-admin-u-053, .fct-fb-wrap .fct-admin-u-053 { min-width: 200px; }
.fct-admin-dashboard-wrap .fct-admin-u-054, .fct-admin-login-shell .fct-admin-u-054, .fct-admin-message-shell .fct-admin-u-054, .fct-fb-wrap .fct-admin-u-054 { min-width: 100px; }
.fct-admin-dashboard-wrap .fct-admin-u-055, .fct-admin-login-shell .fct-admin-u-055, .fct-admin-message-shell .fct-admin-u-055, .fct-fb-wrap .fct-admin-u-055 { color:rgba(166, 211, 244, .28); }
.fct-admin-dashboard-wrap .fct-admin-u-056, .fct-admin-login-shell .fct-admin-u-056, .fct-admin-message-shell .fct-admin-u-056, .fct-fb-wrap .fct-admin-u-056 { padding:20px; background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); border-radius:12px; }
.fct-admin-dashboard-wrap .fct-admin-u-057, .fct-admin-login-shell .fct-admin-u-057, .fct-admin-message-shell .fct-admin-u-057, .fct-fb-wrap .fct-admin-u-057 { margin-bottom:20px; box-shadow:0 4px 6px rgba(0,0,0,0.02); }
.fct-admin-dashboard-wrap .fct-admin-u-058, .fct-admin-login-shell .fct-admin-u-058, .fct-admin-message-shell .fct-admin-u-058, .fct-fb-wrap .fct-admin-u-058 { text-decoration:none; display:inline-flex; align-items:center; }
.fct-admin-dashboard-wrap .fct-admin-u-059, .fct-admin-login-shell .fct-admin-u-059, .fct-admin-message-shell .fct-admin-u-059, .fct-fb-wrap .fct-admin-u-059 { text-decoration:none; display:inline-flex; align-items:center; margin-left:4px; }
.fct-admin-dashboard-wrap .fct-admin-u-060, .fct-admin-login-shell .fct-admin-u-060, .fct-admin-message-shell .fct-admin-u-060, .fct-fb-wrap .fct-admin-u-060 { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px, 1fr)); gap:14px; margin-bottom:22px; }
.fct-admin-dashboard-wrap .fct-admin-u-061, .fct-admin-login-shell .fct-admin-u-061, .fct-admin-message-shell .fct-admin-u-061, .fct-fb-wrap .fct-admin-u-061 { margin:0 0 16px; color:var(--nsff-muted); font-size:13px; line-height:1.6; }
.fct-admin-dashboard-wrap .fct-admin-u-062, .fct-admin-login-shell .fct-admin-u-062, .fct-admin-message-shell .fct-admin-u-062, .fct-fb-wrap .fct-admin-u-062 { padding:35px; text-align:center; background:rgba(15, 23, 42, .64); border:1px dashed rgba(166, 211, 244, .26); border-radius:12px; color:var(--nsff-muted); font-weight:bold; }
.fct-admin-dashboard-wrap .fct-admin-u-063, .fct-admin-login-shell .fct-admin-u-063, .fct-admin-message-shell .fct-admin-u-063, .fct-fb-wrap .fct-admin-u-063 { font-size:11px; }
.fct-admin-dashboard-wrap .fct-admin-u-064, .fct-admin-login-shell .fct-admin-u-064, .fct-admin-message-shell .fct-admin-u-064, .fct-fb-wrap .fct-admin-u-064 { background:rgba(96, 165, 250, .14); color:var(--nsff-blue); padding:4px 8px; border-radius:999px; font-size:11px; font-weight:800; text-transform:uppercase; }
.fct-admin-dashboard-wrap .fct-admin-u-065, .fct-admin-login-shell .fct-admin-u-065, .fct-admin-message-shell .fct-admin-u-065, .fct-fb-wrap .fct-admin-u-065 { font-size:12px; font-weight:700; color:var(--nsff-blue); text-decoration:underline; }
.fct-admin-dashboard-wrap .fct-admin-u-066, .fct-admin-login-shell .fct-admin-u-066, .fct-admin-message-shell .fct-admin-u-066, .fct-fb-wrap .fct-admin-u-066 { font-size:12px; font-weight:800; }
.fct-admin-dashboard-wrap .fct-admin-u-067, .fct-admin-login-shell .fct-admin-u-067, .fct-admin-message-shell .fct-admin-u-067, .fct-fb-wrap .fct-admin-u-067 { margin:0 0 8px; color:var(--nsff-muted); font-size:13px; line-height:1.6; }
.fct-admin-dashboard-wrap .fct-admin-u-068, .fct-admin-login-shell .fct-admin-u-068, .fct-admin-message-shell .fct-admin-u-068, .fct-fb-wrap .fct-admin-u-068 { display:block; padding:12px; background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); border-radius:8px; white-space:normal; word-break:break-all; }
.fct-admin-dashboard-wrap .fct-admin-u-069, .fct-admin-login-shell .fct-admin-u-069, .fct-admin-message-shell .fct-admin-u-069, .fct-fb-wrap .fct-admin-u-069 { padding:14px; background:rgba(239, 68, 68, .10); border:1px solid rgba(239, 68, 68, .32); color:#f87171; border-radius:10px; font-weight:700; }
.fct-admin-dashboard-wrap .fct-admin-u-070, .fct-admin-login-shell .fct-admin-u-070, .fct-admin-message-shell .fct-admin-u-070, .fct-fb-wrap .fct-admin-u-070 { display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:center; margin-bottom:16px; }
.fct-admin-dashboard-wrap .fct-admin-u-071, .fct-admin-login-shell .fct-admin-u-071, .fct-admin-message-shell .fct-admin-u-071, .fct-fb-wrap .fct-admin-u-071 { margin:0 0 6px; border-bottom:none; padding-bottom:0; }
.fct-admin-dashboard-wrap .fct-admin-u-072, .fct-admin-login-shell .fct-admin-u-072, .fct-admin-message-shell .fct-admin-u-072, .fct-fb-wrap .fct-admin-u-072 { margin:0; color:var(--nsff-muted); font-size:13px; line-height:1.6; }
.fct-admin-dashboard-wrap .fct-admin-u-073, .fct-admin-login-shell .fct-admin-u-073, .fct-admin-message-shell .fct-admin-u-073, .fct-fb-wrap .fct-admin-u-073 { display:flex; gap:8px; flex-wrap:wrap; }
.fct-admin-dashboard-wrap .fct-admin-u-074, .fct-admin-login-shell .fct-admin-u-074, .fct-admin-message-shell .fct-admin-u-074, .fct-fb-wrap .fct-admin-u-074 { background:#f87171; }
.fct-admin-dashboard-wrap .fct-admin-u-075, .fct-admin-login-shell .fct-admin-u-075, .fct-admin-message-shell .fct-admin-u-075, .fct-fb-wrap .fct-admin-u-075 { color:#f87171; font-weight:800; }
.fct-admin-dashboard-wrap .fct-admin-u-076, .fct-admin-login-shell .fct-admin-u-076, .fct-admin-message-shell .fct-admin-u-076, .fct-fb-wrap .fct-admin-u-076 { font-weight:800; color:var(--nsff-text); text-decoration:underline; }
.fct-admin-dashboard-wrap .fct-admin-u-077, .fct-admin-login-shell .fct-admin-u-077, .fct-admin-message-shell .fct-admin-u-077, .fct-fb-wrap .fct-admin-u-077 { color:var(--nsff-muted); }
.fct-admin-dashboard-wrap .fct-admin-u-078, .fct-admin-login-shell .fct-admin-u-078, .fct-admin-message-shell .fct-admin-u-078, .fct-fb-wrap .fct-admin-u-078 { color:#f87171; font-weight:800; margin-bottom:6px; }
.fct-admin-dashboard-wrap .fct-admin-u-079, .fct-admin-login-shell .fct-admin-u-079, .fct-admin-message-shell .fct-admin-u-079, .fct-fb-wrap .fct-admin-u-079 { cursor:pointer; color:var(--nsff-blue); font-weight:800; }
.fct-admin-dashboard-wrap .fct-admin-u-080, .fct-admin-login-shell .fct-admin-u-080, .fct-admin-message-shell .fct-admin-u-080, .fct-fb-wrap .fct-admin-u-080 { white-space:pre-wrap; max-height:220px; overflow:auto; background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); border-radius:8px; padding:10px; font-size:11px; line-height:1.5; }
.fct-admin-dashboard-wrap .fct-admin-u-081, .fct-admin-login-shell .fct-admin-u-081, .fct-admin-message-shell .fct-admin-u-081, .fct-fb-wrap .fct-admin-u-081 { font-size:12px; color:var(--nsff-muted); text-transform:uppercase; font-weight:800; letter-spacing:.5px; margin-bottom:6px; }
.fct-admin-dashboard-wrap .fct-admin-u-082, .fct-admin-login-shell .fct-admin-u-082, .fct-admin-message-shell .fct-admin-u-082, .fct-fb-wrap .fct-admin-u-082 { font-size:24px; color:var(--nsff-text); font-weight:900; line-height:1; }
.fct-admin-dashboard-wrap .fct-admin-u-083, .fct-admin-login-shell .fct-admin-u-083, .fct-admin-message-shell .fct-admin-u-083, .fct-fb-wrap .fct-admin-u-083 { font-size:12px; color:var(--nsff-muted); margin-top:7px; }
.fct-admin-dashboard-wrap .fct-admin-u-084, .fct-admin-login-shell .fct-admin-u-084, .fct-admin-message-shell .fct-admin-u-084, .fct-fb-wrap .fct-admin-u-084 { margin-left:4px; }
.fct-admin-dashboard-wrap .fct-admin-u-085, .fct-admin-login-shell .fct-admin-u-085, .fct-admin-message-shell .fct-admin-u-085, .fct-fb-wrap .fct-admin-u-085 { display:block; }
.fct-admin-dashboard-wrap .fct-admin-u-086, .fct-admin-login-shell .fct-admin-u-086, .fct-admin-message-shell .fct-admin-u-086, .fct-fb-wrap .fct-admin-u-086 { display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.fct-admin-dashboard-wrap .fct-admin-u-087, .fct-admin-login-shell .fct-admin-u-087, .fct-admin-message-shell .fct-admin-u-087, .fct-fb-wrap .fct-admin-u-087 { margin-top:15px; display:none; background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); border-radius:10px; padding:15px; }
.fct-admin-dashboard-wrap .fct-admin-u-088, .fct-admin-login-shell .fct-admin-u-088, .fct-admin-message-shell .fct-admin-u-088, .fct-fb-wrap .fct-admin-u-088 { font-weight:800; margin-bottom:8px; }
.fct-admin-dashboard-wrap .fct-admin-u-089, .fct-admin-login-shell .fct-admin-u-089, .fct-admin-message-shell .fct-admin-u-089, .fct-fb-wrap .fct-admin-u-089 { margin-top:15px; }
.fct-admin-dashboard-wrap .fct-admin-u-090, .fct-admin-login-shell .fct-admin-u-090, .fct-admin-message-shell .fct-admin-u-090, .fct-fb-wrap .fct-admin-u-090 { min-height:90px; }
.fct-admin-dashboard-wrap .fct-admin-u-091, .fct-admin-login-shell .fct-admin-u-091, .fct-admin-message-shell .fct-admin-u-091, .fct-fb-wrap .fct-admin-u-091 { display:block; margin-top:12px; font-weight:700; color:var(--nsff-text-soft); }
.fct-admin-dashboard-wrap .fct-admin-u-092, .fct-admin-login-shell .fct-admin-u-092, .fct-admin-message-shell .fct-admin-u-092, .fct-fb-wrap .fct-admin-u-092 { display:block; margin-top:10px; font-weight:700; color:var(--nsff-text-soft); }
.fct-admin-dashboard-wrap .fct-admin-u-093, .fct-admin-login-shell .fct-admin-u-093, .fct-admin-message-shell .fct-admin-u-093, .fct-fb-wrap .fct-admin-u-093 { margin-top:12px; font-weight:800; }
.fct-admin-dashboard-wrap .fct-admin-u-094, .fct-admin-login-shell .fct-admin-u-094, .fct-admin-message-shell .fct-admin-u-094, .fct-fb-wrap .fct-admin-u-094 { color:var(--nsff-text); font-weight:800; }
.fct-admin-dashboard-wrap .fct-admin-u-095, .fct-admin-login-shell .fct-admin-u-095, .fct-admin-message-shell .fct-admin-u-095, .fct-fb-wrap .fct-admin-u-095 { color:var(--nsff-muted); font-weight:600; }
.fct-admin-dashboard-wrap .fct-admin-u-096, .fct-admin-login-shell .fct-admin-u-096, .fct-admin-message-shell .fct-admin-u-096, .fct-fb-wrap .fct-admin-u-096 { background:rgba(166, 211, 244, .10); color:var(--nsff-muted); padding:4px 8px; border-radius:4px; font-size:11px; font-weight:bold; text-transform:uppercase; }
.fct-admin-dashboard-wrap .fct-admin-u-097, .fct-admin-login-shell .fct-admin-u-097, .fct-admin-message-shell .fct-admin-u-097, .fct-fb-wrap .fct-admin-u-097 { background:rgba(16, 185, 129, .14); color:#34d399; padding:4px 8px; border-radius:4px; font-size:11px; font-weight:bold; text-transform:uppercase; }
.fct-admin-dashboard-wrap .fct-admin-u-098, .fct-admin-login-shell .fct-admin-u-098, .fct-admin-message-shell .fct-admin-u-098, .fct-fb-wrap .fct-admin-u-098 { background:rgba(96, 165, 250, .14); color:var(--nsff-blue); padding:4px 8px; border-radius:4px; font-size:11px; font-weight:bold; text-transform:uppercase; }
.fct-admin-dashboard-wrap .fct-admin-u-099, .fct-admin-login-shell .fct-admin-u-099, .fct-admin-message-shell .fct-admin-u-099, .fct-fb-wrap .fct-admin-u-099 { color:var(--nsff-blue); text-decoration:underline; font-weight:bold; }
.fct-admin-dashboard-wrap .fct-admin-u-100, .fct-admin-login-shell .fct-admin-u-100, .fct-admin-message-shell .fct-admin-u-100, .fct-fb-wrap .fct-admin-u-100 { max-height:60px; }
.fct-admin-dashboard-wrap .fct-admin-u-101, .fct-admin-login-shell .fct-admin-u-101, .fct-admin-message-shell .fct-admin-u-101, .fct-fb-wrap .fct-admin-u-101 { font-size:13px; color:var(--nsff-muted); margin-bottom:20px; }
.fct-admin-dashboard-wrap .fct-admin-u-102, .fct-admin-login-shell .fct-admin-u-102, .fct-admin-message-shell .fct-admin-u-102, .fct-fb-wrap .fct-admin-u-102 { margin-top:20px; display:flex; align-items:center; gap:15px; padding-top:20px; border-top:1px solid rgba(166, 211, 244, .18); }
.fct-admin-dashboard-wrap .fct-admin-u-103, .fct-admin-login-shell .fct-admin-u-103, .fct-admin-message-shell .fct-admin-u-103, .fct-fb-wrap .fct-admin-u-103 { font-weight:bold; font-size:14px; }
.fct-admin-dashboard-wrap .fct-admin-u-104, .fct-admin-login-shell .fct-admin-u-104, .fct-admin-message-shell .fct-admin-u-104, .fct-fb-wrap .fct-admin-u-104 { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(15,23,42,0.8); z-index:99999; align-items:center; justify-content:center; }
.fct-admin-dashboard-wrap .fct-admin-u-105, .fct-admin-login-shell .fct-admin-u-105, .fct-admin-message-shell .fct-admin-u-105, .fct-fb-wrap .fct-admin-u-105 { background:rgba(13, 21, 34, .92); padding:30px; border-radius:16px; max-width:420px; width:90%; box-shadow:0 25px 50px -12px rgba(0,0,0,0.25); text-align:center; border-top:6px solid var(--nsff-ice-2); }
.fct-admin-dashboard-wrap .fct-admin-u-106, .fct-admin-login-shell .fct-admin-u-106, .fct-admin-message-shell .fct-admin-u-106, .fct-fb-wrap .fct-admin-u-106 { font-size:40px; margin-bottom:15px; }
.fct-admin-dashboard-wrap .fct-admin-u-107, .fct-admin-login-shell .fct-admin-u-107, .fct-admin-message-shell .fct-admin-u-107, .fct-fb-wrap .fct-admin-u-107 { margin:0 0 10px 0; color:var(--nsff-text); font-size:22px; font-weight:800; }
.fct-admin-dashboard-wrap .fct-admin-u-108, .fct-admin-login-shell .fct-admin-u-108, .fct-admin-message-shell .fct-admin-u-108, .fct-fb-wrap .fct-admin-u-108 { color:var(--nsff-muted); font-size:15px; line-height:1.6; margin-bottom:25px; }
.fct-admin-dashboard-wrap .fct-admin-u-109, .fct-admin-login-shell .fct-admin-u-109, .fct-admin-message-shell .fct-admin-u-109, .fct-fb-wrap .fct-admin-u-109 { display:flex; justify-content:center; gap:12px; }
.fct-admin-dashboard-wrap .fct-admin-u-110, .fct-admin-login-shell .fct-admin-u-110, .fct-admin-message-shell .fct-admin-u-110, .fct-fb-wrap .fct-admin-u-110 { padding:12px 20px; border-radius:8px; border:none; background:rgba(166, 211, 244, .18); color:var(--nsff-text-soft); font-weight:700; cursor:pointer; }
.fct-admin-dashboard-wrap .fct-admin-u-111, .fct-admin-login-shell .fct-admin-u-111, .fct-admin-message-shell .fct-admin-u-111, .fct-fb-wrap .fct-admin-u-111 { padding:12px 20px; border-radius:8px; border:none; background:#f87171; color:rgba(13, 21, 34, .92); font-weight:700; cursor:pointer; box-shadow:0 4px 6px rgba(153,27,27,0.2); }
.fct-admin-dashboard-wrap .fct-admin-u-112, .fct-admin-login-shell .fct-admin-u-112, .fct-admin-message-shell .fct-admin-u-112, .fct-fb-wrap .fct-admin-u-112 { background:rgba(13, 21, 34, .92); padding:30px; border-radius:16px; max-width:420px; width:90%; box-shadow:0 25px 50px -12px rgba(0,0,0,0.25); text-align:center; border-top:6px solid rgba(16, 185, 129, .36); }
.fct-admin-dashboard-wrap .fct-admin-u-113, .fct-admin-login-shell .fct-admin-u-113, .fct-admin-message-shell .fct-admin-u-113, .fct-fb-wrap .fct-admin-u-113 { padding:12px 20px; border-radius:8px; border:none; background:#34d399; color:rgba(13, 21, 34, .92); font-weight:700; cursor:pointer; box-shadow:0 4px 6px rgba(21,128,61,0.2); }
.fct-admin-dashboard-wrap .fct-admin-u-114, .fct-admin-login-shell .fct-admin-u-114, .fct-admin-message-shell .fct-admin-u-114, .fct-fb-wrap .fct-admin-u-114 { font-size:12px; margin:4px 0 15px 0; }
.fct-admin-dashboard-wrap .fct-admin-u-115, .fct-admin-login-shell .fct-admin-u-115, .fct-admin-message-shell .fct-admin-u-115, .fct-fb-wrap .fct-admin-u-115 { font-size:12px; margin:4px 0 8px 0; }
.fct-admin-dashboard-wrap .fct-admin-u-116, .fct-admin-login-shell .fct-admin-u-116, .fct-admin-message-shell .fct-admin-u-116, .fct-fb-wrap .fct-admin-u-116 { font-size:12px; margin:4px 0 0 0; }
.fct-admin-dashboard-wrap .fct-admin-u-117, .fct-admin-login-shell .fct-admin-u-117, .fct-admin-message-shell .fct-admin-u-117, .fct-fb-wrap .fct-admin-u-117 { border-top:4px solid #f59e0b; background:rgba(245, 158, 11, .10); }
.fct-admin-dashboard-wrap .fct-admin-u-118, .fct-admin-login-shell .fct-admin-u-118, .fct-admin-message-shell .fct-admin-u-118, .fct-fb-wrap .fct-admin-u-118 { color:#fbbf24; }
.fct-admin-dashboard-wrap .fct-admin-u-119, .fct-admin-login-shell .fct-admin-u-119, .fct-admin-message-shell .fct-admin-u-119, .fct-fb-wrap .fct-admin-u-119 { border-top:4px solid #a78bfa; background:rgba(139, 92, 246, .12); }
.fct-admin-dashboard-wrap .fct-admin-u-120, .fct-admin-login-shell .fct-admin-u-120, .fct-admin-message-shell .fct-admin-u-120, .fct-fb-wrap .fct-admin-u-120 { color:#c4b5fd; }
.fct-admin-dashboard-wrap .fct-admin-u-121, .fct-admin-login-shell .fct-admin-u-121, .fct-admin-message-shell .fct-admin-u-121, .fct-fb-wrap .fct-admin-u-121 { margin-bottom:10px; font-size:15px; font-weight:bold; color:#111; }
.fct-admin-dashboard-wrap .fct-admin-u-122, .fct-admin-login-shell .fct-admin-u-122, .fct-admin-message-shell .fct-admin-u-122, .fct-fb-wrap .fct-admin-u-122 { margin-right:20px; cursor:pointer; }
.fct-admin-dashboard-wrap .fct-admin-u-123, .fct-admin-login-shell .fct-admin-u-123, .fct-admin-message-shell .fct-admin-u-123, .fct-fb-wrap .fct-admin-u-123 { cursor:pointer; }
.fct-admin-dashboard-wrap .fct-admin-u-124, .fct-admin-login-shell .fct-admin-u-124, .fct-admin-message-shell .fct-admin-u-124, .fct-fb-wrap .fct-admin-u-124 { border-top:4px solid #10b981; background:rgba(16, 185, 129, .10); }
.fct-admin-dashboard-wrap .fct-admin-u-125, .fct-admin-login-shell .fct-admin-u-125, .fct-admin-message-shell .fct-admin-u-125, .fct-fb-wrap .fct-admin-u-125 { color:#34d399; }
.fct-admin-dashboard-wrap .fct-admin-u-126, .fct-admin-login-shell .fct-admin-u-126, .fct-admin-message-shell .fct-admin-u-126, .fct-fb-wrap .fct-admin-u-126 { display:flex; gap:10px; align-items:center; margin-bottom:15px; }
.fct-admin-dashboard-wrap .fct-admin-u-127, .fct-admin-login-shell .fct-admin-u-127, .fct-admin-message-shell .fct-admin-u-127, .fct-fb-wrap .fct-admin-u-127 { background:rgba(13, 21, 34, .92); border:1px solid rgba(16, 185, 129, .32); padding:12px 15px; border-radius:6px; font-size:18px; font-weight:bold; color:#111; flex:1; text-align:center; letter-spacing:1px; }
.fct-admin-dashboard-wrap .fct-admin-u-128, .fct-admin-login-shell .fct-admin-u-128, .fct-admin-message-shell .fct-admin-u-128, .fct-fb-wrap .fct-admin-u-128 { width:100%; background:#34d399; color:rgba(13, 21, 34, .92); border:none; padding:10px; border-radius:6px; font-weight:bold; cursor:pointer; }
.fct-admin-dashboard-wrap .fct-admin-u-129, .fct-admin-login-shell .fct-admin-u-129, .fct-admin-message-shell .fct-admin-u-129, .fct-fb-wrap .fct-admin-u-129 { text-align:center; margin-top:10px; font-size:13px; font-weight:bold; color:#34d399; display:none; }
.fct-admin-dashboard-wrap .fct-admin-u-130, .fct-admin-login-shell .fct-admin-u-130, .fct-admin-message-shell .fct-admin-u-130, .fct-fb-wrap .fct-admin-u-130 { margin-bottom:15px; font-size:14px; color:var(--nsff-text-soft); }
.fct-admin-dashboard-wrap .fct-admin-u-131, .fct-admin-login-shell .fct-admin-u-131, .fct-admin-message-shell .fct-admin-u-131, .fct-fb-wrap .fct-admin-u-131 { margin-right:15px; cursor:pointer; }
.fct-admin-dashboard-wrap .fct-admin-u-132, .fct-admin-login-shell .fct-admin-u-132, .fct-admin-message-shell .fct-admin-u-132, .fct-fb-wrap .fct-admin-u-132 { margin-bottom:10px; }
.fct-admin-dashboard-wrap .fct-admin-u-133, .fct-admin-login-shell .fct-admin-u-133, .fct-admin-message-shell .fct-admin-u-133, .fct-fb-wrap .fct-admin-u-133 { max-width:120px; border-radius:8px; border:1px solid rgba(166, 211, 244, .28); box-shadow:0 4px 6px rgba(0,0,0,0.05); }
.fct-admin-dashboard-wrap .fct-admin-u-134, .fct-admin-login-shell .fct-admin-u-134, .fct-admin-message-shell .fct-admin-u-134, .fct-fb-wrap .fct-admin-u-134 { width:120px; height:160px; background:rgba(15, 23, 42, .64); border:1px dashed rgba(166, 211, 244, .30); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--nsff-muted); font-size:12px; }
.fct-admin-dashboard-wrap .fct-admin-u-135, .fct-admin-login-shell .fct-admin-u-135, .fct-admin-message-shell .fct-admin-u-135, .fct-fb-wrap .fct-admin-u-135 { padding:8px 14px; font-size:13px; margin-right:5px; }
.fct-admin-dashboard-wrap .fct-admin-u-136, .fct-admin-login-shell .fct-admin-u-136, .fct-admin-message-shell .fct-admin-u-136, .fct-fb-wrap .fct-admin-u-136 { padding:8px 14px; font-size:13px; background:rgba(239, 68, 68, .14); color:#f87171; border:1px solid rgba(239, 68, 68, .32); }
.fct-admin-dashboard-wrap .fct-admin-u-137, .fct-admin-login-shell .fct-admin-u-137, .fct-admin-message-shell .fct-admin-u-137, .fct-fb-wrap .fct-admin-u-137 { font-size:13px; color:var(--nsff-muted); background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); border-radius:6px; padding:10px 14px; margin-bottom:20px; }
.fct-admin-dashboard-wrap .fct-admin-u-138, .fct-admin-login-shell .fct-admin-u-138, .fct-admin-message-shell .fct-admin-u-138, .fct-fb-wrap .fct-admin-u-138 { margin-top:10px; }
.fct-admin-dashboard-wrap .fct-admin-u-139, .fct-admin-login-shell .fct-admin-u-139, .fct-admin-message-shell .fct-admin-u-139, .fct-fb-wrap .fct-admin-u-139 { font-size:12px; margin:0 0 6px 0; color:var(--nsff-muted); }
.fct-admin-dashboard-wrap .fct-admin-u-140, .fct-admin-login-shell .fct-admin-u-140, .fct-admin-message-shell .fct-admin-u-140, .fct-fb-wrap .fct-admin-u-140 { margin-top:20px; }
.fct-admin-dashboard-wrap .fct-admin-u-141, .fct-admin-login-shell .fct-admin-u-141, .fct-admin-message-shell .fct-admin-u-141, .fct-fb-wrap .fct-admin-u-141 { margin:30px 0; border:0; border-top:1px solid rgba(166, 211, 244, .18); }
.fct-admin-dashboard-wrap .fct-admin-u-142, .fct-admin-login-shell .fct-admin-u-142, .fct-admin-message-shell .fct-admin-u-142, .fct-fb-wrap .fct-admin-u-142 { font-size:12px; margin:0 0 15px 0; color:var(--nsff-muted); }
.fct-admin-dashboard-wrap .fct-admin-u-143, .fct-admin-login-shell .fct-admin-u-143, .fct-admin-message-shell .fct-admin-u-143, .fct-fb-wrap .fct-admin-u-143 { margin-bottom:15px; }
.fct-admin-dashboard-wrap .fct-admin-u-144, .fct-admin-login-shell .fct-admin-u-144, .fct-admin-message-shell .fct-admin-u-144, .fct-fb-wrap .fct-admin-u-144 { border-top:4px solid #34d399; margin-top:24px; }
.fct-admin-dashboard-wrap .fct-admin-u-145, .fct-admin-login-shell .fct-admin-u-145, .fct-admin-message-shell .fct-admin-u-145, .fct-fb-wrap .fct-admin-u-145 { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; align-items:flex-start; margin-bottom:18px; }
.fct-admin-dashboard-wrap .fct-admin-u-146, .fct-admin-login-shell .fct-admin-u-146, .fct-admin-message-shell .fct-admin-u-146, .fct-fb-wrap .fct-admin-u-146 { max-width:760px; min-width:260px; }
.fct-admin-dashboard-wrap .fct-admin-u-147, .fct-admin-login-shell .fct-admin-u-147, .fct-admin-message-shell .fct-admin-u-147, .fct-fb-wrap .fct-admin-u-147 { margin:0 0 8px; color:#86efac; }
.fct-admin-dashboard-wrap .fct-admin-u-148, .fct-admin-login-shell .fct-admin-u-148, .fct-admin-message-shell .fct-admin-u-148, .fct-fb-wrap .fct-admin-u-148 { font-size:13px; margin:0; line-height:1.6; }
.fct-admin-dashboard-wrap .fct-admin-u-149, .fct-admin-login-shell .fct-admin-u-149, .fct-admin-message-shell .fct-admin-u-149, .fct-fb-wrap .fct-admin-u-149 { background:rgba(16, 185, 129, .12); border:1px solid rgba(16, 185, 129, .32); color:#34d399; border-radius:10px; padding:10px 14px; font-size:13px; font-weight:800; white-space:nowrap; }
.fct-admin-dashboard-wrap .fct-admin-u-150, .fct-admin-login-shell .fct-admin-u-150, .fct-admin-message-shell .fct-admin-u-150, .fct-fb-wrap .fct-admin-u-150 { background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); border-radius:12px; padding:16px; margin-bottom:18px; }
.fct-admin-dashboard-wrap .fct-admin-u-151, .fct-admin-login-shell .fct-admin-u-151, .fct-admin-message-shell .fct-admin-u-151, .fct-fb-wrap .fct-admin-u-151 { font-size:12px; margin:6px 0 0 0; }
.fct-admin-dashboard-wrap .fct-admin-u-152, .fct-admin-login-shell .fct-admin-u-152, .fct-admin-message-shell .fct-admin-u-152, .fct-fb-wrap .fct-admin-u-152 { display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:center; margin:0 0 12px; }
.fct-admin-dashboard-wrap .fct-admin-u-153, .fct-admin-login-shell .fct-admin-u-153, .fct-admin-message-shell .fct-admin-u-153, .fct-fb-wrap .fct-admin-u-153 { font-size:13px; font-weight:900; color:var(--nsff-text-soft); text-transform:uppercase; letter-spacing:.5px; }
.fct-admin-dashboard-wrap .fct-admin-u-154, .fct-admin-login-shell .fct-admin-u-154, .fct-admin-message-shell .fct-admin-u-154, .fct-fb-wrap .fct-admin-u-154 { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:14px; }
.fct-admin-dashboard-wrap .fct-admin-u-155, .fct-admin-login-shell .fct-admin-u-155, .fct-admin-message-shell .fct-admin-u-155, .fct-fb-wrap .fct-admin-u-155 { background:rgba(13, 21, 34, .92); border:1px solid rgba(96, 165, 250, .14); border-radius:14px; padding:16px; box-shadow:0 1px 2px rgba(15,23,42,.04); }
.fct-admin-dashboard-wrap .fct-admin-u-156, .fct-admin-login-shell .fct-admin-u-156, .fct-admin-message-shell .fct-admin-u-156, .fct-fb-wrap .fct-admin-u-156 { display:flex; justify-content:space-between; gap:10px; align-items:center; margin-bottom:12px; }
.fct-admin-dashboard-wrap .fct-admin-u-157, .fct-admin-login-shell .fct-admin-u-157, .fct-admin-message-shell .fct-admin-u-157, .fct-fb-wrap .fct-admin-u-157 { font-size:12px; font-weight:900; color:var(--nsff-blue); text-transform:uppercase; letter-spacing:.5px; }
.fct-admin-dashboard-wrap .fct-admin-u-158, .fct-admin-login-shell .fct-admin-u-158, .fct-admin-message-shell .fct-admin-u-158, .fct-fb-wrap .fct-admin-u-158 { background:rgba(16, 185, 129, .12); color:#34d399; border:1px solid rgba(16, 185, 129, .32); border-radius:999px; padding:4px 9px; font-size:12px; font-weight:900; }
.fct-admin-dashboard-wrap .fct-admin-u-159, .fct-admin-login-shell .fct-admin-u-159, .fct-admin-message-shell .fct-admin-u-159, .fct-fb-wrap .fct-admin-u-159 { margin-bottom:12px; }
.fct-admin-dashboard-wrap .fct-admin-u-160, .fct-admin-login-shell .fct-admin-u-160, .fct-admin-message-shell .fct-admin-u-160, .fct-fb-wrap .fct-admin-u-160 { display:grid; grid-template-columns:1fr; gap:12px; }
.fct-admin-dashboard-wrap .fct-admin-u-161, .fct-admin-login-shell .fct-admin-u-161, .fct-admin-message-shell .fct-admin-u-161, .fct-fb-wrap .fct-admin-u-161 { font-size:12px; margin:14px 0 0 0; line-height:1.6; }
.fct-admin-dashboard-wrap .fct-admin-u-162, .fct-admin-login-shell .fct-admin-u-162, .fct-admin-message-shell .fct-admin-u-162, .fct-fb-wrap .fct-admin-u-162 { position:sticky; bottom:0; background:rgba(13, 21, 34, .92); padding:20px; border-top:1px solid rgba(166, 211, 244, .18); display:flex; justify-content:flex-end; align-items:center; gap:15px; box-shadow:0 -4px 10px rgba(0,0,0,0.03); margin-top:20px; z-index:99; border-radius: 0 0 12px 12px; }
.fct-admin-dashboard-wrap .fct-admin-u-163, .fct-admin-login-shell .fct-admin-u-163, .fct-admin-message-shell .fct-admin-u-163, .fct-fb-wrap .fct-admin-u-163 { font-weight:bold; color:#34d399; }
.fct-admin-dashboard-wrap .fct-admin-u-164, .fct-admin-login-shell .fct-admin-u-164, .fct-admin-message-shell .fct-admin-u-164, .fct-fb-wrap .fct-admin-u-164 { padding:15px 30px; font-size:16px; }
.fct-admin-dashboard-wrap .fct-admin-u-165, .fct-admin-login-shell .fct-admin-u-165, .fct-admin-message-shell .fct-admin-u-165, .fct-fb-wrap .fct-admin-u-165 { margin-left:auto; }
.fct-admin-dashboard-wrap .fct-admin-u-166, .fct-admin-login-shell .fct-admin-u-166, .fct-admin-message-shell .fct-admin-u-166, .fct-fb-wrap .fct-admin-u-166 { background:rgba(15, 23, 42, .64); border:1px dashed rgba(166, 211, 244, .30); padding:30px; text-align:center; border-radius:12px; color:var(--nsff-muted); font-weight:bold; }
.fct-admin-dashboard-wrap .fct-admin-u-167, .fct-admin-login-shell .fct-admin-u-167, .fct-admin-message-shell .fct-admin-u-167, .fct-fb-wrap .fct-admin-u-167 { background:rgba(15, 23, 42, .64); border:1px solid rgba(166, 211, 244, .18); padding:20px; text-align:center; border-radius:12px; color:var(--nsff-muted); }
.fct-admin-dashboard-wrap .fct-admin-u-168, .fct-admin-login-shell .fct-admin-u-168, .fct-admin-message-shell .fct-admin-u-168, .fct-fb-wrap .fct-admin-u-168 { border-left-color: #a78bfa; }


/* ==========================================================
   Shared module redesign v42.13.23
   Film Archive, Public Roster, Screening Program, Screenplay Judge,
   Staff Dashboard, Trailer Contest, and Winning Results now share
   the same cinematic visual system as the filmmaker directory.
   ========================================================== */
.fct-archive-container,
.fct-locked-archive,
.fct-public-roster-wrap,
.fct-sp-wrap,
.fct-sp-public-wrap,
.fct-portal-wrapper,
.fct-staff-wrap,
.fct-trailer-gallery,
.fct-results-page,
.fct-audit-wrap,
.fct-premium-tickets-wrap {
	max-width: var(--fct-shared-content-width);
	margin-left: auto;
	margin-right: auto;
	color: var(--nsff-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fct-archive-container *,
.fct-locked-archive *,
.fct-public-roster-wrap *,
.fct-sp-wrap *,
.fct-sp-public-wrap *,
.fct-portal-wrapper *,
.fct-staff-wrap *,
.fct-trailer-gallery *,
.fct-results-page *,
.fct-audit-wrap *,
.fct-premium-tickets-wrap * {
	box-sizing: border-box;
}

.fct-archive-container,
.fct-public-roster-wrap,
.fct-sp-wrap,
.fct-sp-public-wrap,
.fct-portal-wrapper,
.fct-staff-wrap,
.fct-trailer-gallery,
.fct-results-page {
	padding: clamp(24px, 3vw, 44px) 0 clamp(48px, 6vw, 80px);
}

.fct-archive-header,
.fct-roster-header,
.fct-sp-header,
.fct-dash-header,
.fct-leaderboard,
.fct-help-box,
.fct-auth-box,
.fct-banner,
.fct-new-card,
.fct-section,
.fct-panel,
.fct-card,
.fct-card-head,
.fct-card-body,
.fct-roster-card,
.fct-sp-new-block-form,
.fct-sp-pool-wrap,
.fct-sp-block-card,
.fct-sp-exhibition-card,
.fct-sp-public-event-card,
.fct-sp-lineup-card,
.fct-sp-badge-card,
.fct-sp-event-stat,
.fct-trailer-card,
.fct-admin-overlay,
.fct-count-box,
.fct-dash-row,
.fct-t-box,
.fct-rank-card,
.fct-cat-box,
.fct-judge-card,
.fct-detail-panel,
.fct-score-table-wrap,
.fct-audit-award-card,
.fct-audit-film-block,
.fct-modal-box,
.fct-details-modal-box,
.fct-custom-modal-panel,
.fct-staff-wrap .fct-card,
.fct-locked-archive,
.ns-ticket-cta-banner {
	border: 1px solid rgba(166, 211, 244, .18) !important;
	background: var(--nsff-panel-bg) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .055), 0 18px 42px rgba(0, 0, 0, .26) !important;
	color: var(--nsff-text) !important;
}

.fct-archive-container h1,
.fct-archive-container h2,
.fct-archive-container h3,
.fct-archive-container h4,
.fct-public-roster-wrap h1,
.fct-public-roster-wrap h2,
.fct-public-roster-wrap h3,
.fct-sp-wrap h1,
.fct-sp-wrap h2,
.fct-sp-wrap h3,
.fct-sp-public-wrap h1,
.fct-sp-public-wrap h2,
.fct-sp-public-wrap h3,
.fct-portal-wrapper h1,
.fct-portal-wrapper h2,
.fct-portal-wrapper h3,
.fct-staff-wrap h1,
.fct-staff-wrap h2,
.fct-staff-wrap h3,
.fct-trailer-gallery h1,
.fct-trailer-gallery h2,
.fct-trailer-gallery h3,
.fct-results-page h1,
.fct-results-page h2,
.fct-results-page h3,
.fct-audit-wrap h1,
.fct-audit-wrap h2,
.fct-audit-wrap h3,
.fct-audit-wrap h4,
.fct-h2,
.fct-roster-h2,
.fct-sp-heading,
.fct-lb-heading,
.fct-film-title,
.fct-sp-film-title,
.fct-sp-lineup-title,
.fct-rank-film,
.fct-audit-film-title,
.fct-locked-title {
	color: var(--nsff-ice) !important;
	font-weight: 950;
	letter-spacing: -.02em;
}

.fct-archive-container p,
.fct-public-roster-wrap p,
.fct-sp-wrap p,
.fct-sp-public-wrap p,
.fct-portal-wrapper p,
.fct-staff-wrap p,
.fct-trailer-gallery p,
.fct-results-page p,
.fct-audit-wrap p,
.fct-muted,
.fct-help-text,
.fct-locked-desc,
.fct-roster-role,
.fct-sp-film-team,
.fct-sp-lineup-maker,
.fct-film-team,
.fct-team-number,
.fct-audit-team-line,
.fct-judge-card-email,
.fct-section-sub,
.fct-sp-pool-hint,
.fct-auth-text,
.fct-help-title + div,
.fct-lb-first-team,
.fct-lb-item-team {
	color: var(--nsff-muted) !important;
}

.fct-season-badge,
.fct-card-badge,
.fct-status-pill,
.fct-score-badge,
.fct-count-val,
.fct-lock-icon,
.fct-sp-count,
.fct-roster-name,
.fct-lb-first-rank,
.fct-lb-item-rank,
.fct-rank-num,
.fct-cat-label,
.fct-count-label,
.fct-closing-label,
.fct-sp-tag,
.fct-sp-genre-pill,
.fct-nominee-tag,
.fct-winner-badge,
.fct-lb-heading-badge,
.fct-team-number,
.fct-roster-section-title,
.fct-label,
.fct-hero-label,
.fct-detail-label,
.fct-section-title {
	color: var(--nsff-ice-2) !important;
}

/* Button styling intentionally uses the shared .fct-btn family. Legacy one-off button classes stay as JS hooks only. */
.fct-view-tabs,
.fct-staff-nav,
.fct-dash-tabs,
.fct-audit-tabs,
.fct-tabs-fluid,
.fct-integrated-nav,
.fct-nav-upper-row,
.fct-sp-admin-legend,
.fct-nav-legend {
	border-color: rgba(166, 211, 244, .14) !important;
}

.fct-season-select,
.fct-roster-select,
.fct-sp-season-select,
.fct-sp-field-input,
.fct-sp-inline-edit-input,
.fct-auth-input,
.fct-search-input,
.fct-input,
.fct-note-rev-textarea,
.fct-results-season-filter,
.fct-staff-wrap input[type="text"],
.fct-staff-wrap input[type="search"],
.fct-staff-wrap select,
.fct-staff-wrap textarea,
.fct-archive-container input,
.fct-archive-container select,
.fct-archive-container textarea,
.fct-public-roster-wrap select,
.fct-portal-wrapper input,
.fct-portal-wrapper select,
.fct-portal-wrapper textarea,
.fct-trailer-gallery input,
.fct-trailer-gallery select,
.fct-trailer-gallery textarea,
.fct-results-page input,
.fct-results-page select,
.fct-results-page textarea,
.fct-audit-wrap input,
.fct-audit-wrap select,
.fct-audit-wrap textarea {
	width: 100%;
	border: 1px solid rgba(166, 211, 244, .26) !important;
	border-radius: 10px !important;
	background: var(--nsff-field-bg) !important;
	color: var(--nsff-text) !important;
	box-shadow: inset 0 1px 0 rgba(226, 245, 255, .04) !important;
	outline: none !important;
}

.fct-season-select:focus,
.fct-roster-select:focus,
.fct-sp-season-select:focus,
.fct-sp-field-input:focus,
.fct-sp-inline-edit-input:focus,
.fct-auth-input:focus,
.fct-search-input:focus,
.fct-input:focus,
.fct-note-rev-textarea:focus,
.fct-staff-wrap input:focus,
.fct-staff-wrap select:focus,
.fct-staff-wrap textarea:focus,
.fct-archive-container input:focus,
.fct-archive-container select:focus,
.fct-archive-container textarea:focus,
.fct-portal-wrapper input:focus,
.fct-portal-wrapper select:focus,
.fct-portal-wrapper textarea:focus,
.fct-trailer-gallery input:focus,
.fct-trailer-gallery select:focus,
.fct-trailer-gallery textarea:focus,
.fct-results-page input:focus,
.fct-results-page select:focus,
.fct-results-page textarea:focus,
.fct-audit-wrap input:focus,
.fct-audit-wrap select:focus,
.fct-audit-wrap textarea:focus {
	border-color: rgba(103, 232, 249, .62) !important;
	box-shadow: 0 0 0 4px rgba(103, 232, 249, .12) !important;
}

.fct-score-table,
.fct-total-table,
.fct-sp-wrap table,
.fct-staff-wrap table,
.fct-results-page table,
.fct-audit-wrap table {
	width: 100%;
	border-collapse: collapse;
	background: transparent !important;
	color: var(--nsff-text-soft) !important;
}

.fct-score-table th,
.fct-total-table th,
.fct-sp-wrap th,
.fct-staff-wrap th,
.fct-results-page th,
.fct-audit-wrap th {
	background: rgba(13, 21, 34, .98) !important;
	color: var(--nsff-ice-2) !important;
	border-bottom: 1px solid rgba(166, 211, 244, .18) !important;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-score-table td,
.fct-total-table td,
.fct-sp-wrap td,
.fct-staff-wrap td,
.fct-results-page td,
.fct-audit-wrap td {
	border-bottom: 1px solid rgba(166, 211, 244, .09) !important;
	color: var(--nsff-text-soft) !important;
}

.fct-score-table th,
.fct-total-table th {
	padding: 13px 16px !important;
}

.fct-score-table tbody td,
.fct-total-table tbody td {
	padding: 12px 14px 12px 18px !important;
	vertical-align: middle;
}

.fct-search-wrap,
.fct-universal-search-wrap,
.fct-search-container,
.fct-nav-search-fluid,
.fct-sp-season-wrap,
.fct-select-wrapper,
.fct-field-group,
.fct-sp-field-group {
	color: var(--nsff-muted) !important;
}

.fct-poster-placeholder,
.fct-sp-poster-placeholder,
.fct-thumb-wrap,
.fct-sp-card-poster,
.fct-sp-lineup-poster-wrap,
.fct-nom-poster,
.fct-top13-poster {
	background: rgba(5, 8, 13, .64) !important;
	border-color: rgba(166, 211, 244, .18) !important;
}

.fct-modal-overlay,
.fct-details-modal-overlay,
.fct-custom-modal,
.fct-howto-modal {
	background: rgba(5, 8, 13, .82) !important;
	backdrop-filter: blur(8px);
}

.fct-status-pill,
.fct-card-badge,
.fct-score-badge,
.fct-sp-tag,
.fct-sp-genre-pill,
.fct-lb-heading-badge,
.fct-rank-badge,
.fct-team-number,
.fct-season-badge,
.fct-nominee-tag,
.fct-winner-badge {
	border: 1px solid rgba(166, 211, 244, .28) !important;
	background: rgba(166, 211, 244, .10) !important;
	border-radius: 999px !important;
}

.fct-check-indicator,
.st-green,
.fct-done,
.is-done {
	color: #34d399 !important;
}

.st-yellow,
.fct-pending,
.is-prog {
	color: #fbbf24 !important;
}

.st-red,
.fct-error,
.fct-status-error {
	color: #f87171 !important;
}

@media (max-width: 900px) {
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-staff-wrap,
	.fct-trailer-gallery,
	.fct-results-page,
	.fct-audit-wrap {
		width: min(100%, calc(100vw - 28px));
		padding-left: 0;
		padding-right: 0;
	}
}


/* ==========================================================
   fct-film-archive.php: extracted inline/static CSS moved from PHP
   ========================================================== */


/* --- Extracted from fct-film-archive.php: style block 1 --- */
.fct-modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); z-index: 999999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
            .fct-modal-box { background: #fff; width: 90%; max-width: 450px; padding: 30px; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; position: relative; animation: fctFadeIn 0.2s ease-out; }
            @keyframes fctFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

            .fct-manager-bar { display:flex; justify-content:flex-end; margin-bottom:20px; }
            .fct-manager-btn { background:#f1f5f9; color:#475569; border:1px solid #cbd5e1; padding:6px 12px; border-radius:6px; cursor:pointer; font-size:12px; display:flex; align-items:center; gap:6px; font-weight:600; transition:0.2s; }
            .fct-manager-btn:hover { background:#fff; border-color:#94a3b8; color:#0f172a; box-shadow:0 2px 4px rgba(0,0,0,0.05); }
            .fct-modal-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:15px; border-bottom:1px solid #eee; padding-bottom:15px; }
            .fct-close-x { background:none; border:none; font-size:24px; cursor:pointer; color:#999; line-height:1; }
            .fct-modal-field { margin-bottom: 20px; background: #f8fafc; padding: 15px; border-radius: 8px; border: 1px solid #e2e8f0; }
            .fct-modal-label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; color: #334155; }
            .fct-modal-input { width: 100%; padding: 8px 10px; border: 1px solid #cbd5e1; border-radius: 4px; font-size: 14px; color:#1e293b; }
            .fct-help-text { font-size: 11px; color: #64748b; margin-top: 6px; font-style: italic; }
            .fct-btn-row { display: flex; justify-content: flex-end; gap: 10px; margin-top: 25px; border-top: 1px solid #eee; padding-top: 20px; }

/* --- Extracted from fct-film-archive.php: style block 2 --- */
.fct-locked-archive { text-align: center; padding: 80px 20px; max-width: 700px; margin: 0 auto; background: #f8fafc; border-radius: 20px; border: 1px solid #e2e8f0; }
            .fct-lock-icon { font-size: 60px; margin-bottom: 20px; }
            .fct-locked-title { font-size: 32px; font-weight: 900; color: #0f172a; margin: 0 0 15px 0; }
            .fct-locked-desc { font-size: 18px; color: #64748b; line-height: 1.6; }

/* --- Extracted from fct-film-archive.php: style block 3 --- */
/* Premium CTA Banner */
                .ns-ticket-cta-banner {
                    background: #0f172a; /* Deep premium dark */
                    border-radius: 20px;
                    padding: 45px 50px;
                    margin: 60px auto;
                    max-width: 1000px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 40px;
                    border-top: 6px solid #a6c5e7; /* Theme accent */
                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                }

                .ns-cta-content {
                    flex: 1;
                }

                .ns-cta-title {
                    color: #ffffff;
                    font-size: 34px;
                    font-weight: 900;
                    margin: 0 0 12px 0;
                    line-height: 1.15;
                    letter-spacing: -0.02em;
                }

                .ns-cta-desc {
                    color: #cbd5e1;
                    font-size: 18px;
                    line-height: 1.5;
                    margin: 0;
                    font-weight: 500;
                }

                .ns-cta-action {
                    flex-shrink: 0;
                }

                /* Massive Tap Target Button */
                .ns-cta-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 12px;
                    background: #a6c5e7; /* Theme color */
                    color: #0f172a;
                    font-size: 18px;
                    font-weight: 900;
                    padding: 18px 36px;
                    border-radius: 99px;
                    text-decoration: none !important;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
                    box-shadow: 0 6px 20px rgba(166, 197, 231, 0.25);
                }

                .ns-cta-arrow {
                    font-size: 24px;
                    transition: transform 0.2s ease;
                }

                .ns-cta-btn:hover {
                    background: #ffffff;
                    transform: translateY(-3px) scale(1.02);
                    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
                }

                .ns-cta-btn:hover .ns-cta-arrow {
                    transform: translateX(6px);
                }

                /* Bulletproof Mobile Adjustments */
                @media (max-width: 850px) {
                    .ns-ticket-cta-banner {
                        flex-direction: column;
                        text-align: center;
                        padding: 35px 25px;
                        gap: 25px;
                        border-top-width: 8px;
                    }

                    .ns-cta-title {
                        font-size: 28px;
                    }

                    .ns-cta-desc {
                        font-size: 16px;
                    }

                    .ns-cta-action {
                        width: 100%;
                    }

                    .ns-cta-btn {
                        width: 100%;
                        justify-content: center;
                        padding: 20px 24px;
                        font-size: 16px;
                        box-sizing: border-box;
                    }
                }

/* --- Extracted from fct-film-archive.php: style block 4 --- */
:root { --fct-color: #a6c5e7; --fct-dark: #0f172a; }
            .fct-archive-container { max-width: 1200px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
            .fct-archive-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid #e2e8f0; flex-wrap:wrap; gap:20px; }
            .fct-header-left { display: flex; align-items: center; gap: 15px; }
            .fct-h2 { margin: 0; font-size: 32px; font-weight: 800; color: #0f172a; letter-spacing: -0.5px; }
            .fct-season-badge { background: #0f172a; color: #fff; padding: 6px 14px; border-radius: 99px; font-size: 14px; font-weight: 600; }
            .fct-view-tabs { display:flex; gap:15px; margin-bottom:40px; }
            .fct-view-tab { padding:10px 20px; border-radius:30px; font-weight:700; text-decoration:none; color:#64748b; background:#f1f5f9; transition:0.2s; }
            .fct-view-tab.active { background: var(--fct-color); color:#0f172a; box-shadow:0 4px 10px rgba(166, 197, 231, 0.4); }

            /* CAROUSEL WRAPPER & NAVIGATION BUTTONS */
            .fct-carousel-wrapper { position: relative; }
            .fct-scroll-btn {
                position: absolute; top: 50%; transform: translateY(-50%);
                width: 44px; height: 44px; border-radius: 50%;
                background: #fff; border: 1px solid #cbd5e1;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                font-size: 18px; color: #0f172a; font-weight: bold;
                cursor: pointer; z-index: 20; display: flex; align-items: center; justify-content: center;
                transition: all 0.2s ease;
            }
            .fct-scroll-btn:hover { background: var(--fct-color); color: #fff; border-color: var(--fct-color); box-shadow: 0 6px 12px rgba(166, 197, 231, 0.4); }
            .fct-scroll-btn.left { left: -22px; }
            .fct-scroll-btn.right { right: -22px; }

            /* PREMIUM TOP 13 CONTAINER */
            .fct-top13-container {
                background: linear-gradient(to bottom, #ffffff, #f8fafc);
                padding: 35px 25px;
                border-radius: 16px;
                margin-bottom: 60px;
                border: 1px solid #e2e8f0;
                box-shadow: 0 15px 35px -10px rgba(166, 197, 231, 0.25);
                position: relative;
                overflow: hidden;
            }
            .fct-top13-container::before {
                content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
                background: linear-gradient(90deg, var(--fct-color), #60a5fa, var(--fct-color));
            }

            /* TOP 13 UX CAROUSEL */
            .fct-top13-carousel { display: flex; gap: 20px; overflow-x: auto; padding: 10px 5px 30px 5px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
            .fct-top13-carousel::-webkit-scrollbar { display: none; }
            .fct-top13-card { flex: 0 0 240px; background: #fff; padding: 12px; border-radius: 14px; border: 1px solid #e2e8f0; box-shadow: 0 4px 15px rgba(0,0,0,0.04); scroll-snap-align: start; text-decoration: none !important; color: inherit !important; display: block; transition: transform 0.2s, box-shadow 0.2s; }
            .fct-top13-card:hover { transform: translateY(-6px); box-shadow: 0 12px 25px -5px rgba(0,0,0,0.1); border-color: #cbd5e1; }
            .fct-top13-poster { aspect-ratio: 2/3; background: #e2e8f0; border-radius: 8px; overflow: hidden; margin-bottom: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: relative; }
            .fct-top13-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; content-visibility: auto; }
            .fct-top13-card:hover .fct-top13-poster img { transform: scale(1.06); }
            .fct-top13-badge { position: absolute; top: 12px; left: 12px; background: rgba(15, 23, 42, 0.9); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 6px; backdrop-filter: blur(2px); text-transform:uppercase; letter-spacing:0.5px; z-index: 10; }

            /* GRADIENT RANKING BANNERS */
            .fct-top13-rank-banner { position: absolute; bottom: 0; left: 0; width: 100%; font-size: 12px; font-weight: 900; text-align: center; padding: 8px 0; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 -2px 15px rgba(0,0,0,0.2); }
            .fct-rank-1 { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #78350f; text-shadow: 0 1px 0 rgba(255,255,255,0.4); }
            .fct-rank-2 { background: linear-gradient(135deg, #cbd5e1, #e2e8f0); color: #334155; }
            .fct-rank-3 { background: linear-gradient(135deg, #d97706, #f59e0b); color: #fffbeb; }
            .fct-rank-top10 { background: linear-gradient(135deg, #1e3a8a, #3b82f6); color: #fff; }
            .fct-rank-hm { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); color: #475569; border-top: 1px solid #cbd5e1; }
            .fct-podium-shadow { box-shadow: 0 15px 25px -5px rgba(245, 158, 11, 0.3) !important; }

            /* NOMINATED BADGE */
            .fct-nominee-tag { display: inline-block; background: #f0f9ff; color: #0369a1; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; border: 1px solid #bae6fd; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
            .fct-top13-tags { margin-top: 8px; line-height: 1.3; text-align: center; }

            .fct-nom-section { margin-bottom: 50px; }
            .fct-nom-header { font-size: 22px; font-weight: 800; margin-bottom: 15px; border-left: 5px solid var(--fct-color); padding-left: 15px; color: #1e293b; }

            /* CATEGORY CAROUSEL (GRID ON DESKTOP) */
            .fct-nom-carousel { display: flex; gap: 16px; overflow-x: auto; padding: 5px 5px 20px 5px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
            .fct-nom-carousel::-webkit-scrollbar { display: none; }
            .fct-nom-card { flex: 0 0 170px; background: #fff; padding: 10px; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 4px 10px rgba(0,0,0,0.03); scroll-snap-align: start; text-decoration: none !important; color: inherit !important; display: block; transition: transform 0.2s, box-shadow 0.2s; }
            .fct-nom-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px -5px rgba(0,0,0,0.08); border-color: #cbd5e1; }
            .fct-nom-poster { aspect-ratio: 2/3; background: #e2e8f0; border-radius: 6px; overflow: hidden; margin-bottom: 10px; position: relative; }
            .fct-nom-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; content-visibility: auto; }
            .fct-nom-card:hover .fct-nom-poster img { transform: scale(1.06); }
            .fct-nom-badge { position: absolute; top: 8px; left: 8px; background: rgba(15, 23, 42, 0.9); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; backdrop-filter: blur(2px); text-transform:uppercase; letter-spacing:0.5px; z-index:10;}

            /* CATEGORY WINNER GRADIENT */
            .fct-winner-banner { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #78350f; font-size: 11px; font-weight: 900; text-align: center; padding: 6px 0; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 -2px 10px rgba(0,0,0,0.15); }

            .fct-nom-title { font-weight: 700; font-size: 14px; text-align: center; line-height: 1.3; color: #334155; margin-bottom: 3px; }
            .fct-nom-credit { font-size: 12px; color: #64748b; text-align: center; font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

            /* ARCHIVE GRID */
            .fct-archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 30px; }
            .fct-archive-card { text-decoration: none !important; display: block; transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
            .fct-archive-card:hover { transform: translateY(-8px); }
            .fct-card-image-wrap { aspect-ratio: 2/3; border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); background: #e2e8f0; }
            .fct-card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; content-visibility: auto; }
            .fct-archive-card:hover img { transform: scale(1.08); }
            .fct-badge-stack { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; align-items: flex-start; z-index: 5; }
            .fct-card-badge { padding: 4px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 2px 4px rgba(0,0,0,0.2); white-space: nowrap; backdrop-filter: blur(4px); }
            .fct-badge-top { background: #1e3a8a; color: #fff; border: 1px solid #60a5fa; }
            .fct-badge-win { background: #fbbf24; color: #78350f; border: 1px solid #fcd34d; }
            .fct-badge-more { background: rgba(0,0,0,0.7); color: #fff; border: 1px solid #4b5563; }
            .fct-badge-nom { background: #fff; color: #2563eb; border: 1px solid #2563eb; }
            .fct-team-number-overlay { position: absolute; bottom: 10px; right: 10px; background: var(--fct-color); color: #0f172a; font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); text-transform:uppercase; letter-spacing:0.5px; }
            .fct-no-poster { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #94a3b8; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
            .fct-card-content { padding-top: 15px; }
            .fct-card-title { margin: 0 0 6px 0; font-size: 18px; font-weight: 800; line-height: 1.25; color: #0f172a; }
            .fct-archive-card:hover .fct-card-title { color: var(--fct-color); }
            .fct-card-meta { font-size: 13px; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

            @media (max-width: 900px) {
                .fct-scroll-btn { display: none !important; }
            }
            @media (max-width: 600px) {
                .fct-archive-header { flex-direction: column; align-items: flex-start; gap: 15px; }
                .fct-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
                .fct-card-title { font-size: 15px; }
                .fct-nom-card { flex: 0 0 140px; }
                .fct-top13-card { flex: 0 0 180px; }
                .fct-top13-container { padding: 25px 15px; }
            }
            @media (min-width: 900px) {
                .fct-nom-carousel {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                    gap: 20px;
                    overflow: visible;
                    padding-bottom: 0;
                    scroll-snap-type: none;
                    -webkit-overflow-scrolling: auto;
                }
                .fct-nom-card { flex: initial; scroll-snap-align: unset; }
            }
            .fct-nom-card,
            .fct-top13-card,
            .fct-archive-card {
                max-width: 100%;
                display: flex;
                flex-direction: column;
            }
            .fct-nom-poster,
            .fct-top13-poster,
            .fct-card-image-wrap {
                flex-shrink: 0;
                width: 100%;
            }
            .fct-nom-title,
            .fct-card-title {
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
                white-space: normal;
            }
            .fct-nom-credit,
            .fct-card-meta {
                word-wrap: break-word;
                overflow-wrap: break-word;
                white-space: normal;
            }
            .fct-nom-content,
            .fct-card-content {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
            }

/* --- Extracted from fct-film-archive.php: style block 5 --- */
/* Add to existing CSS */
            .fct-promo-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #1e3a8a, #0f172a); color: #fff; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 800; border: none; cursor: pointer; box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2); transition: 0.2s; text-transform: uppercase; letter-spacing: 0.5px; }
            .fct-promo-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(15, 23, 42, 0.3); }
            .fct-single-film { max-width: 1100px; margin: 0 auto; padding: 40px 20px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
            .fct-back-btn { display: inline-block; margin-bottom: 30px; text-decoration: none; font-weight: 700; color: #64748b; font-size: 14px; transition:0.2s; }
            .fct-back-btn:hover { color: #a6c5e7; transform: translateX(-5px); }
            .fct-film-layout { display: grid; grid-template-columns: 320px 1fr; gap: 60px; }
            .fct-film-poster-large { width: 100%; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2); margin-bottom: 25px; }
            .fct-film-poster-large img { width: 100%; display: block; }
            .fct-no-poster-large { width: 100%; aspect-ratio: 2/3; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: #94a3b8; font-weight: bold; }
            .fct-tech-specs { border-top: 1px solid rgba(166, 197, 231, .18); padding-top: 16px; margin-top: 20px; background: transparent; box-shadow: none; }
            .fct-spec-row { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 0; padding: 9px 0; border-bottom: 1px solid rgba(166, 197, 231, .10); font-size: 14px; color: var(--nsff-muted); }
            .fct-spec-row:last-child { border-bottom: 0; }
            .fct-spec-row strong { color: var(--nsff-text); text-align: right; }
            .fct-film-h1 { margin: 0 0 20px 0; font-size: 48px; line-height: 1.1; color: #0f172a; font-weight: 900; letter-spacing: -1px; }
            .fct-hero-credits { display: flex; flex-wrap: wrap; gap: 30px; margin-bottom: 20px; border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; }
            .fct-hero-item { display: flex; flex-direction: column; }
            .fct-hero-label { font-size: 12px; text-transform: uppercase; color: #94a3b8; font-weight: 700; margin-bottom: 2px; letter-spacing: 0.5px; }
            .fct-hero-name { font-size: 18px; font-weight: 600; color: #334155; }
            .fct-social-row { display:flex; gap:12px; margin-bottom:25px; align-items:center; }
            .fct-social-link { width:36px; height:36px; background:#f1f5f9; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#64748b; transition:all 0.2s; text-decoration:none; }
            .fct-social-link:hover { background:#0f172a; color:#fff; transform:translateY(-3px); }
            .fct-social-link svg { width:18px; height:18px; fill:currentColor; }
            .fct-awards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 15px; }
            .fct-award-item { padding: 12px 15px; border-radius: 8px; font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 10px; }
            .fct-award-item.is-winner { background: #fffbeb; border: 1px solid #fbbf24; color: #b45309; }
            .fct-award-item.is-nominee { background: #f0f9ff; border: 1px solid #a6c5e7; color: #0369a1; }
            .fct-award-icon { font-size: 18px; }
            .fct-section { margin-bottom: 40px; }
            .fct-section-head { font-size: 14px; text-transform: uppercase; color: #0f172a; border-bottom: 2px solid #0f172a; display:inline-block; padding-bottom: 5px; margin-bottom: 15px; letter-spacing: 1px; font-weight: 800; }
            .fct-text-block { font-size: 17px; line-height: 1.7; color: #334155; }
            .fct-logline { font-size: 22px; font-style: italic; color: #475569; line-height: 1.5; font-family: serif; border-left: 4px solid #a6c5e7; padding-left: 20px; }
            .fct-trailer-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 10px 30px -5px rgba(0,0,0,0.2); }
            .fct-trailer-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
            .fct-trailer-placeholder { background:#f8fafc; padding:50px; text-align:center; border-radius:12px; border:2px dashed #cbd5e1; color:#64748b; }
            .fct-vote-trailer-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #a6c5e7; color: #0f172a; padding: 14px 28px; border-radius: 8px; font-size: 16px; font-weight: 800; text-decoration: none !important; transition: all 0.2s ease; box-shadow: 0 4px 10px rgba(166, 197, 231, 0.4); text-transform: uppercase; letter-spacing: 0.5px; }
            .fct-vote-trailer-btn:hover { background: #0f172a; color: #fff; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
            .fct-content-warning { background: #fff1f2; border: 1px solid #fecaca; padding: 20px; border-radius: 8px; margin-bottom: 30px; display:flex; align-items:flex-start; gap:15px; }
            .fct-cw-title { font-size: 14px; font-weight: 800; color: #be123c; text-transform: uppercase; white-space:nowrap; }
            .fct-cw-list { font-size: 15px; color: #881337; font-weight: 500; line-height: 1.4; }
            .fct-details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .fct-detail-item { display: flex; flex-direction: column; }
            .fct-detail-item.full-width { grid-column: 1 / -1; }
            .fct-label { font-size: 12px; text-transform: uppercase; color: #94a3b8; font-weight: 700; margin-bottom: 4px; }
            .fct-val { font-size: 16px; font-weight: 500; color: #1e293b; }
            @media (max-width: 768px) {
                .fct-film-layout { grid-template-columns: 1fr; gap: 40px; }
                .fct-film-poster-large { max-width: 300px; margin: 0 auto 30px auto; }
                .fct-film-h1 { font-size: 36px; text-align: center; }
                .fct-hero-credits { justify-content: center; text-align: center; }
                .fct-details-grid { grid-template-columns: 1fr; }
            }

/* --- Extracted from fct-film-archive.php: style block 6 --- */
.fct-modal-overlay {
                position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999999;
                background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
                display: flex; align-items: center; justify-content: center;
                opacity: 0; visibility: hidden; transition: all 0.2s ease;
            }
            .fct-modal-overlay.is-visible { opacity: 1; visibility: visible; }

            .fct-lightbox-box{
                background:#fff;
                width:95%;
                max-width:1100px;
                border-radius:16px;
                box-shadow:0 25px 50px -12px rgba(0,0,0,0.35);
                padding:14px;
                text-align:center;
            }

            .fct-lightbox-img{
                max-width:100%;
                max-height:80vh;
                height:auto;
                display:block;
                margin:0 auto;
                border-radius:10px;
            }

            .fct-lightbox-close{
                position:absolute;
                top:18px;
                right:22px;
                font-size:34px;
                line-height:34px;
                color:#fff;
                cursor:pointer;
                user-select:none;
            }


/* --- Static style attributes extracted from fct-film-archive.php --- */
.fct-archive-u-001 { font-size:16px; width:16px; height:16px; line-height:16px; }
.fct-archive-u-002 { margin:0; }
.fct-archive-u-003 { font-size:13px; color:#666; margin-bottom:20px; line-height:1.4; }
.fct-archive-u-004 { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; }
.fct-archive-u-005 { display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.fct-archive-u-006 { text-decoration:none; }
.fct-archive-u-007 { font-size:12px; margin-top:8px; }
.fct-archive-u-008 { text-align:right; margin-top:10px; font-size:12px; height:20px; }
.fct-archive-u-009 { color:#f59e0b; }
.fct-archive-u-010 { color:green; font-weight:bold; }
.fct-archive-u-011 { color:red; font-weight:bold; }
.fct-archive-u-012 { color:red; }
.fct-archive-u-013 { font-weight:bold; color:#a6c5e7; margin-top:20px; }
.fct-archive-u-014 { background:#fff7ed; border:1px solid #fed7aa; color:#9a3412; padding:15px; border-radius:8px; text-align:center; margin-bottom:30px; font-weight:bold; }
.fct-archive-u-015 { border-left:none; text-align:center; font-size:28px; margin-bottom:10px; color:#0f172a; }
.fct-archive-u-016 { text-align:center; color:#64748b; font-size:14px; margin-top:0; margin-bottom:25px; }
.fct-archive-u-017 { background: linear-gradient(135deg, #fdba74, #f97316); color: #fff; }
.fct-archive-u-018 { color: #c2410c; font-weight: 800; }
.fct-archive-u-019 { margin-bottom: 25px; }
.fct-archive-u-020 { margin-bottom: 12px; border-bottom-color: #fbbf24; color: #b45309; }
.fct-archive-u-021 { margin-bottom: 12px; border-bottom-color: #a6c5e7; color: #0369a1; }
.fct-archive-u-022 { margin-top: 20px; text-align: center; }
.fct-archive-u-023 { margin-top:3px; }
.fct-archive-u-024 { font-style:italic; }
.fct-archive-u-025 { position:fixed; top:20px; right:30px; font-size:40px; line-height:1; color:#fff; text-shadow:0 2px 4px rgba(0,0,0,0.8); cursor:pointer; z-index:1000000; }
.fct-archive-u-026 { margin:auto; background:transparent; box-shadow:none; padding:40px 20px; display:flex; align-items:center; justify-content:center; min-height:100%; }
.fct-archive-u-027 { max-height:90vh; max-width:90vw; border-radius:8px; box-shadow:0 10px 40px rgba(0,0,0,0.5); cursor:zoom-in; transition:all 0.3s ease; }


/* ==========================================================
   fct-public-roster.php: extracted inline/static CSS moved from PHP
   ========================================================== */


/* --- Extracted from fct-public-roster.php: style block 1 --- */
.fct-public-roster-wrap {
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
                max-width: 1200px;
                margin: 0 auto;
                color: #1e293b;
            }
            .fct-roster-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 50px;
                padding-bottom: 30px;
                border-bottom: 1px solid #e2e8f0;
                flex-wrap: wrap;
                gap: 20px;
            }
            .fct-roster-h2 {
                margin: 0;
                font-size: 38px;
                font-weight: 900;
                color: #0f172a;
                letter-spacing: -1px;
            }
            .fct-roster-select {
                padding: 12px 40px 12px 20px;
                border-radius: 12px;
                border: 2px solid #e2e8f0;
                font-weight: 700;
                color: #0f172a;
                font-size: 16px;
                background: #fff url('data:image/svg+xml;utf8,<svg fill="%2364748b" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat calc(100% - 12px) 50%;
                cursor: pointer;
                outline: none;
                appearance: none;
                transition: 0.2s;
            }
            .fct-roster-select:hover { border-color: #a6c5e7; box-shadow: 0 4px 12px rgba(166, 197, 231, 0.2); }

            .fct-roster-section-title {
                font-size: 28px;
                font-weight: 900;
                color: #0f172a;
                margin: 60px 0 30px 0;
                display: flex;
                align-items: center;
                gap: 20px;
            }
            .fct-roster-section-title::after {
                content: '';
                flex: 1;
                height: 1px;
                background: linear-gradient(to right, #e2e8f0, transparent);
            }

            .fct-roster-grid { 
                display: grid; 
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
                gap: 25px; 
            }
            .fct-roster-card { 
                background: #ffffff; 
                border: 1px solid #e2e8f0; 
                border-top: 4px solid #a6c5e7;
                border-radius: 12px; 
                padding: 25px; 
                transition: all 0.3s ease;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .fct-roster-card:hover { 
				transform: translateY(-4px); 
				box-shadow: 0 12px 25px -5px rgba(0,0,0,0.06); 
				border-top-color: #7fa6d3; /* A complementary darker shade */
			}
            
            .fct-roster-name { 
                font-size: 20px; 
                font-weight: 800; 
                color: #0f172a; 
                margin: 0 0 10px 0; 
                line-height: 1.2;
            }
            .fct-roster-role { 
                font-size: 14px; 
                font-weight: 800; 
                text-transform: uppercase; 
                letter-spacing: 1px; 
                color: #64748b;
                display: flex;
                align-items: center;
                gap: 6px;
            }
            .fct-roster-role::before {
                content: '•';
                color: #a6c5e7;
                font-size: 18px;
            }

            @media (max-width: 600px) {
                .fct-roster-h2 { font-size: 28px; }
                .fct-roster-grid { grid-template-columns: 1fr; }
            }


/* --- Static style attributes extracted from fct-public-roster.php --- */
.fct-roster-u-001 { font-weight: 700; color: #475569; margin-top: 5px; font-size: 16px; }
.fct-roster-u-002 { padding:80px 20px; text-align:center; background: #fff; border: 1px solid #e2e8f0; border-radius:20px; max-width: 700px; margin: 40px auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.fct-roster-u-003 { font-size:50px; margin-bottom:20px; }
.fct-roster-u-004 { color:#0f172a; font-size:26px; font-weight:900; margin:0 0 15px 0; }
.fct-roster-u-005 { color:#64748b; font-size:18px; margin:0; line-height:1.6; }
.fct-roster-u-006 { color:#0f172a; }
.fct-roster-u-007 { background:#fffbeb; border:1px solid #fef3c7; color:#92400e; padding:15px; border-radius:12px; text-align:center; margin-bottom:40px; font-weight:800; font-size:14px; text-transform:uppercase; letter-spacing:1px; }
.fct-roster-u-008 { grid-column: 1 / -1; margin-top: 10px; padding: 15px 20px; background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: 12px; color: #64748b; font-size: 15px; font-weight: 600; text-align: center; }
.fct-roster-u-009 { margin-top: 80px; }
.fct-roster-u-010 { border-top-color: #cbd5e1; }
.fct-roster-u-011 { padding:40px; text-align:center; color:#64748b; font-size:18px; font-weight:700; }


/* ==========================================================
   fct-screening-program.php: extracted inline/static CSS moved from PHP
   ========================================================== */


/* --- Extracted from fct-screening-program.php: style block 1 --- */
.fct-sp-wrap,
		.fct-sp-public-wrap {
			font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
			color: #0f172a;
		}

		/* Admin */
		.fct-sp-header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 20px;
			flex-wrap: wrap;
			gap: 14px;
		}
		.fct-sp-header-left,
		.fct-sp-header-right {
			display: flex;
			align-items: center;
			gap: 12px;
			flex-wrap: wrap;
		}
		.fct-sp-heading {
			font-weight: 900;
			font-size: 21px;
			color: #0f172a;
		}
		.fct-sp-readonly-badge {
			font-size: 11px;
			font-weight: 700;
			color: #92400e;
			background: #fef3c7;
			border: 1px solid #fcd34d;
			border-radius: 6px;
			padding: 3px 10px;
		}
		.fct-sp-season-wrap {
			display: flex;
			align-items: center;
			gap: 7px;
		}
		.fct-sp-season-label {
			font-size: 12px;
			font-weight: 700;
			color: #64748b;
		}
		.fct-sp-season-select {
			font-size: 13px;
			font-weight: 700;
			color: #0f172a;
			background: #fff;
			border: 1px solid #e2e8f0;
			border-radius: 8px;
			padding: 7px 30px 7px 11px;
			cursor: pointer;
			outline: none;
			appearance: none;
			-webkit-appearance: none;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
			background-repeat: no-repeat;
			background-position: right 10px center;
		}
		.fct-sp-save-group {
			display: flex;
			align-items: center;
			gap: 8px;
		}
		.fct-sp-save-status {
			font-size: 12px;
			color: #94a3b8;
			font-weight: 600;
			min-width: 0;
		}
		.fct-sp-save-status.is-warn { color: #d97706; }
		.fct-sp-save-status.is-ok { color: #16a34a; }
		.fct-sp-save-status.is-err { color: #dc2626; }

		.fct-sp-btn-primary,
		.fct-sp-btn-ghost,
		.fct-sp-btn-save,
		.fct-sp-btn-cancel,
		.fct-sp-btn-confirm {
			text-decoration: none !important;
		}
		.fct-sp-btn-primary {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			background: #0f172a;
			color: #fff;
			border: none;
			padding: 9px 18px;
			border-radius: 10px;
			font-weight: 800;
			font-size: 14px;
			cursor: pointer;
		}
		.fct-sp-btn-primary:hover { background: #1e293b; color: #fff; }
		.fct-sp-btn-ghost {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			background: #fff;
			color: #475569;
			border: 1px solid #cbd5e1;
			border-radius: 10px;
			padding: 8px 14px;
			font-weight: 700;
			font-size: 13px;
			cursor: pointer;
		}
		.fct-sp-btn-ghost:hover { background: #f8fafc; border-color: #94a3b8; }
		.fct-sp-btn-save {
			display: inline-flex;
			align-items: center;
			gap: 5px;
			background: #16a34a;
			color: #fff;
			border: none;
			padding: 8px 14px;
			border-radius: 10px;
			font-weight: 800;
			font-size: 13px;
			cursor: pointer;
		}
		.fct-sp-btn-cancel {
			background: #f1f5f9;
			border: 1px solid #e2e8f0;
			color: #64748b;
			padding: 9px 18px;
			border-radius: 9px;
			font-weight: 700;
			font-size: 14px;
			cursor: pointer;
		}
		.fct-sp-btn-confirm {
			background: #2563eb;
			color: #fff;
			border: none;
			padding: 9px 22px;
			border-radius: 9px;
			font-weight: 800;
			font-size: 14px;
			cursor: pointer;
		}
		.fct-sp-mini-btn {
			padding: 5px 10px !important;
			font-size: 12px !important;
		}

		.fct-sp-new-block-form {
			background: #fff;
			border: 2px solid #3b82f6;
			border-radius: 14px;
			margin-bottom: 20px;
			box-shadow: 0 8px 24px -4px rgba(59, 130, 246, 0.18);
		}
		.fct-sp-new-block-form-inner {
			padding: 20px 22px;
		}
		.fct-sp-new-block-form-title {
			font-weight: 900;
			font-size: 15px;
			color: #1e40af;
			margin-bottom: 16px;
		}
		.fct-sp-new-block-fields {
			display: grid;
			gap: 12px;
			margin-bottom: 16px;
		}
		.fct-sp-new-block-fields-4 {
			grid-template-columns: repeat(4, minmax(0, 1fr));
		}
		.fct-sp-new-block-fields-2 {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
		@media (max-width: 900px) {
			.fct-sp-new-block-fields-4,
			.fct-sp-new-block-fields-2 {
				grid-template-columns: 1fr 1fr;
			}
		}
		@media (max-width: 640px) {
			.fct-sp-new-block-fields-4,
			.fct-sp-new-block-fields-2 {
				grid-template-columns: 1fr;
			}
		}
		.fct-sp-field-group {
			display: flex;
			flex-direction: column;
			gap: 5px;
		}
		.fct-sp-field-label {
			font-size: 11px;
			font-weight: 700;
			color: #64748b;
			text-transform: uppercase;
			letter-spacing: .04em;
		}
		.fct-sp-required { color: #ef4444; }
		.fct-sp-field-input,
		.fct-sp-inline-edit-input,
		.fct-sp-inline-edit-select {
			border: 1.5px solid #e2e8f0;
			border-radius: 9px;
			padding: 9px 12px;
			font-size: 14px;
			font-family: inherit;
			color: #0f172a;
			outline: none;
			width: 100%;
			box-sizing: border-box;
			background: #fff;
		}
		.fct-sp-field-input--lg { font-weight: 700; font-size: 15px; }
		.fct-sp-inline-edit-input,
		.fct-sp-inline-edit-select {
			padding: 7px 9px;
			font-size: 12px;
			background: #f8fafc;
		}
		.fct-sp-field-input:focus,
		.fct-sp-inline-edit-input:focus,
		.fct-sp-inline-edit-select:focus {
			border-color: #3b82f6;
			background: #fff;
		}
		.fct-sp-custom-film-form {
			padding: 12px;
			background: #e0f2fe;
			border-bottom: 1px solid #bae6fd;
			display: grid;
			gap: 8px;
		}
		.fct-sp-custom-film-actions,
		.fct-sp-new-block-actions {
			display: flex;
			justify-content: flex-end;
			gap: 10px;
		}

		.fct-sp-layout {
			display: grid;
			grid-template-columns: 270px 1fr;
			gap: 20px;
			align-items: start;
		}
		@media (max-width: 900px) {
			.fct-sp-layout {
				grid-template-columns: 1fr;
			}
		}

		.fct-sp-pool-wrap {
			background: #f8fafc;
			border: 2px dashed #cbd5e1;
			border-radius: 14px;
			overflow: hidden;
			position: sticky;
			top: 70px;
			max-height: calc(100vh - 100px);
			display: flex;
			flex-direction: column;
		}
		.fct-sp-pool-header {
			padding: 12px 14px;
			background: #f1f5f9;
			border-bottom: 1px solid #e2e8f0;
			display: flex;
			justify-content: space-between;
			align-items: center;
			flex-shrink: 0;
		}
		.fct-sp-pool-title {
			font-weight: 800;
			font-size: 13px;
			color: #374151;
		}
		.fct-sp-pool-hint {
			font-size: 11px;
			color: #94a3b8;
			margin-top: 2px;
		}
		.fct-sp-count {
			background: #334155;
			color: #fff;
			border-radius: 999px;
			padding: 2px 9px;
			font-size: 11px;
			font-weight: 800;
		}
		.fct-sp-pool {
			flex: 1;
			overflow-y: auto;
			padding: 8px;
			min-height: 80px;
		}
		.fct-sp-empty-pool {
			text-align: center;
			color: #94a3b8;
			font-style: italic;
			font-size: 13px;
			padding: 28px 12px;
		}

		.fct-sp-no-blocks {
			text-align: center;
			color: #94a3b8;
			padding: 56px 24px;
			background: #f8fafc;
			border: 2px dashed #e2e8f0;
			border-radius: 14px;
			font-size: 14px;
			line-height: 1.7;
		}

		.fct-sp-block {
			background: #fff;
			border: 1px solid #e2e8f0;
			border-radius: 14px;
			margin-bottom: 14px;
			overflow: hidden;
			box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
		}
		.sortable-block-ghost {
			opacity: .35;
			background: #eff6ff;
			border: 2px dashed #93c5fd;
		}
		.fct-sp-block-top-bar {
			background: #f8fafc;
			border-bottom: 1px solid #f1f5f9;
			padding: 5px 14px;
		}
		.fct-sp-block-drag-handle {
			color: #cbd5e1;
			font-size: 12px;
			cursor: grab;
			letter-spacing: 2px;
		}
		.fct-sp-block-header {
			padding: 12px 14px 10px;
			display: flex;
			align-items: center;
			gap: 10px;
		}
		.fct-sp-block-name-row {
			flex: 1;
			min-width: 0;
		}
		.fct-sp-inline-name {
			font-weight: 900;
			font-size: 16px;
			border: none;
			background: transparent;
			padding: 2px 4px;
		}
		.fct-sp-block-name-readonly {
			font-weight: 900;
			font-size: 16px;
			padding: 2px 4px;
		}
		.fct-sp-block-delete {
			background: none;
			border: none;
			color: #fca5a5;
			font-size: 16px;
			cursor: pointer;
			padding: 5px 7px;
			border-radius: 7px;
		}
		.fct-sp-block-meta {
			padding: 0 14px 10px;
			display: flex;
			gap: 10px;
			flex-wrap: wrap;
		}
		.fct-sp-block-meta-secondary {
			padding-top: 0;
		}
		.fct-sp-meta-field {
			display: flex;
			align-items: center;
			gap: 6px;
			flex: 1;
			min-width: 180px;
		}
		.fct-sp-meta-field-wide {
			min-width: 100%;
		}
		.fct-sp-meta-icon {
			font-size: 13px;
			flex-shrink: 0;
		}
		.fct-sp-meta-readonly,
		.fct-sp-meta-readonly-link {
			font-size: 12px;
			color: #374151;
		}
		.fct-sp-meta-readonly-link {
			word-break: break-all;
		}
		.fct-sp-block-film-count {
			font-size: 10px;
			font-weight: 800;
			text-transform: uppercase;
			letter-spacing: .06em;
			color: #94a3b8;
			padding: 0 14px 6px;
		}
		.fct-sp-block-body {
			padding: 6px 8px 8px;
			min-height: 56px;
		}
		.fct-sp-block-drop-hint {
			text-align: center;
			color: #cbd5e1;
			font-size: 12px;
			font-style: italic;
			padding: 18px 12px;
			border: 2px dashed #f1f5f9;
			border-radius: 8px;
		}

		.fct-sp-film-card {
			background: #fff;
			border: 1px solid #e5e7eb;
			border-radius: 9px;
			padding: 6px 8px;
			margin-bottom: 5px;
			display: flex;
			align-items: center;
			gap: 8px;
			user-select: none;
			text-decoration: none;
			color: inherit;
		}
		.fct-sp-film-card.sortable-chosen {
			box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
			border-color: #3b82f6;
			transform: scale(1.018);
		}
		.fct-sp-film-card.sortable-ghost {
			opacity: .28;
			background: #eff6ff;
		}
		.fct-sp-exhibition-card {
			background: #fffaf3;
			border-style: dashed;
			border-color: #fdba74;
		}
		.fct-sp-card-poster {
			width: 38px;
			height: 56px;
			flex-shrink: 0;
			border-radius: 5px;
			overflow: hidden;
			background: #f1f5f9;
		}
		.fct-sp-card-poster .fct-sp-poster-img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}
		.fct-sp-poster-placeholder {
			width: 100%;
			height: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 18px;
			color: #cbd5e1;
		}
		.fct-sp-drag-handle {
			color: #d1d5db;
			font-size: 14px;
			flex-shrink: 0;
			cursor: grab;
		}
		.fct-sp-film-pos {
			font-size: 10px;
			font-weight: 800;
			color: #94a3b8;
			background: #f1f5f9;
			border-radius: 5px;
			padding: 2px 6px;
			flex-shrink: 0;
			min-width: 24px;
			text-align: center;
		}
		.fct-sp-film-info {
			flex: 1;
			min-width: 0;
		}
		.fct-sp-film-title {
			font-weight: 800;
			font-size: 12px;
			color: #0f172a;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}
		.fct-sp-film-team {
			font-size: 11px;
			color: #64748b;
			margin-top: 1px;
		}
		.fct-sp-team-num {
			color: #94a3b8;
			margin-right: 3px;
		}
		.fct-sp-genre-pill {
			font-size: 10px;
			color: #0369a1;
			background: #e0f2fe;
			border: 1px solid #bae6fd;
			border-radius: 4px;
			padding: 1px 5px;
			margin-right: 4px;
			font-weight: 700;
		}
		.fct-sp-film-link {
			flex-shrink: 0;
			font-size: 13px;
			color: #94a3b8;
			padding: 4px 6px;
			border-radius: 6px;
		}
		.fct-sp-exhibition-actions {
			display: flex;
			flex-direction: column;
			gap: 6px;
			margin-left: auto;
			align-items: center;
			font-size: 14px;
		}
		.fct-sp-exhibition-actions span {
			cursor: pointer;
		}

		/* Public lineup */
		.fct-sp-public-wrap {
			max-width: 1180px;
			margin: 0 auto;
		}
		.fct-sp-preview-exit {
			margin-bottom: 24px;
			text-align: right;
		}
		.fct-sp-preview-exit-btn {
			background: #1e40af;
		}
		.fct-sp-public-empty {
			padding: 48px;
			text-align: center;
			color: #64748b;
			font-size: 18px;
			font-weight: 500;
		}
		.fct-sp-event-stage {
			margin-bottom: 54px;
		}
		.fct-sp-event-hero {
			display: flex;
			justify-content: space-between;
			align-items: flex-end;
			gap: 20px;
			padding: 26px 28px;
			border-radius: 28px;
			background: linear-gradient(135deg, #0f172a 0%, #1e293b 65%, #243447 100%);
			color: #fff;
			box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
			position: relative;
			overflow: hidden;
			margin-bottom: 22px;
		}
		.fct-sp-event-hero::after {
			content: '';
			position: absolute;
			right: -50px;
			top: -50px;
			width: 220px;
			height: 220px;
			background: radial-gradient(circle, rgba(166, 197, 231, 0.22) 0%, transparent 70%);
			pointer-events: none;
		}
		.event-best_of_fest .fct-sp-event-hero {
			background: linear-gradient(135deg, #1f2937 0%, #111827 55%, #0f172a 100%);
		}
		.fct-sp-event-kicker {
			font-size: 11px;
			font-weight: 800;
			letter-spacing: .12em;
			text-transform: uppercase;
			color: #a6c5e7;
			margin-bottom: 10px;
		}
		.fct-sp-event-title {
			font-size: 34px;
			font-weight: 900;
			line-height: 1.05;
			margin: 0 0 10px;
			letter-spacing: -.03em;
		}
		.fct-sp-event-desc {
			font-size: 15px;
			line-height: 1.55;
			color: #cbd5e1;
			max-width: 680px;
		}
		.fct-sp-event-stats {
			display: flex;
			gap: 10px;
			flex-wrap: wrap;
			position: relative;
			z-index: 2;
		}
		.fct-sp-event-stat {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			padding: 10px 16px;
			border-radius: 999px;
			background: rgba(255, 255, 255, 0.08);
			border: 1px solid rgba(255, 255, 255, 0.14);
			font-size: 13px;
			font-weight: 800;
			white-space: nowrap;
		}

		.fct-sp-program-flow {
			display: flex;
			flex-direction: column;
			gap: 24px;
		}
		.fct-sp-program-chapter {
			display: grid;
			grid-template-columns: 280px minmax(0, 1fr);
			gap: 20px;
			align-items: start;
		}
		.fct-sp-chapter-side {
			background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
			border: 1px solid #dbeafe;
			border-radius: 22px;
			padding: 20px;
			box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
			position: sticky;
			top: 20px;
		}
		.fct-sp-chapter-label {
			font-size: 11px;
			font-weight: 800;
			letter-spacing: .12em;
			text-transform: uppercase;
			color: #0369a1;
			margin-bottom: 10px;
		}
		.fct-sp-chapter-title {
			font-size: 26px;
			line-height: 1.08;
			font-weight: 900;
			margin: 0 0 12px;
			letter-spacing: -.03em;
			color: #0f172a;
		}
		.fct-sp-chapter-dt {
			font-size: 14px;
			font-weight: 700;
			color: #475569;
			margin-bottom: 10px;
		}
		.fct-sp-chapter-count {
			font-size: 12px;
			font-weight: 800;
			color: #64748b;
			margin-bottom: 14px;
			text-transform: uppercase;
			letter-spacing: .06em;
		}
		.fct-sp-ticket-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			background: #a6c5e7;
			color: #0f172a;
			padding: 12px 24px;
			border-radius: 999px;
			font-weight: 800;
			font-size: 14px;
			box-shadow: 0 6px 16px rgba(166, 197, 231, 0.35);
		}
		.fct-sp-ticket-btn:hover {
			color: #0f172a;
			transform: translateY(-1px);
		}
		.fct-sp-ticket-btn-chapter {
			width: 100%;
		}

		.fct-sp-lineup-grid {
        	display: grid;
        	grid-template-columns: repeat(1, minmax(0, 1fr));
        	gap: 16px;
        	align-items: stretch;
        }
        
        .fct-sp-lineup-card {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 18px;
            background: #fff;
            border-radius: 22px;
            border: 1px solid #e5edf6;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
            text-decoration: none;
            color: inherit;
            position: relative;
            overflow: hidden;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
            align-self: stretch;
            /* Changed from fixed height to min-height so the card can grow if tags wrap
            min-height: 196px;  */
            height: auto;
        }
        
        .fct-sp-lineup-card.is-clickable:hover {
        	transform: translateY(-4px);
        	box-shadow: 0 14px 28px rgba(166, 197, 231, 0.2);
        	border-color: #a6c5e7;
        }
        
        .fct-sp-lineup-card.is-clickable::after {
        	content: '';
        	position: absolute;
        	right: -26px;
        	top: -26px;
        	width: 120px;
        	height: 120px;
        	background: radial-gradient(circle, rgba(166, 197, 231, 0.18) 0%, transparent 70%);
        	opacity: 0;
        	transition: opacity .25s ease;
        }
        
        .fct-sp-lineup-card.is-clickable:hover::after {
        	opacity: 1;
        }
        
        .fct-sp-lineup-card.is-exhibition {
        	background: linear-gradient(180deg, #fffaf5 0%, #fff7ed 100%);
        	border-color: #fed7aa;
        }
        
        .fct-sp-lineup-num {
        	font-size: 24px;
        	font-weight: 900;
        	color: #cbd5e1;
        	width: 24px;
        	flex-shrink: 0;
        	text-align: center;
        	align-self: flex-start;
        }
        
        .fct-sp-lineup-poster-wrap {
        	width: 86px;
        	height: 122px;
        	flex-shrink: 0;
        	border-radius: 14px;
        	overflow: hidden;
        	background: #f8fafc;
        	border: 1px solid #e2e8f0;
        	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
        	align-self: flex-start;
        }
        
        .fct-sp-lineup-poster-wrap .fct-sp-poster-img {
        	width: 100%;
        	height: 100%;
        	object-fit: cover;
        	display: block;
        }
        
        .fct-sp-lineup-info {
        	flex: 1;
        	min-width: 0;
        	align-self: stretch;
        	display: flex;
        	flex-direction: column;
        }
        
        .fct-sp-lineup-badge-row {
        	margin-bottom: 8px;
        }
        
        .fct-sp-lineup-title {
        	font-size: 20px;
        	font-weight: 850;
        	line-height: 1.18;
        	color: #0f172a;
        	margin-bottom: 6px;
        	display: -webkit-box;
        	/*min-height: 47px;*/
        }
        
        .fct-sp-lineup-maker {
        	font-size: 14px;
        	font-weight: 600;
        	color: #64748b;
        	margin-bottom: 8px;
        	white-space: nowrap;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	min-height: 20px;
        }
        
        .fct-sp-lineup-tags {
            display: flex;
            flex-wrap: wrap; /* Allows tags to flow to a second line instead of cutting off */
            gap: 8px;
            align-items: center;
            margin-top: auto;
        }
        
        .fct-sp-tag,
        .fct-sp-tag-time,
        .fct-sp-tag-exhibition {
            display: inline-flex;
            align-items: center;
            padding: 5px 10px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 800;
            max-width: 100%;
            line-height: 1.3;
            text-align: center;
            /* Removed white-space: nowrap and overflow: hidden so text can wrap inside the pill */
        }
        
        .fct-sp-lineup-tags .fct-sp-tag {
            /* Changed from flex: 1 1 auto; so it sizes naturally around the text */
            flex: 0 1 auto; 
            min-width: 0;
        }
        
        .fct-sp-lineup-tags .fct-sp-tag-time,
        .fct-sp-lineup-tags .fct-sp-tag-exhibition {
        	flex: 0 0 auto;
        }
        
        .fct-sp-tag {
        	background: #eff6ff;
        	color: #1d4ed8;
        }
        
        .fct-sp-tag-time {
        	background: #fff;
        	border: 1px solid #e2e8f0;
        	color: #475569;
        }
        
        .fct-sp-tag-exhibition {
        	background: #fff1e6;
        	border: 1px solid #fdba74;
        	color: #c2410c;
        	text-transform: uppercase;
        	letter-spacing: .05em;
        }
        
        .fct-sp-lineup-action {
        	padding-left: 6px;
        	flex-shrink: 0;
        	align-self: stretch;
        	display: flex;
        	align-items: flex-end;
        }
        
        .fct-sp-action-pill {
        	display: inline-flex;
        	align-items: center;
        	justify-content: center;
        	background: #f8fafc;
        	color: #0f172a;
        	padding: 8px 14px;
        	border-radius: 999px;
        	font-size: 13px;
        	font-weight: 800;
        }
        
        .fct-sp-lineup-card.is-clickable:hover .fct-sp-action-pill {
        	background: #0f172a;
        	color: #fff;
        }

		/* Badge */
		.fct-sp-badge-card {
			margin: 14px 0 18px;
			padding: 14px 16px;
			border-radius: 16px;
			border: 1px solid #dbeafe;
			background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 32%), linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
			box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
			font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
		}
		.fct-sp-badge-topline {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			font-size: 11px;
			font-weight: 800;
			letter-spacing: 0.08em;
			text-transform: uppercase;
			color: #0369a1;
			background: rgba(255, 255, 255, 0.75);
			border: 1px solid #cfe7ff;
			border-radius: 999px;
			padding: 5px 10px;
			margin-bottom: 10px;
		}
		.fct-sp-badge-main {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			gap: 14px;
			flex-wrap: wrap;
		}
		.fct-sp-badge-main-left {
			display: flex;
			align-items: flex-start;
			gap: 12px;
			min-width: 0;
			flex: 1;
		}
		.fct-sp-badge-icon {
			width: 42px;
			height: 42px;
			border-radius: 12px;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			font-size: 18px;
			background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
			color: #fff;
			box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
			flex-shrink: 0;
		}
		.fct-sp-badge-text { min-width: 0; }
		.fct-sp-badge-title {
			font-size: 18px;
			font-weight: 900;
			line-height: 1.2;
			color: #0f172a;
			margin: 0 0 6px;
			word-break: break-word;
		}
		.fct-sp-badge-sub {
			font-size: 13px;
			color: #64748b;
			line-height: 1.45;
			display: flex;
			flex-wrap: wrap;
			gap: 8px;
			align-items: center;
		}
		.fct-sp-badge-date-pill {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			background: #ffffff;
			border: 1px solid #dbeafe;
			color: #334155;
			border-radius: 999px;
			padding: 6px 10px;
			font-size: 12px;
			font-weight: 700;
		}
		.fct-sp-badge-ticket {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			padding: 10px 16px;
			border-radius: 12px;
			background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
			color: #fff !important;
			font-size: 13px;
			font-weight: 800;
			white-space: nowrap;
			box-shadow: 0 10px 22px rgba(234, 88, 12, 0.20);
		}

		/* Responsive */
		@media (max-width: 1024px) {
			.fct-sp-program-chapter {
				grid-template-columns: 1fr;
			}
			.fct-sp-chapter-side {
				position: static;
			}
			.fct-sp-lineup-grid {
				grid-template-columns: 1fr;
			}
			.fct-sp-lineup-card {
            	height: auto;
            }
		}
		@media (max-width: 700px) {
			.fct-sp-event-hero {
				padding: 20px 18px;
				border-radius: 22px;
				flex-direction: column;
				align-items: flex-start;
			}
			.fct-sp-event-title {
				font-size: 28px;
			}
			.fct-sp-lineup-card {
				padding: 14px;
				gap: 14px;
				border-radius: 18px;
			}
			.fct-sp-lineup-num {
				font-size: 18px;
				width: 18px;
			}
			.fct-sp-lineup-poster-wrap {
				width: 70px;
				height: 100px;
				border-radius: 12px;
			}
			.fct-sp-lineup-title {
				font-size: 17px;
			}
			.fct-sp-lineup-maker {
				font-size: 13px;
			}
			.fct-sp-lineup-action {
				display: none;
			}
			.fct-sp-badge-main {
				flex-direction: column;
				align-items: stretch;
			}
			.fct-sp-badge-ticket {
				width: 100%;
			}
		}
			
		.fct-sp-custom-film-form {
        	padding: 14px;
        	background: linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%);
        	border-bottom: 1px solid #bae6fd;
        	display: flex;
        	flex-direction: column;
        	gap: 12px;
        }
        
        .fct-sp-custom-film-form-title {
        	font-size: 13px;
        	font-weight: 900;
        	color: #1e40af;
        	letter-spacing: .02em;
        }
        
        .fct-sp-custom-film-grid {
        	display: grid;
        	grid-template-columns: repeat(2, minmax(0, 1fr));
        	gap: 10px 12px;
        }
        
        .fct-sp-field-group-wide {
        	grid-column: 1 / -1;
        }
        
        .fct-sp-custom-film-form .fct-sp-field-input {
        	background: #fff;
        	border-color: #cfe0f5;
        	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
        }
        
        .fct-sp-custom-film-form .fct-sp-field-input:focus {
        	border-color: #3b82f6;
        	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.10);
        }
        
        @media (max-width: 640px) {
        	.fct-sp-custom-film-grid {
        		grid-template-columns: 1fr;
        	}
        
        	.fct-sp-field-group-wide {
        		grid-column: auto;
        	}
        }
        
        .fct-sp-card-poster .fct-sp-poster-img,
        .fct-sp-lineup-poster-wrap .fct-sp-poster-img {
        	width: 100%;
        	height: 100%;
        	object-fit: cover;
        	display: block;
        }

/* --- Extracted from fct-screening-program.php: style block 2 --- */
.fct-sp-badge-card {
		margin: 14px 0 18px;
		padding: 16px 18px;
		border-radius: 18px;
		border: 1px solid #dbeafe;
		background:
			radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 34%),
			linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
		box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
		font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
		overflow: hidden;
	}

	.fct-sp-badge-topline {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		font-size: 11px;
		font-weight: 800;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #0369a1;
		background: rgba(255, 255, 255, 0.84);
		border: 1px solid #cfe7ff;
		border-radius: 999px;
		padding: 5px 10px;
		margin-bottom: 12px;
		max-width: 100%;
	}

	.fct-sp-badge-main {
		display: grid;
		grid-template-columns: minmax(0, 1.6fr) auto auto;
		align-items: center;
		gap: 18px;
	}

	.fct-sp-badge-main-left {
		display: flex;
		align-items: center;
		gap: 14px;
		min-width: 0;
	}

	.fct-sp-badge-icon {
		width: 46px;
		height: 46px;
		border-radius: 14px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 19px;
		background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
		color: #fff;
		box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
		flex-shrink: 0;
	}

	.fct-sp-badge-text {
		min-width: 0;
	}

	.fct-sp-badge-heading {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-wrap: wrap;
		margin: 0 0 6px;
	}

	.fct-sp-badge-block-pill {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 5px 10px;
		border-radius: 999px;
		background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
		color: #1d4ed8;
		font-size: 11px;
		font-weight: 900;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		flex-shrink: 0;
	}

	.fct-sp-badge-title {
		font-size: 20px;
		font-weight: 900;
		line-height: 1.15;
		color: #0f172a;
		margin: 0;
		word-break: break-word;
	}

	.fct-sp-badge-center {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
	}

	.fct-sp-badge-sub {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.fct-sp-badge-date-pill {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		background: #ffffff;
		border: 1px solid #dbeafe;
		color: #334155;
		border-radius: 999px;
		padding: 8px 12px;
		font-size: 12px;
		font-weight: 700;
		text-align: center;
		white-space: nowrap;
	}

	.fct-sp-badge-note {
		font-size: 13px;
		color: #64748b;
		font-weight: 600;
		text-align: center;
	}

	.fct-sp-badge-ticket-wrap {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.fct-sp-badge-ticket {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 11px 18px;
		border-radius: 12px;
		background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
		color: #fff !important;
		text-decoration: none !important;
		font-size: 13px;
		font-weight: 800;
		white-space: nowrap;
		box-shadow: 0 12px 24px rgba(234, 88, 12, 0.20);
		transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
	}

	.fct-sp-badge-ticket:hover {
		transform: translateY(-1px);
		box-shadow: 0 16px 28px rgba(234, 88, 12, 0.24);
		opacity: 0.96;
	}

	@media (max-width: 820px) {
		.fct-sp-badge-main {
			grid-template-columns: 1fr;
			align-items: stretch;
			gap: 12px;
		}

		.fct-sp-badge-main-left {
			align-items: flex-start;
		}

		.fct-sp-badge-center,
		.fct-sp-badge-sub,
		.fct-sp-badge-ticket-wrap {
			justify-content: flex-start;
		}

		.fct-sp-badge-date-pill,
		.fct-sp-badge-ticket {
			width: 100%;
			justify-content: flex-start;
			box-sizing: border-box;
		}
	}

	@media (max-width: 640px) {
		.fct-sp-badge-card {
			padding: 12px;
			border-radius: 14px;
			margin: 12px 0 16px;
		}

		.fct-sp-badge-topline {
			font-size: 10px;
			padding: 4px 9px;
			margin-bottom: 10px;
		}

		.fct-sp-badge-icon {
			width: 36px;
			height: 36px;
			font-size: 16px;
			border-radius: 10px;
		}

		.fct-sp-badge-heading {
			gap: 8px;
			margin-bottom: 6px;
		}

		.fct-sp-badge-block-pill {
			font-size: 10px;
			padding: 4px 8px;
		}

		.fct-sp-badge-title {
			font-size: 16px;
			line-height: 1.22;
		}

		.fct-sp-badge-date-pill,
		.fct-sp-badge-ticket {
			font-size: 12px;
			padding: 9px 10px;
			border-radius: 10px;
		}
	}

/* --- Extracted from fct-screening-program.php: style block 3 --- */
.fct-premium-tickets-wrap {
			display: flex;
			flex-direction: column;
			gap: 20px;
			margin: 40px 0;
			font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
		}
		.fct-ticket-ribbon {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 30px;
			background: #0f172a;
			border-radius: 16px;
			padding: 25px 35px;
			border-left: 8px solid #a6c5e7;
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
		}
		.fct-tr-info { flex: 1; min-width: 0; }
		.fct-tr-dt {
			color: #a6c5e7;
			font-weight: 800;
			font-size: 13px;
			text-transform: uppercase;
			letter-spacing: 1px;
			margin-bottom: 6px;
		}
		.fct-tr-event {
			color: #cbd5e1;
			font-weight: 700;
			font-size: 12px;
			text-transform: uppercase;
			letter-spacing: .08em;
			margin-bottom: 6px;
		}
		.fct-tr-title {
			color: #ffffff;
			font-size: 26px;
			font-weight: 900;
			margin: 0 0 8px 0;
			line-height: 1.2;
		}
		.fct-tr-featuring {
			color: #94a3b8;
			font-size: 15px;
			line-height: 1.4;
			font-weight: 500;
		}
		.fct-tr-feat-label { color: #cbd5e1; font-weight: 700; }
		.fct-tr-action { flex-shrink: 0; }
		.fct-tr-btn {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			background: #a6c5e7;
			color: #0f172a;
			font-size: 16px;
			font-weight: 900;
			padding: 14px 28px;
			border-radius: 99px;
			text-decoration: none !important;
		}
		.fct-tr-btn-arrow { font-size: 20px; }
		@media (max-width: 700px) {
			.fct-ticket-ribbon {
				flex-direction: column;
				align-items: stretch;
				padding: 24px 20px;
				gap: 20px;
			}
			.fct-tr-title { font-size: 22px; }
			.fct-tr-action, .fct-tr-btn { width: 100%; justify-content: center; }
		}


/* --- Static style attributes extracted from fct-screening-program.php --- */
.fct-sp-u-001 { display:none; }
.fct-sp-u-002 { background: #e0f2fe; border: 1px solid #bae6fd; color: #0369a1; padding: 10px 18px; border-radius: 10px; font-size: 13px; margin-bottom: 20px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.fct-sp-u-003 { font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; font-size: 11px; }
.fct-sp-u-004 { display: flex; gap: 18px; font-weight: 600; }
.fct-sp-u-005 { font-size: 14px; }
.fct-sp-u-006 { font-size: 12px; }
.fct-sp-u-007 { margin-left: auto; font-size: 12px; font-style: italic; color: #0284c7; }
.fct-sp-u-008 { display:flex; align-items:center; gap:8px; }
.fct-sp-u-009 { object-fit:cover;width:100%;height:100%; }
.fct-sp-u-010 { background:#f8fafc; border:1px solid #a6c5e7; color:#0f172a; }
.fct-sp-u-011 { margin-left: auto; padding-right: 8px; display: flex; gap: 8px; }
.fct-sp-u-012 { cursor:pointer; font-size:16px; opacity: 0.25; }
.fct-sp-u-013 { cursor:pointer; font-size:14px; }
.fct-sp-u-014 { color:#94a3b8; }
.fct-sp-u-015 { background: #a6c5e7; padding: 12px 16px; border-radius: 9px; display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.fct-sp-u-016 { width: 20px; height: 20px; cursor: pointer; margin: 0; background: #fff; }
.fct-sp-u-017 { font-size: 14px; font-weight: 800; color: #0f172a; cursor: pointer; user-select: none; }



/* ========================================================================== 
   v42.13.59: Unified Judge Portal structure
   Regular Judge Portal and Screenplay Judge Portal now share the same shell,
   navigator, list, dashboard, form footer, modal, and button classes.
   Only the PDF frame and script poster icon need small shared additions.
   ========================================================================== */
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-cinema-content {
	max-width: var(--fct-cinema-max-width, 1360px);
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-judge-portal-shell,
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dashboard-container,
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-judge-single-view {
	color: var(--nsff-text);
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-script-poster {
	display: grid;
	place-items: center;
	min-height: 96px;
	background:
		radial-gradient(circle at 20% 10%, rgba(166,197,231,.2), transparent 42%),
		linear-gradient(145deg, rgba(166,197,231,.14), rgba(255,255,255,.04));
	color: var(--nsff-ice-2);
	font-size: 32px;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-film-card.is-disabled {
	opacity: .55;
	pointer-events: none;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-score-badge,
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 40px;
	padding: 8px 10px;
	border-radius: 999px;
	background: rgba(166, 197, 231, .14);
	border: 1px solid rgba(166, 197, 231, .24);
	color: var(--nsff-text);
	font-weight: 950;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-container {
	display: grid;
	gap: 14px;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-row {
	padding: 18px 20px;
	border: 1px solid rgba(166, 197, 231, .2);
	border-radius: 18px;
	background: rgba(8, 14, 32, .72);
	box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-rank {
	min-width: 42px;
	font-weight: 950;
	color: var(--nsff-ice-2);
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-title {
	color: var(--nsff-text);
	font-weight: 950;
	font-size: 1.05rem;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-meta,
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-feedback {
	color: var(--nsff-muted);
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-right {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-feedback {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(166, 197, 231, .14);
	line-height: 1.65;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-feedback-label {
	display: block;
	color: var(--nsff-text);
	font-weight: 900;
	margin-bottom: 6px;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-pdf-frame {
	overflow: hidden;
	min-height: 520px;
	height: min(72vh, 760px);
	margin-top: 14px;
	border: 1px solid rgba(166, 197, 231, .18);
	border-radius: 16px;
	background: rgba(255,255,255,.04);
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-pdf-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-save-status.is-warning { color: #fbbf24; }
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-save-status.is-success { color: #86efac; }
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-save-status.is-error { color: #fecaca; }
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-action-btn.is-loading {
	opacity: .7;
	pointer-events: none;
}

@media (max-width: 760px) {
	.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-main,
	.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-dash-right {
		align-items: flex-start;
		justify-content: flex-start;
		width: 100%;
		margin-left: 0;
	}

	.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-pdf-frame {
		min-height: 360px;
		height: 58vh;
	}
}


.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-sandbox-login {
	max-width: 460px;
	margin: 40px auto;
	text-align: center;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-sandbox-login .fct-sandbox-input {
	width: 100%;
	margin: 14px 0;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-sandbox-error {
	display: none;
	margin-top: 12px;
	color: #fecaca;
	font-weight: 800;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap .fct-sandbox-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

/* --- Dynamic utility classes replacing remaining inline styles v42.13.23 --- */
.fct-progress-fill,
.fct-progress-bar-fill,
.fct-staff-progress-fill {
	display:block;
	height:100%;
	background: linear-gradient(90deg, var(--nsff-ice-2), var(--nsff-blue));
	transition: width .35s ease;
}

.fct-progress-width-0 { width: 0%; }
.fct-progress-width-1 { width: 1%; }
.fct-progress-width-2 { width: 2%; }
.fct-progress-width-3 { width: 3%; }
.fct-progress-width-4 { width: 4%; }
.fct-progress-width-5 { width: 5%; }
.fct-progress-width-6 { width: 6%; }
.fct-progress-width-7 { width: 7%; }
.fct-progress-width-8 { width: 8%; }
.fct-progress-width-9 { width: 9%; }
.fct-progress-width-10 { width: 10%; }
.fct-progress-width-11 { width: 11%; }
.fct-progress-width-12 { width: 12%; }
.fct-progress-width-13 { width: 13%; }
.fct-progress-width-14 { width: 14%; }
.fct-progress-width-15 { width: 15%; }
.fct-progress-width-16 { width: 16%; }
.fct-progress-width-17 { width: 17%; }
.fct-progress-width-18 { width: 18%; }
.fct-progress-width-19 { width: 19%; }
.fct-progress-width-20 { width: 20%; }
.fct-progress-width-21 { width: 21%; }
.fct-progress-width-22 { width: 22%; }
.fct-progress-width-23 { width: 23%; }
.fct-progress-width-24 { width: 24%; }
.fct-progress-width-25 { width: 25%; }
.fct-progress-width-26 { width: 26%; }
.fct-progress-width-27 { width: 27%; }
.fct-progress-width-28 { width: 28%; }
.fct-progress-width-29 { width: 29%; }
.fct-progress-width-30 { width: 30%; }
.fct-progress-width-31 { width: 31%; }
.fct-progress-width-32 { width: 32%; }
.fct-progress-width-33 { width: 33%; }
.fct-progress-width-34 { width: 34%; }
.fct-progress-width-35 { width: 35%; }
.fct-progress-width-36 { width: 36%; }
.fct-progress-width-37 { width: 37%; }
.fct-progress-width-38 { width: 38%; }
.fct-progress-width-39 { width: 39%; }
.fct-progress-width-40 { width: 40%; }
.fct-progress-width-41 { width: 41%; }
.fct-progress-width-42 { width: 42%; }
.fct-progress-width-43 { width: 43%; }
.fct-progress-width-44 { width: 44%; }
.fct-progress-width-45 { width: 45%; }
.fct-progress-width-46 { width: 46%; }
.fct-progress-width-47 { width: 47%; }
.fct-progress-width-48 { width: 48%; }
.fct-progress-width-49 { width: 49%; }
.fct-progress-width-50 { width: 50%; }
.fct-progress-width-51 { width: 51%; }
.fct-progress-width-52 { width: 52%; }
.fct-progress-width-53 { width: 53%; }
.fct-progress-width-54 { width: 54%; }
.fct-progress-width-55 { width: 55%; }
.fct-progress-width-56 { width: 56%; }
.fct-progress-width-57 { width: 57%; }
.fct-progress-width-58 { width: 58%; }
.fct-progress-width-59 { width: 59%; }
.fct-progress-width-60 { width: 60%; }
.fct-progress-width-61 { width: 61%; }
.fct-progress-width-62 { width: 62%; }
.fct-progress-width-63 { width: 63%; }
.fct-progress-width-64 { width: 64%; }
.fct-progress-width-65 { width: 65%; }
.fct-progress-width-66 { width: 66%; }
.fct-progress-width-67 { width: 67%; }
.fct-progress-width-68 { width: 68%; }
.fct-progress-width-69 { width: 69%; }
.fct-progress-width-70 { width: 70%; }
.fct-progress-width-71 { width: 71%; }
.fct-progress-width-72 { width: 72%; }
.fct-progress-width-73 { width: 73%; }
.fct-progress-width-74 { width: 74%; }
.fct-progress-width-75 { width: 75%; }
.fct-progress-width-76 { width: 76%; }
.fct-progress-width-77 { width: 77%; }
.fct-progress-width-78 { width: 78%; }
.fct-progress-width-79 { width: 79%; }
.fct-progress-width-80 { width: 80%; }
.fct-progress-width-81 { width: 81%; }
.fct-progress-width-82 { width: 82%; }
.fct-progress-width-83 { width: 83%; }
.fct-progress-width-84 { width: 84%; }
.fct-progress-width-85 { width: 85%; }
.fct-progress-width-86 { width: 86%; }
.fct-progress-width-87 { width: 87%; }
.fct-progress-width-88 { width: 88%; }
.fct-progress-width-89 { width: 89%; }
.fct-progress-width-90 { width: 90%; }
.fct-progress-width-91 { width: 91%; }
.fct-progress-width-92 { width: 92%; }
.fct-progress-width-93 { width: 93%; }
.fct-progress-width-94 { width: 94%; }
.fct-progress-width-95 { width: 95%; }
.fct-progress-width-96 { width: 96%; }
.fct-progress-width-97 { width: 97%; }
.fct-progress-width-98 { width: 98%; }
.fct-progress-width-99 { width: 99%; }
.fct-progress-width-100 { width: 100%; }

.fct-sp-fav-btn { cursor:pointer; font-size:16px; transition:opacity .2s ease; }
.fct-sp-fav-btn.is-inactive { opacity:.25; }
.fct-sp-fav-btn.is-active { opacity:1; }
.fct-disabled-panel { opacity:.6; pointer-events:none; }
.fct-staff-poster-option { display:flex; align-items:center; gap:10px; width:100%; padding:10px 15px; border-radius:10px; border:1px solid rgba(166,211,244,.18); cursor:pointer; text-align:left; transition:.2s; background:rgba(166,211,244,.08); }
.fct-staff-poster-option.fct-staff-poster-11x17 { background:rgba(96,165,250,.12); }
.fct-staff-poster-option.fct-staff-poster-24x36 { background:rgba(16,185,129,.12); }
.fct-staff-poster-label { color:var(--nsff-text-soft); font-weight:900; font-size:14px; flex-grow:1; }
.fct-staff-poster-11x17 .fct-staff-poster-label { color:#93c5fd; }
.fct-staff-poster-24x36 .fct-staff-poster-label { color:#34d399; }
.fct-yt-facade { position:relative; overflow:hidden; background:rgba(5,8,13,.64); }
.fct-yt-thumb { display:block; width:100%; height:100%; object-fit:cover; }
.is-hidden { display:none !important; }
.is-muted { opacity:.65; }
.fct-results-candidate-row { display:flex; justify-content:space-between; align-items:flex-start; padding:10px 0; border-bottom:1px solid rgba(166,211,244,.12); }
.fct-results-candidate-row.is-dropped { opacity:.6; }
.fct-results-title.is-dropped-text { text-decoration:line-through; }
.fct-results-points { font-weight:950; color:#34d399; font-size:15px; }
.fct-results-points.is-dropped-points { color:var(--nsff-muted-2) !important; }
.fct-award-bg { position:relative; border:1px solid rgba(166,211,244,.18) !important; border-radius:var(--nsff-radius-sm) !important; padding:15px !important; background:var(--nsff-panel-bg-soft) !important; transition:all .2s ease; }
.fct-award-bg.is-clickable { cursor:pointer; }
.fct-award-bg.is-clickable:hover { transform:translateY(-2px); border-color:rgba(103,232,249,.44) !important; }
.fct-results-award-main { font-weight:900; font-size:16px; line-height:1.2; color:var(--nsff-text-soft); margin-bottom:4px; }
.fct-results-award-main.is-empty { color:#f87171 !important; }
.fct-results-drop-btn,
.fct-results-restore-btn,
.fct-results-exclusions-btn { font-size:10px !important; padding:3px 7px !important; min-height:0 !important; }
.fct-results-status-badge { display:inline-flex; align-items:center; font-size:11px; padding:2px 8px; border-radius:999px; font-weight:800; background:rgba(166,211,244,.10); border:1px solid rgba(166,211,244,.24); color:var(--nsff-ice-2); }
.fct-results-judge-card-video { margin-bottom:16px; border-top:4px solid #60a5fa !important; }
.fct-results-judge-card-script { margin-bottom:0; border-top:4px solid #a78bfa !important; }
.fct-results-card-head-flex { display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; }
.fct-results-video-dot,
.fct-results-script-dot { width:10px; height:10px; border-radius:999px; margin-top:5px; flex:0 0 auto; }
.fct-results-video-dot { background:#60a5fa; }
.fct-results-script-dot { background:#a78bfa; }
.fct-results-season-filter { display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.fct-results-season-select { min-width:130px; }
.fct-note-rev-form.is-hidden { display:none; }
tr.is-muted { opacity:.5; }


/* =========================================================
   v42.13.24 Universal Legacy Module Bridge
   Keeps older FCT modules on the same NSFF shared asset system.
   ========================================================= */

:where(
	.fct-archive-container,
	.fct-locked-archive,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) {
	color: var(--nsff-text) !important;
	font-family: inherit;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(h1, h2, h3, h4, h5, h6, strong, label, summary) {
	color: var(--nsff-text) !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(p, small, .description, .fct-muted) {
	color: var(--nsff-muted) !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) a:not(.button):not([class*="btn"]):not([class*="tab"]):not([class*="card"]) {
	color: var(--nsff-ice) !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) a:not(.button):not([class*="btn"]):not([class*="tab"]):hover {
	color: #ffffff !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(
	input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
	select,
	textarea,
	.fct-input,
	.fct-input-text,
	.fct-select,
	.fct-search-input,
	.fct-auth-input,
	.fct-modal-input,
	.fct-roster-select,
	.fct-season-select,
	.fct-sp-season-select,
	.fct-sp-field-input,
	.fct-sp-inline-edit-input,
	.fct-sp-inline-edit-select
) {
	background: rgba(5, 8, 13, .78) !important;
	border: 1px solid var(--nsff-border-strong) !important;
	color: var(--nsff-text) !important;
	box-shadow: none !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(input, textarea)::placeholder {
	color: var(--nsff-muted-2) !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(input, select, textarea):focus {
	border-color: var(--nsff-ice-2) !important;
	box-shadow: 0 0 0 4px var(--nsff-focus-ring) !important;
	outline: none !important;
}

/* Shared dark surfaces for old modules */
:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(
	.fct-panel,
	.fct-card,
	.fct-roster-card,
	.fct-modal-box,
	.fct-top13-container,
	.fct-top13-card,
	.fct-nom-section,
	.fct-nom-card,
	.fct-awards-section,
	.fct-content-warning,
	.fct-detail-panel,
	.fct-sp-new-block-form,
	.fct-sp-pool-wrap,
	.fct-sp-block,
	.fct-sp-block-card,
	.fct-sp-film-card,
	.fct-sp-exhibition-card,
	.fct-sp-lineup-card,
	.fct-sp-chapter-side,
	.fct-sp-badge-card,
	.fct-sp-event-card,
	.fct-trailer-card,
	.fct-banner,
	.fct-auth-box,
	.fct-help-box,
	.fct-leaderboard,
	.fct-lb-container,
	.fct-lb-item,
	.fct-rank-card,
	.fct-cat-box,
	.fct-judge-card,
	.fct-audit-award-card,
	.fct-award-bg,
	.fct-no-scores,
	.fct-empty-state
) {
	background: var(--nsff-panel-bg) !important;
	border: 1px solid var(--nsff-border) !important;
	color: var(--nsff-text) !important;
	box-shadow: var(--nsff-shadow-soft) !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(
	.fct-card:hover,
	.fct-roster-card:hover,
	.fct-top13-card:hover,
	.fct-nom-card:hover,
	.fct-archive-card:hover,
	.fct-sp-film-card:hover,
	.fct-sp-lineup-card:hover,
	.fct-trailer-card:hover,
	.fct-rank-card:hover
) {
	border-color: var(--nsff-border-strong) !important;
	box-shadow: 0 20px 42px rgba(0, 0, 0, .38) !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(
	.fct-card-title,
	.fct-nom-title,
	.fct-top13-title,
	.fct-film-title,
	.fct-film-h1,
	.fct-h2,
	.fct-roster-h2,
	.fct-roster-name,
	.fct-sp-heading,
	.fct-sp-film-title,
	.fct-sp-lineup-title,
	.fct-sp-chapter-title,
	.fct-sp-event-title,
	.fct-sp-block-name-readonly,
	.fct-trailer-meta .fct-film-title,
	.fct-lb-first-title,
	.fct-lb-item-title,
	.fct-rank-film,
	.fct-audit-film-title,
	.fct-results-title
) {
	color: var(--nsff-text) !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(
	.fct-card-meta,
	.fct-nom-credit,
	.fct-roster-role,
	.fct-sp-film-team,
	.fct-sp-lineup-maker,
	.fct-sp-chapter-dt,
	.fct-sp-chapter-count,
	.fct-sp-event-desc,
	.fct-sp-pool-hint,
	.fct-trailer-meta,
	.fct-film-team,
	.fct-lb-item-team,
	.fct-rank-team,
	.fct-audit-team-line,
	.fct-judge-card-email
) {
	color: var(--nsff-muted) !important;
}

/* Film archive and public lineup readability */
.fct-archive-container {
	width: min(var(--fct-shared-content-width), calc(100vw - 56px)) !important;
	max-width: var(--fct-shared-content-width) !important;
}

.fct-archive-header,
.fct-roster-header,
.fct-sp-header,
.fct-dash-header {
	background: rgba(13, 21, 34, .76) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
	padding: 18px 22px !important;
	box-shadow: var(--nsff-shadow-soft) !important;
}

.fct-top13-container {
	background:
		radial-gradient(circle at top center, rgba(166, 197, 231, .16), transparent 32%),
		linear-gradient(180deg, rgba(13, 21, 34, .96), rgba(8, 13, 20, .98)) !important;
}

.fct-top13-container::before {
	background: linear-gradient(90deg, transparent, var(--nsff-ice-2), transparent) !important;
}

.fct-nom-section:not(.fct-top13-container) {
	padding: 26px !important;
	border-radius: var(--nsff-radius) !important;
}

.fct-nom-header {
	border-left-color: var(--nsff-ice-2) !important;
	color: var(--nsff-text) !important;
}

.fct-card-image-wrap,
.fct-top13-poster,
.fct-nom-poster,
.fct-sp-poster-placeholder,
.fct-sp-card-poster,
.fct-sp-lineup-poster-wrap,
.fct-thumb-wrap {
	background: rgba(5, 8, 13, .66) !important;
	border: 1px solid var(--nsff-border-soft) !important;
}

.fct-season-badge,
.fct-team-number-overlay,
.fct-card-badge,
.fct-nom-badge,
.fct-top13-badge,
.fct-rank-badge,
.fct-score-badge,
.fct-card-status,
.fct-status-pill,
.fct-results-status-badge,
.fct-roster-u-010,
.fct-roster-u-011 {
	background: rgba(166, 197, 231, .16) !important;
	border: 1px solid var(--nsff-border-strong) !important;
	color: var(--nsff-text) !important;
}

.fct-nominee-tag,
.fct-sp-tag,
.fct-sp-genre-pill,
.fct-sp-tag-time,
.fct-sp-tag-exhibition,
.fct-lb-heading-badge,
.fct-thumb-label,
.fct-team-number,
.fct-cat-label,
.fct-dash-tab,
.fct-view-tab,
.fct-staff-tab {
	background: rgba(166, 197, 231, .10) !important;
	border: 1px solid var(--nsff-border) !important;
	color: var(--nsff-text-soft) !important;
}

.fct-view-tab.active,
.fct-staff-tab.is-active,
.fct-dash-tab.active {
	background: rgba(166, 197, 231, .22) !important;
	border-color: var(--nsff-border-strong) !important;
	color: #ffffff !important;
}

/* Screening Program Builder */
.fct-sp-wrap,
.fct-sp-public-wrap {
	width: min(var(--fct-shared-content-width), calc(100vw - 56px)) !important;
	max-width: var(--fct-shared-content-width) !important;
}

.fct-sp-admin-legend {
	background: rgba(215, 236, 251, .92) !important;
	border: 1px solid rgba(215, 236, 251, .72) !important;
	color: #07324e !important;
	box-shadow: none !important;
}

.fct-sp-admin-legend strong,
.fct-sp-admin-legend span,
.fct-sp-admin-legend div {
	color: #07324e !important;
}

.fct-sp-pool-wrap,
.fct-sp-block {
	overflow: hidden;
}

.fct-sp-pool-header,
.fct-sp-block-top-bar,
.fct-sp-block-header {
	background: rgba(5, 8, 13, .54) !important;
	border-color: var(--nsff-border-soft) !important;
}

.fct-sp-film-card,
.fct-sp-lineup-card {
	background: rgba(13, 21, 34, .88) !important;
	border-color: var(--nsff-border-soft) !important;
}

.fct-sp-film-pos,
.fct-sp-lineup-num {
	background: rgba(166, 197, 231, .12) !important;
	color: var(--nsff-text-soft) !important;
}

.fct-sp-block[data-event-key="best_of_fest"] .fct-sp-star-btn,
.fct-sp-pool .fct-sp-star-btn,
.fct-sp-pool .fct-sp-remove-btn {
	display: none !important;
}

.fct-sp-remove-btn {
	display: none;
}

.fct-sp-block[data-event-key="best_of_fest"] .fct-sp-remove-btn {
	display: inline-block !important;
}

.fct-sp-action-pill,
.fct-sp-ticket-btn,
.fct-tr-btn,
.fct-ticket-ribbon {
	background: rgba(166, 197, 231, .18) !important;
	border: 1px solid var(--nsff-border-strong) !important;
	color: var(--nsff-text) !important;
}

.fct-sp-lineup-card.is-exhibition,
.fct-sp-exhibition-card {
	background:
		radial-gradient(circle at top left, rgba(245, 158, 11, .12), transparent 28%),
		var(--nsff-panel-bg) !important;
	border-color: rgba(245, 158, 11, .32) !important;
}

/* Buttons */
:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(
	.fct-btn,
	button.fct-btn,
	a.fct-btn,
	input[type="submit"].fct-btn,
	.fct-btn-primary,
	.fct-btn-secondary,
	.fct-btn-danger
) {
	background: rgba(166, 197, 231, .12) !important;
	border: 1px solid var(--nsff-border-strong) !important;
	border-radius: var(--nsff-radius-sm) !important;
	color: var(--nsff-text) !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(
	.fct-btn,
	button.fct-btn,
	a.fct-btn,
	input[type="submit"].fct-btn,
	.fct-btn-primary,
	.fct-btn-secondary,
	.fct-btn-danger
):hover {
	background: rgba(166, 197, 231, .20) !important;
	border-color: rgba(215, 236, 251, .52) !important;
	color: #ffffff !important;
	transform: translateY(-1px);
}

/* Tables and result dashboards */
:where(.fct-portal.fct-results-page, .fct-staff-wrap, .fct-portal-wrapper) :where(table, .fct-score-table, .fct-total-table) {
	background: rgba(13, 21, 34, .80) !important;
	border-color: var(--nsff-border) !important;
	color: var(--nsff-text) !important;
}

:where(.fct-portal.fct-results-page, .fct-staff-wrap, .fct-portal-wrapper) :where(th) {
	background: rgba(5, 8, 13, .72) !important;
	border-color: var(--nsff-border-soft) !important;
	color: var(--nsff-text-soft) !important;
}

:where(.fct-portal.fct-results-page, .fct-staff-wrap, .fct-portal-wrapper) :where(td) {
	background: rgba(13, 21, 34, .54) !important;
	border-color: var(--nsff-border-soft) !important;
	color: var(--nsff-text) !important;
}

.fct-score-table-wrap,
.fct-table-responsive,
.fct-total-table-wrap {
	background: rgba(5, 8, 13, .38) !important;
	border: 1px solid var(--nsff-border) !important;
	border-radius: var(--nsff-radius) !important;
}

/* Light notices that intentionally stay readable */
:where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery
) :where(.notice, .updated, .error, .fct-sender-notice) {
	background: rgba(13, 21, 34, .92) !important;
	border-color: var(--nsff-border-strong) !important;
	color: var(--nsff-text) !important;
}

@media (max-width: 900px) {
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-portal-wrapper,
	.fct-portal.fct-results-page,
	.fct-staff-wrap,
	.fct-trailer-gallery {
		width: min(100%, calc(100vw - 28px)) !important;
	}

	.fct-sp-program-chapter,
	.fct-film-layout,
	.fct-nominations-layout {
		grid-template-columns: 1fr !important;
	}

	.fct-sp-chapter-side {
		position: relative !important;
		top: auto !important;
	}
}

/* v42.13.25: universal seamless wrappers for older FCT modules */
.fct-seamless-cinematic.fct-module-shell {
	isolation: isolate;
	min-height: 100%;
	padding-top: 44px;
	padding-bottom: 72px;
}

.fct-seamless-cinematic.fct-module-shell > .fct-archive-container,
.fct-seamless-cinematic.fct-module-shell > .fct-sp-wrap,
.fct-seamless-cinematic.fct-module-shell > .fct-sp-public-wrap,
.fct-seamless-cinematic.fct-module-shell > .fct-public-roster-wrap,
.fct-seamless-cinematic.fct-module-shell > .fct-staff-wrap,
.fct-seamless-cinematic.fct-module-shell > .fct-trailer-gallery,
.fct-seamless-cinematic.fct-module-shell > .fct-portal,
.fct-seamless-cinematic.fct-module-shell > .fct-portal-wrapper,
.fct-seamless-cinematic.fct-module-shell > .fct-results-page {
	width: min(var(--fct-shared-content-width, 1180px), calc(100vw - 56px));
	max-width: var(--fct-shared-content-width, 1180px);
	margin-left: auto;
	margin-right: auto;
}

.fct-seamless-cinematic.fct-module-shell .fct-manager-bar,
.fct-seamless-cinematic.fct-module-shell .fct-sp-admin-legend,
.fct-seamless-cinematic.fct-module-shell .fct-roster-header,
.fct-seamless-cinematic.fct-module-shell .fct-staff-nav,
.fct-seamless-cinematic.fct-module-shell .fct-dash-header,
.fct-seamless-cinematic.fct-module-shell .fct-view-tabs,
.fct-seamless-cinematic.fct-module-shell .fct-integrated-nav {
	border-color: var(--nsff-border) !important;
}

.fct-seamless-cinematic.fct-module-shell .fct-card,
.fct-seamless-cinematic.fct-module-shell .fct-panel,
.fct-seamless-cinematic.fct-module-shell .fct-section,
.fct-seamless-cinematic.fct-module-shell .fct-roster-card,
.fct-seamless-cinematic.fct-module-shell .fct-trailer-card,
.fct-seamless-cinematic.fct-module-shell .fct-sp-event-stage,
.fct-seamless-cinematic.fct-module-shell .fct-sp-block,
.fct-seamless-cinematic.fct-module-shell .fct-sp-pool-wrap,
.fct-seamless-cinematic.fct-module-shell .fct-archive-card,
.fct-seamless-cinematic.fct-module-shell .fct-award-bg {
	background-color: var(--nsff-surface) !important;
	border-color: var(--nsff-border) !important;
	color: var(--nsff-text) !important;
}

/* v42.13.25: keep modules that use the seamless class on their main wrapper from stretching full browser width. */
.fct-seamless-cinematic.fct-module-shell.fct-public-roster-wrap,
.fct-seamless-cinematic.fct-module-shell.fct-sp-wrap,
.fct-seamless-cinematic.fct-module-shell.fct-sp-public-wrap,
.fct-seamless-cinematic.fct-module-shell.fct-portal-wrapper,
.fct-seamless-cinematic.fct-module-shell.fct-staff-wrap,
.fct-seamless-cinematic.fct-module-shell.fct-trailer-gallery,
.fct-seamless-cinematic.fct-module-shell.fct-results-page,
.fct-seamless-cinematic.fct-module-shell.fct-portal,
.fct-seamless-cinematic.fct-module-shell.fct-integrated-nav,
.fct-seamless-cinematic.fct-module-shell.fct-staff-u-105 {
	width: min(var(--fct-shared-content-width, 1360px), calc(100vw - 56px)) !important;
	max-width: var(--fct-shared-content-width, 1360px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	background: transparent !important;
}

@media (max-width: 720px) {
	.fct-seamless-cinematic.fct-module-shell.fct-public-roster-wrap,
	.fct-seamless-cinematic.fct-module-shell.fct-sp-wrap,
	.fct-seamless-cinematic.fct-module-shell.fct-sp-public-wrap,
	.fct-seamless-cinematic.fct-module-shell.fct-portal-wrapper,
	.fct-seamless-cinematic.fct-module-shell.fct-staff-wrap,
	.fct-seamless-cinematic.fct-module-shell.fct-trailer-gallery,
	.fct-seamless-cinematic.fct-module-shell.fct-results-page,
	.fct-seamless-cinematic.fct-module-shell.fct-portal,
	.fct-seamless-cinematic.fct-module-shell.fct-integrated-nav,
		.fct-seamless-cinematic.fct-module-shell.fct-staff-u-105 {
		width: min(100%, calc(100vw - 28px)) !important;
	}
}

/* v42.13.28: exact seamless cinematic container alignment for legacy/public modules
   This makes the older modules use the same full-bleed outer shell and centered content rhythm as the team portal, judge portal, and public filmmaker directory. */
.fct-seamless-cinematic.fct-module-shell {
	--fct-module-page-gutter: 48px;
	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 7vw, 104px) !important;
	background: var(--nsff-bg) !important;
	color: var(--nsff-text) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	box-sizing: border-box !important;
	overflow-x: clip;
}

.fct-seamless-cinematic.fct-module-shell *,
.fct-seamless-cinematic.fct-module-shell *::before,
.fct-seamless-cinematic.fct-module-shell *::after {
	box-sizing: border-box;
}

/* Match the public directory/team portal content width and side padding. */
.fct-seamless-cinematic.fct-module-shell > :where(div, section, header, nav, form, table, ul, ol, p, h1, h2, h3):not(script):not(style):not(.fct-modal-overlay):not(.fct-lightbox):not(.fct-lightbox-box):not(.fct-video-modal):not(.fct-video-backdrop):not(.fct-custom-modal-backdrop):not(.fct-details-modal-overlay):not(.fct-howto-backdrop) {
	width: min(var(--fct-shared-content-width, 1180px), calc(100vw - var(--fct-module-page-gutter))) !important;
	max-width: var(--fct-shared-content-width, 1360px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* If a module later adds a formal content section, keep it identical to the directory container. */
.fct-seamless-cinematic.fct-module-shell > .fct-cinema-content,
.fct-seamless-cinematic.fct-module-shell .fct-module-content {
	width: min(var(--fct-shared-content-width, 1180px), calc(100vw - var(--fct-module-page-gutter))) !important;
	max-width: var(--fct-shared-content-width, 1360px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 0 !important;
}

/* Keep the actual module wrappers transparent, so cards/panels carry the cinematic surface. */
.fct-seamless-cinematic.fct-module-shell.fct-public-roster-wrap,
.fct-seamless-cinematic.fct-module-shell.fct-sp-wrap,
.fct-seamless-cinematic.fct-module-shell.fct-sp-public-wrap,
.fct-seamless-cinematic.fct-module-shell.fct-portal-wrapper,
.fct-seamless-cinematic.fct-module-shell.fct-staff-wrap,
.fct-seamless-cinematic.fct-module-shell.fct-trailer-gallery,
.fct-seamless-cinematic.fct-module-shell.fct-results-page,
.fct-seamless-cinematic.fct-module-shell.fct-portal,
.fct-seamless-cinematic.fct-module-shell.fct-integrated-nav,
.fct-seamless-cinematic.fct-module-shell.fct-staff-u-105,
.fct-seamless-cinematic.fct-module-shell.fct-film-archive-shell {
	background: var(--nsff-bg) !important;
}

/* Shared cinematic panels/cards, matching filmmaker directory color and padding. */
.fct-seamless-cinematic.fct-module-shell :where(
	.fct-panel,
	.fct-card,
	.fct-section,
	.fct-archive-card,
	.fct-top13-container,
	.fct-nom-section,
	.fct-awards-section,
	.fct-text-block,
	.fct-content-warning,
	.fct-details-grid,
	.fct-roster-card,
	.fct-sp-header,
	.fct-sp-admin-legend,
	.fct-sp-new-block-form,
	.fct-sp-pool-wrap,
	.fct-sp-block,
	.fct-sp-event-stage,
	.fct-sp-event-hero,
	.fct-sp-program-chapter,
	.fct-sp-lineup-card,
	.fct-dash-container,
	.fct-count-box,
	.fct-item-card,
	.fct-staff-nav,
	.fct-trailer-card,
	.fct-leaderboard,
	.fct-auth-box,
	.fct-banner,
	.fct-award-bg,
	.fct-rank-card,
	.fct-cat-box,
	.fct-judge-card,
	.fct-audit-wrap,
	.fct-detail-panel
) {
	background: linear-gradient(180deg, rgba(13, 21, 34, .98), rgba(8, 13, 20, .98)) !important;
	border: 1px solid rgba(166, 197, 231, .18) !important;
	border-radius: var(--nsff-radius, 16px) !important;
	box-shadow: var(--nsff-shadow-soft, 0 14px 34px rgba(0,0,0,.28)) !important;
	color: var(--nsff-text) !important;
}

.fct-seamless-cinematic.fct-module-shell :where(.fct-panel, .fct-card, .fct-section, .fct-award-bg, .fct-detail-panel) {
	padding: clamp(20px, 3vw, 34px) !important;
}

/* Restore readable text in areas that used to be white-background modules. */
.fct-seamless-cinematic.fct-module-shell :where(h1, h2, h3, h4, h5, h6, strong, label, th, .fct-h2, .fct-film-h1, .fct-sp-heading, .fct-sp-event-title, .fct-sp-chapter-title, .fct-card-title, .fct-nom-title, .fct-top13-rank-banner, .fct-roster-h2, .fct-roster-name, .fct-title, .fct-dash-title, .fct-film-title, .fct-results-title) {
	color: var(--nsff-text) !important;
}

.fct-seamless-cinematic.fct-module-shell :where(p, span, div, td, li, small, em, .fct-muted, .fct-card-meta, .fct-roster-role, .fct-sp-event-desc, .fct-sp-film-team, .fct-sp-lineup-maker, .fct-help-text, .fct-logline, .fct-val, .fct-detail-item) {
	border-color: rgba(166, 197, 231, .14);
}

.fct-seamless-cinematic.fct-module-shell :where(.fct-muted, .fct-card-meta, .fct-roster-role, .fct-sp-film-team, .fct-sp-lineup-maker, .fct-help-text, .fct-logline, .fct-locked-desc, .fct-dash-meta, .fct-film-team, .fct-rank-team, .fct-judge-card-email) {
	color: var(--nsff-muted) !important;
}

/* Universal form controls for all shared-module pages. */
.fct-seamless-cinematic.fct-module-shell :where(input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="datetime-local"], select, textarea, .fct-input, .fct-modal-input, .fct-sp-field-input, .fct-auth-input, .fct-search-input) {
	background: rgba(8, 13, 20, .96) !important;
	border: 1px solid rgba(166, 197, 231, .24) !important;
	border-radius: 12px !important;
	color: var(--nsff-text) !important;
	box-shadow: none !important;
	min-height: 44px;
}

.fct-seamless-cinematic.fct-module-shell :where(input, select, textarea)::placeholder {
	color: rgba(203, 213, 225, .68) !important;
}

.fct-seamless-cinematic.fct-module-shell :where(input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="datetime-local"], select, textarea, .fct-input, .fct-modal-input, .fct-sp-field-input, .fct-auth-input, .fct-search-input):focus {
	border-color: rgba(166, 197, 231, .58) !important;
	box-shadow: 0 0 0 3px rgba(166, 197, 231, .14) !important;
	outline: none !important;
}

.fct-seamless-cinematic.fct-module-shell select option {
	background: var(--nsff-bg-soft) !important;
	color: var(--nsff-text) !important;
}

/* Buttons and tab rhythm should follow the same directory/team portal theme. */
.fct-seamless-cinematic.fct-module-shell :where(.fct-btn, .fct-btn-primary, .fct-btn-secondary, .fct-btn-danger, button.fct-btn, a.fct-btn) {
	border-radius: 12px !important;
	font-weight: 850 !important;
	letter-spacing: .01em;
}

.fct-seamless-cinematic.fct-module-shell :where(.fct-btn, .fct-btn-primary, button.fct-btn, a.fct-btn) {
	background: rgba(166, 197, 231, .16) !important;
	border: 1px solid rgba(166, 197, 231, .34) !important;
	color: var(--nsff-text) !important;
}

/* Fix public filmmaker directory search overlap by removing the absolute label collision. */
.fct-seamless-cinematic .fct-directory-toolbar {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 12px !important;
}

.fct-seamless-cinematic .fct-directory-toolbar::before {
	position: static !important;
	inset: auto !important;
	transform: none !important;
	flex: 0 0 auto !important;
	margin: 0 4px 0 8px !important;
	white-space: nowrap !important;
	line-height: 1 !important;
}

.fct-seamless-cinematic .fct-directory-search {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	width: 100% !important;
	padding-left: 18px !important;
	padding-right: 18px !important;
}

@media (max-width: 720px) {
	.fct-seamless-cinematic.fct-module-shell {
		--fct-module-page-gutter: 28px;
		padding-top: 34px !important;
		padding-bottom: 70px !important;
	}

	.fct-seamless-cinematic .fct-directory-toolbar {
		display: block !important;
	}

	.fct-seamless-cinematic .fct-directory-toolbar::before {
		display: block !important;
		margin: 0 0 8px 2px !important;
	}

	.fct-seamless-cinematic .fct-directory-search {
		min-height: 50px !important;
		padding-left: 16px !important;
	}
}



/* v42.13.28: universal cinematic shell for older FCT modules using the exact public directory structure. */
.fct-directory.fct-seamless-cinematic[data-fct-module] {
	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: 0 !important;
	background: var(--nsff-bg) !important;
	color: var(--nsff-text) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	overflow-x: clip;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero {
	margin-top: 0 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-content {
	width: min(var(--fct-shared-content-width, 1360px), calc(100vw - 56px)) !important;
	max-width: var(--fct-shared-content-width, 1360px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-top: 58px !important;
	padding-bottom: 78px !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-content > :first-child {
	margin-top: 0 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(
	.fct-panel,
	.fct-card,
	.fct-section,
	.fct-archive-card,
	.fct-top13-container,
	.fct-nom-section,
	.fct-awards-section,
	.fct-text-block,
	.fct-content-warning,
	.fct-details-grid,
	.fct-roster-card,
	.fct-sp-header,
	.fct-sp-admin-legend,
	.fct-sp-new-block-form,
	.fct-sp-pool-wrap,
	.fct-sp-block,
	.fct-sp-event-stage,
	.fct-sp-event-hero,
	.fct-sp-program-chapter,
	.fct-sp-lineup-card,
	.fct-dash-container,
	.fct-count-box,
	.fct-item-card,
	.fct-staff-nav,
	.fct-trailer-card,
	.fct-leaderboard,
	.fct-auth-box,
	.fct-banner,
	.fct-award-bg,
	.fct-rank-card,
	.fct-cat-box,
	.fct-judge-card,
	.fct-audit-wrap,
	.fct-detail-panel
) {
	background: linear-gradient(180deg, rgba(13, 21, 34, .98), rgba(8, 13, 20, .98)) !important;
	border: 1px solid rgba(166, 197, 231, .18) !important;
	border-radius: var(--nsff-radius, 16px) !important;
	box-shadow: var(--nsff-shadow-soft, 0 14px 34px rgba(0,0,0,.28)) !important;
	color: var(--nsff-text) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(.fct-panel, .fct-card, .fct-section, .fct-award-bg, .fct-detail-panel) {
	padding: clamp(20px, 3vw, 34px) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(h1, h2, h3, h4, h5, h6, strong, label, th, .fct-h2, .fct-film-h1, .fct-sp-heading, .fct-sp-event-title, .fct-card-title, .fct-nom-title, .fct-roster-h2, .fct-roster-name, .fct-title, .fct-dash-title, .fct-film-title, .fct-results-title) {
	color: var(--nsff-text) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(.fct-muted, .fct-card-meta, .fct-roster-role, .fct-sp-film-team, .fct-sp-lineup-maker, .fct-help-text, .fct-logline, .fct-locked-desc, .fct-dash-meta, .fct-film-team, .fct-rank-team, .fct-judge-card-email) {
	color: var(--nsff-muted) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="datetime-local"], select, textarea, .fct-input, .fct-modal-input, .fct-sp-field-input, .fct-auth-input, .fct-search-input) {
	background: rgba(8, 13, 20, .96) !important;
	border: 1px solid rgba(166, 197, 231, .24) !important;
	border-radius: 12px !important;
	color: var(--nsff-text) !important;
	box-shadow: none !important;
	min-height: 44px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(input, select, textarea)::placeholder {
	color: rgba(203, 213, 225, .68) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="datetime-local"], select, textarea, .fct-input, .fct-modal-input, .fct-sp-field-input, .fct-auth-input, .fct-search-input):focus {
	border-color: rgba(166, 197, 231, .58) !important;
	box-shadow: 0 0 0 3px rgba(166, 197, 231, .14) !important;
	outline: none !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] select option {
	background: var(--nsff-bg-soft) !important;
	color: var(--nsff-text) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(.fct-btn, .fct-btn-primary, .fct-btn-secondary, .fct-btn-danger, button.fct-btn, a.fct-btn) {
	border-radius: 12px !important;
	border: 1px solid rgba(166, 197, 231, .30) !important;
	background: rgba(166, 197, 231, .12) !important;
	color: var(--nsff-text) !important;
	box-shadow: none !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] :where(.fct-btn:hover, .fct-btn-primary:hover, .fct-btn-secondary:hover, .fct-btn-danger:hover, button.fct-btn:hover, a.fct-btn:hover) {
	background: rgba(166, 197, 231, .20) !important;
	border-color: rgba(166, 197, 231, .46) !important;
	color: #fff !important;
}

@media (max-width: 720px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-content {
		width: min(100%, calc(100vw - 28px)) !important;
		padding-top: 34px !important;
		padding-bottom: 70px !important;
	}
}


/* v42.13.28: make older modules use the same visible shell as fct-filmmaker-public-directory.php. */
.fct-directory.fct-seamless-cinematic[data-fct-module] {
	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: 0 !important;
	background: var(--fct-black, #05080d) !important;
	color: var(--fct-white, #f8fafc) !important;
	overflow-x: clip !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero {
	position: relative !important;
	min-height: var(--fct-shared-hero-height) !important;
	display: flex !important;
	align-items: center !important;
	overflow: hidden !important;
	background: var(--nsff-bg, #05080d) !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(255,255,255,.08) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero .fct-cinema-hero-bg {
	position: absolute !important;
	inset: 0 !important;
	background:
		linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.50), rgba(0,0,0,.90)),
		linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.82)),
		var(--nsff-hero-image, url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1800&q=80")) !important;
	background-size: cover !important;
	background-position: center !important;
	opacity: .82 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	background:
		linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255,255,255,.018) 1px, transparent 1px) !important;
	background-size: 38px 38px !important;
	opacity: .38 !important;
	pointer-events: none !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero::after {
	content: "" !important;
	position: absolute !important;
	inset: auto 0 0 0 !important;
	height: 46% !important;
	z-index: 1 !important;
	background: linear-gradient(0deg, rgba(5, 8, 13, .94), transparent) !important;
	pointer-events: none !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero .fct-cinema-hero-inner {
	position: relative !important;
	z-index: 2 !important;
	width: min(var(--fct-shared-content-width, 1360px), calc(100vw - 48px)) !important;
	max-width: var(--fct-shared-content-width, 1360px) !important;
	margin: 0 auto !important;
	padding: clamp(72px, 8vw, 118px) 0 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero .fct-cinema-copy {
	max-width: 720px !important;
	text-align: left !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero .fct-cinema-kicker {
	margin: 0 0 18px !important;
	color: var(--fct-gold, #a6c5e7) !important;
	font-size: 12px !important;
	font-weight: 950 !important;
	letter-spacing: .26em !important;
	text-transform: uppercase !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero h2 {
	margin: 0 !important;
	color: #ffffff !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(46px, 7vw, 84px) !important;
	line-height: .98 !important;
	font-weight: 900 !important;
	letter-spacing: -.045em !important;
	text-shadow: 0 14px 38px rgba(0,0,0,.62) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero p {
	max-width: 640px !important;
	margin: 22px 0 0 !important;
	color: rgba(255,255,255,.80) !important;
	font-size: clamp(15px, 1.6vw, 19px) !important;
	line-height: 1.65 !important;
	letter-spacing: .02em !important;
	font-weight: 650 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero .fct-btn {
	margin-top: 28px !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-content {
	width: min(var(--fct-shared-content-width, 1360px), calc(100vw - 48px)) !important;
	max-width: var(--fct-shared-content-width, 1360px) !important;
	margin: 0 auto !important;
	padding: 58px 0 78px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	overflow: visible !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-cinema-section-heading {
	margin: 0 0 26px !important;
	text-align: center !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-cinema-section-heading h3 {
	margin: 0 0 10px !important;
	color: #ffffff !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(32px, 4vw, 48px) !important;
	font-weight: 850 !important;
	letter-spacing: -.03em !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-cinema-section-heading p {
	margin: 0 auto !important;
	max-width: 680px !important;
	color: #a3a3a3 !important;
	font-size: 15px !important;
	line-height: 1.6 !important;
}

/* Prevent old page roots from creating a second unrelated shell inside the shared directory container. */
.fct-directory.fct-seamless-cinematic[data-fct-module] :where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-staff-wrap,
	.fct-trailer-gallery,
	.fct-results-page
) {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-archive-toolbar.fct-directory-toolbar {
	position: sticky !important;
	top: 12px !important;
	z-index: 8 !important;
	margin-bottom: 34px !important;
	padding: 12px !important;
	background: rgba(12,12,13,.92) !important;
	border: 1px solid rgba(255,255,255,.12) !important;
	border-radius: 8px !important;
	box-shadow: 0 20px 45px rgba(0,0,0,.32) !important;
	backdrop-filter: blur(10px) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-archive-toolbar.fct-directory-toolbar::before {
	content: "Season" !important;
	position: static !important;
	transform: none !important;
	flex: 0 0 auto !important;
	margin: 0 4px 0 8px !important;
	white-space: nowrap !important;
	color: var(--fct-gold-2, #d7ecfb) !important;
	font-size: 11px !important;
	font-weight: 950 !important;
	letter-spacing: .18em !important;
	text-transform: uppercase !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-archive-toolbar-label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-archive-toolbar .fct-header-left {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	margin: 0 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-archive-toolbar .fct-filter-wrap {
	margin-left: auto !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-view-tabs,
.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-directory-filter-toggle-row {
	margin: 0 0 34px !important;
	display: flex !important;
	gap: 14px !important;
	flex-wrap: wrap !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-view-tab,
.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-staff-tab,
.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-dash-tab,
.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-directory-filter-toggle,
.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-btn,
.fct-directory.fct-seamless-cinematic[data-fct-module] button,
.fct-directory.fct-seamless-cinematic[data-fct-module] .button {
	border-radius: 8px !important;
	border: 1px solid rgba(255,255,255,.14) !important;
	background: rgba(166,197,231,.10) !important;
	color: #fff !important;
	font-weight: 900 !important;
	letter-spacing: .04em !important;
	text-decoration: none !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-view-tab.active,
.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-staff-tab.is-active,
.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-dash-tab.is-active {
	background: rgba(166,197,231,.18) !important;
	border-color: rgba(166,197,231,.46) !important;
}

/* Keep the public directory search fix, but use directory's label/input rhythm. */
.fct-seamless-cinematic .fct-directory-toolbar {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 12px !important;
}

.fct-seamless-cinematic .fct-directory-toolbar::before {
	position: static !important;
	inset: auto !important;
	transform: none !important;
	flex: 0 0 auto !important;
	margin: 0 4px 0 8px !important;
	white-space: nowrap !important;
	line-height: 1 !important;
}

.fct-seamless-cinematic .fct-directory-search {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	width: 100% !important;
	padding-left: 18px !important;
	padding-right: 18px !important;
}

@media (max-width: 720px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-content {
		width: min(100%, calc(100vw - 28px)) !important;
		padding-top: 34px !important;
		padding-bottom: 70px !important;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero .fct-cinema-hero-inner {
		width: min(100%, calc(100vw - 32px)) !important;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-archive-toolbar.fct-directory-toolbar,
	.fct-seamless-cinematic .fct-directory-toolbar {
		display: block !important;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-archive-toolbar.fct-directory-toolbar::before,
	.fct-seamless-cinematic .fct-directory-toolbar::before {
		display: block !important;
		margin: 0 0 8px 2px !important;
	}
}


/* v42.13.29: exact directory shell behavior and no accidental page-wide horizontal scroll.
   The updated PHP wrappers now use the same outer markup as fct-filmmaker-public-directory.php:
   <div class="fct-directory fct-seamless-cinematic" data-fct-directory="1">.
   This block only prevents the WordPress page/body from showing a left-right scrollbar caused by full-bleed 100vw sections. */
html:has(.fct-seamless-cinematic),
body:has(.fct-seamless-cinematic) {
	overflow-x: hidden !important;
}

@supports (overflow: clip) {
	html:has(.fct-seamless-cinematic),
	body:has(.fct-seamless-cinematic) {
		overflow-x: clip !important;
	}
}

.fct-directory.fct-seamless-cinematic,
.fct-seamless-cinematic {
	overflow-x: hidden !important;
}

@supports (overflow: clip) {
	.fct-directory.fct-seamless-cinematic,
	.fct-seamless-cinematic {
		overflow-x: clip !important;
	}
}

/* Keep older module roots from becoming a second page shell inside the directory content area. */
.fct-directory.fct-seamless-cinematic :where(
	.fct-archive-container,
	.fct-public-roster-wrap,
	.fct-sp-wrap,
	.fct-sp-public-wrap,
	.fct-staff-wrap,
	.fct-trailer-gallery,
	.fct-results-page
) {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Make wide tables/carousels scroll inside their own component instead of pushing the whole page sideways. */
.fct-directory.fct-seamless-cinematic :where(
	.fct-table-responsive,
	.fct-carousel-wrapper,
	.fct-top13-carousel,
	.fct-sp-scroll,
	.fct-sp-admin-board,
	.fct-results-scroll,
	.fct-audit-scroll
) {
	max-width: 100% !important;
	overflow-x: auto !important;
}

.fct-directory.fct-seamless-cinematic :where(table, .fct-data-table) {
	max-width: 100% !important;
}


/* ========================================================================== 
   v42.13.32: small targeted refinements from v42.13.29
   - keep the same public directory shell
   - remove duplicate content titles from module wrappers via PHP
   - make the page background start from the same gradient point on every page
   - tighten archive cards so poster/title are not wrapped in extra padded panels
   ========================================================================== */
:root {
	--nsff-page-gradient-fixed:
		radial-gradient(circle at 13% 0px, rgba(103, 232, 249, .13) 0, transparent 420px),
		radial-gradient(circle at 86% 48px, rgba(166, 211, 244, .10) 0, transparent 460px),
		linear-gradient(180deg, var(--nsff-page-bg, #050910) 0px, var(--nsff-page-bg-2, #07111c) 520px, #0b1524 1040px);
}

.fct-directory.fct-seamless-cinematic,
.fct-seamless-cinematic,
.fct-directory,
.fct-directory-profile-form,
.fct-public-profile,
[data-fct-team-page="1"],
.fct-judge-page-wrap {
	background-color: #0b1524 !important;
	background-image: var(--nsff-page-gradient-fixed) !important;
	background-size: 100% 1040px !important;
	background-repeat: no-repeat !important;
	background-position: top center !important;
}

.fct-directory.fct-seamless-cinematic > .fct-cinema-content {
	margin-top: 0 !important;
}

.fct-directory.fct-seamless-cinematic .fct-cinema-content > .fct-cinema-section-heading:empty {
	display: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-container {
	padding-top: 0 !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-grid {
	gap: clamp(18px, 2vw, 28px) !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-card {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	color: inherit !important;
	text-decoration: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-card:hover {
	box-shadow: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-card-image-wrap {
	margin: 0 !important;
}

.fct-directory.fct-seamless-cinematic .fct-card-content {
	padding: 12px 2px 0 !important;
	margin: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-card-title {
	margin-bottom: 5px !important;
}

.fct-warning-modal-overlay {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(0, 0, 0, .52) !important;
	backdrop-filter: blur(4px) !important;
	z-index: 999999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.fct-staff-u-053:hover {
	opacity: 1 !important;
}

.fct-cat-label-wrap:hover,
.fct-results-u-074:hover {
	background: rgba(166, 211, 244, .12) !important;
}

/* ========================================================================== 
   v42.13.33: shared polish only
   - cleaner dark-theme text colors across the older converted modules
   - no new page-specific styling, no inline CSS
   - small focus/JS support styles for shared UI behavior
   ========================================================================== */
body.fct-shared-cinematic-page {
	background-color: #0b1524 !important;
	color: var(--nsff-text, #eaf2ff) !important;
}

body.fct-shared-cinematic-page .entry-content,
.fct-directory.fct-seamless-cinematic {
	color: var(--nsff-text, #eaf2ff) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	h1, h2, h3, h4, h5, h6,
	.fct-card-title,
	.fct-detail-title,
	.fct-section-title,
	.fct-panel-title,
	.fct-sp-title,
	.fct-results-title,
	.fct-roster-title,
	.fct-trailer-title,
	.fct-staff-title
) {
	color: #f8fbff !important;
}

.fct-directory.fct-seamless-cinematic :where(
	p, li,
	.fct-muted,
	.fct-help-text,
	.fct-card-meta,
	.fct-card-desc,
	.fct-detail-item,
	.fct-detail-item span,
	.fct-val,
	.fct-meta,
	.fct-desc,
	.fct-description,
	.fct-subtitle,
	.fct-small-text,
	.fct-roster-meta,
	.fct-trailer-meta,
	.fct-staff-meta,
	.fct-sp-meta,
	.fct-results-meta
) {
	color: rgba(234, 242, 255, .78) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	.fct-label,
	.fct-input-label,
	.fct-modal-label,
	label,
	legend,
	th
) {
	color: rgba(215, 236, 251, .92) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
	select,
	textarea,
	.fct-input,
	.fct-input-text,
	.fct-select,
	.fct-modal-input
) {
	background: rgba(5, 9, 16, .78) !important;
	border-color: rgba(166, 211, 244, .24) !important;
	color: #f8fbff !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
	select,
	textarea,
	.fct-input,
	.fct-input-text,
	.fct-select,
	.fct-modal-input
)::placeholder {
	color: rgba(234, 242, 255, .46) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
	select,
	textarea,
	.fct-input,
	.fct-input-text,
	.fct-select,
	.fct-modal-input
):focus {
	border-color: rgba(103, 232, 249, .58) !important;
	box-shadow: 0 0 0 3px rgba(103, 232, 249, .12), inset 0 1px 0 rgba(255,255,255,.05) !important;
	outline: none !important;
}

.fct-directory.fct-seamless-cinematic :where(
	table,
	.fct-data-table,
	.fct-results-table,
	.fct-roster-table
) {
	color: rgba(234, 242, 255, .82) !important;
	border-color: rgba(166, 211, 244, .14) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	td,
	.fct-data-table td,
	.fct-results-table td,
	.fct-roster-table td
) {
	color: rgba(234, 242, 255, .78) !important;
	border-color: rgba(166, 211, 244, .12) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	thead,
	.fct-data-table thead,
	.fct-results-table thead,
	.fct-roster-table thead
) {
	background: rgba(166, 211, 244, .08) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	.fct-panel,
	.fct-card,
	.fct-table-responsive,
	.fct-modal-box,
	.fct-details-modal-box,
	.fct-warning-modal-box
) {
	color: var(--nsff-text, #eaf2ff) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	.fct-notice,
	.fct-alert,
	.fct-empty-state,
	.fct-locked-state
) {
	color: rgba(234, 242, 255, .84) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	.fct-btn,
	.fct-btn-primary,
	.fct-btn-secondary,
	.button,
	button
) {
	text-shadow: none !important;
}

.fct-directory.fct-seamless-cinematic :where(
	a:not(.fct-btn):not(.button):not(.fct-archive-card):not(.fct-directory-card)
) {
	color: rgba(103, 232, 249, .92) !important;
}

.fct-directory.fct-seamless-cinematic :where(
	a:not(.fct-btn):not(.button):not(.fct-archive-card):not(.fct-directory-card)
):hover {
	color: #ffffff !important;
}

.fct-keyboard-user .fct-seamless-cinematic :where(a, button, input, select, textarea):focus-visible {
	outline: 2px solid rgba(103, 232, 249, .82) !important;
	outline-offset: 3px !important;
}

.fct-directory.fct-seamless-cinematic .fct-card-content {
	line-height: 1.45 !important;
}

.fct-directory.fct-seamless-cinematic .fct-card-title + .fct-card-meta {
	margin-top: 2px !important;
}

.fct-directory.fct-seamless-cinematic .fct-badge-stack,
.fct-directory.fct-seamless-cinematic .fct-card-badge,
.fct-directory.fct-seamless-cinematic .fct-status-badge,
.fct-directory.fct-seamless-cinematic .fct-sender-badge {
	color: inherit;
}


/* v42.13.35: targeted shared refinements, using the existing cinematic/directory asset system. */
.fct-directory.fct-seamless-cinematic .fct-archive-toolbar {
	align-items: center;
	gap: 14px;
}

.fct-directory.fct-seamless-cinematic .fct-archive-search-wrap {
	flex: 1 1 280px;
	min-width: min(100%, 240px);
	max-width: 520px;
}

.fct-directory.fct-seamless-cinematic .fct-archive-search-input,
.fct-directory.fct-seamless-cinematic .fct-staff-u-006 {
	min-height: 48px;
	line-height: 1.25;
	padding-top: 0;
	padding-bottom: 0;
	color: var(--fct-text, #eaf2ff);
}

.fct-directory.fct-seamless-cinematic .fct-archive-search-input::placeholder,
.fct-directory.fct-seamless-cinematic .fct-staff-u-006::placeholder {
	color: rgba(234, 242, 255, .58);
}

.fct-directory.fct-seamless-cinematic .fct-archive-empty-search {
	margin: 18px 0;
	padding: 18px 20px;
	border: 1px solid rgba(166, 197, 231, .18);
	border-radius: 18px;
	background: rgba(7, 16, 35, .64);
	color: rgba(234, 242, 255, .78);
	font-weight: 750;
}

.fct-directory.fct-seamless-cinematic .fct-archive-empty-search[hidden] {
	display: none !important;
}

/* Keep the same outer container, but tighten only the film archive cards so five can fit on desktop. */
.fct-directory.fct-seamless-cinematic .fct-archive-grid {
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

@media (min-width: 1080px) {
	.fct-directory.fct-seamless-cinematic .fct-archive-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

.fct-directory.fct-seamless-cinematic .fct-archive-card {
	border-radius: 18px;
}

.fct-directory.fct-seamless-cinematic .fct-archive-card .fct-card-content {
	padding: 14px 14px 16px;
}

.fct-directory.fct-seamless-cinematic .fct-archive-card .fct-card-title {
	font-size: clamp(1rem, 1.1vw, 1.14rem);
	line-height: 1.18;
}

.fct-directory.fct-seamless-cinematic .fct-archive-card .fct-card-meta {
	font-size: .86rem;
}

/* Staff search icon/text alignment. */
.fct-directory.fct-seamless-cinematic .fct-staff-u-005 {
	position: relative;
	display: flex;
	align-items: center;
}

.fct-directory.fct-seamless-cinematic .fct-staff-u-006 {
	display: block;
	width: 100%;
	padding-left: 44px;
}

.fct-directory.fct-seamless-cinematic .fct-staff-u-007 {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
	pointer-events: none;
	color: rgba(234, 242, 255, .62);
	opacity: 1;
}

/* Single film page readability, scoped to the shared directory/cinematic wrapper. */
.fct-directory.fct-seamless-cinematic .fct-single-film {
	color: var(--nsff-text);
}

.fct-directory.fct-seamless-cinematic .fct-single-film :where(.fct-text-block, .fct-logline, .fct-cw-list, .fct-val, .fct-hero-name) {
	color: inherit;
}

.fct-directory.fct-seamless-cinematic .fct-single-film :where(h1, h2, h3, h4, strong, .fct-film-h1, .fct-section-head, .fct-hero-name, .fct-hero-label, .fct-label, .fct-spec-row strong) {
	color: #f8fbff;
}

.fct-directory.fct-seamless-cinematic .fct-single-film :where(.fct-label, .fct-hero-label, .fct-spec-row span, .fct-card-meta) {
	color: rgba(234, 242, 255, .62);
}

.fct-directory.fct-seamless-cinematic .fct-single-film :where(.fct-section, .fct-detail-item, .fct-content-warning) {
	border-color: rgba(166, 197, 231, .16);
	background: rgba(7, 16, 35, .54);
}

.fct-directory.fct-seamless-cinematic .fct-single-film .fct-back-btn {
	color: rgba(234, 242, 255, .76);
}

.fct-directory.fct-seamless-cinematic .fct-single-film .fct-back-btn:hover {
	color: #ffffff;
}

.fct-directory.fct-seamless-cinematic .fct-js-poster-lightbox {
	cursor: pointer;
}

@media (max-width: 720px) {
	.fct-directory.fct-seamless-cinematic .fct-archive-toolbar {
		align-items: stretch;
	}

	.fct-directory.fct-seamless-cinematic .fct-archive-search-wrap,
	.fct-directory.fct-seamless-cinematic .fct-filter-wrap {
		max-width: none;
		width: 100%;
	}
}

/* ========================================================================== 
   v42.13.38: Film Archive lineup/nominations cleanup
   - keep the v42.13.37 shell
   - remove horizontal scrolling from Best of Fest and nomination rows
   - fit five film cards per row on desktop where possible
   - keep the archive toolbar to search + season dropdown only
   ========================================================================== */
.fct-directory.fct-seamless-cinematic[data-fct-module] .fct-archive-toolbar.fct-directory-toolbar::before,
.fct-directory.fct-seamless-cinematic .fct-archive-toolbar.fct-directory-toolbar::before {
	content: none !important;
	display: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-toolbar .fct-header-left,
.fct-directory.fct-seamless-cinematic .fct-archive-toolbar-label,
.fct-directory.fct-seamless-cinematic .fct-season-badge {
	display: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-toolbar.fct-directory-toolbar {
	justify-content: space-between !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-search-wrap {
	max-width: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-filter-wrap {
	flex: 0 0 auto;
}

.fct-directory.fct-seamless-cinematic .fct-carousel-wrapper {
	overflow: visible !important;
}

.fct-directory.fct-seamless-cinematic .fct-carousel-wrapper .fct-scroll-btn {
	display: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-top13-carousel,
.fct-directory.fct-seamless-cinematic .fct-nom-carousel {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
	gap: 18px !important;
	overflow: visible !important;
	padding: 0 !important;
	scroll-snap-type: none !important;
}

.fct-directory.fct-seamless-cinematic .fct-top13-card,
.fct-directory.fct-seamless-cinematic .fct-nom-card {
	flex: initial !important;
	width: 100% !important;
	min-width: 0 !important;
	scroll-snap-align: unset !important;
}

@media (min-width: 1120px) {
	.fct-directory.fct-seamless-cinematic .fct-top13-carousel,
	.fct-directory.fct-seamless-cinematic .fct-nom-carousel {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 720px) {
	.fct-directory.fct-seamless-cinematic .fct-archive-toolbar.fct-directory-toolbar {
		display: grid !important;
		grid-template-columns: 1fr !important;
	}

	.fct-directory.fct-seamless-cinematic .fct-filter-wrap {
		width: 100% !important;
	}
}


/* v42.13.41 judge audit tabs and cards use the shared directory profile system */
.fct-directory.fct-seamless-cinematic .fct-cinema-content > .fct-audit-wrap {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.fct-audit-wrap .fct-results-season-filter {
	margin-bottom: 14px;
}
.fct-audit-tabs.fct-profile-steps .fct-profile-step {
	width: 100%;
	min-height: 48px;
}
.fct-audit-active-label {
	margin: 0 0 18px;
	font-weight: 800;
}
.fct-audit-active-label strong {
	color: var(--nsff-ice);
}
.fct-audit-view > p:first-child {
	margin-top: 0;
}
.fct-audit-wrap .fct-judge-card,
.fct-audit-wrap .fct-audit-award-card {
	margin: 0 !important;
	padding: clamp(16px, 2vw, 22px) !important;
}
.fct-audit-wrap .fct-detail-panel {
	margin-top: 14px;
	padding: clamp(18px, 2.4vw, 28px) !important;
}

/* v42.13.39 small shared refinements */
.fct-staff-wrap :where(.fct-staff-u-003,.fct-staff-u-020,.fct-staff-u-027,.fct-staff-u-035,.fct-staff-u-037,.fct-staff-u-047,.fct-staff-u-049,.fct-staff-u-051,.fct-staff-u-092),
.fct-audit-wrap :where(.fct-results-u-005,.fct-results-u-008,.fct-results-u-132,.fct-results-u-133) {
	color: var(--nsff-muted) !important;
}
.fct-staff-wrap :where(.fct-staff-u-010,.fct-staff-u-019,.fct-staff-u-026,.fct-staff-u-036,.fct-staff-u-048,.fct-staff-u-069,.fct-staff-u-091,.fct-staff-u-100,.fct-staff-u-107),
.fct-audit-wrap :where(.fct-audit-film-title,.fct-results-u-004) {
	color: var(--nsff-ice) !important;
}
.fct-staff-wrap :where(.fct-staff-u-023,.fct-staff-u-024,.fct-staff-u-093,.fct-staff-u-095,.fct-staff-u-096),
.fct-audit-wrap :where(.fct-results-u-009,.fct-results-u-010) {
	border-radius: 10px !important;
}
.fct-staff-wrap .fct-staff-u-034 {
	border-color: rgba(166, 211, 244, .18) !important;
	background: rgba(5, 8, 13, .64) !important;
}
.fct-staff-wrap table,
.fct-audit-wrap table {
	font-size: 13px;
}

/* v42.13.45: keep the v42.13.43 layout, only make shared heroes the same fixed height. */
.fct-cinema-hero,
.fct-public-profile-hero,
[data-fct-team-page="1"] .fct-directory-style-hero,
[data-fct-team-page="1"] .fct-team-hero.fct-directory-style-hero,
.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero {
	min-height: var(--fct-shared-hero-height) !important;
	height: var(--fct-shared-hero-height) !important;
}

.fct-cinema-hero-inner,
.fct-public-profile-hero-inner,
[data-fct-team-page="1"] .fct-team-hero-inner,
.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-hero .fct-cinema-hero-inner,
.fct-seamless-cinematic .fct-cinema-content,
.fct-seamless-cinematic .fct-public-profile-content,
[data-fct-team-page="1"] .fct-cinema-content,
.fct-judge-page-wrap .fct-cinema-content,
.fct-directory.fct-seamless-cinematic[data-fct-module] > .fct-cinema-content {
	width: min(var(--fct-shared-content-width), calc(100vw - 48px)) !important;
	max-width: var(--fct-shared-content-width) !important;
}

@media (max-width: 720px) {
	:root {
		--fct-shared-hero-height: 390px;
	}
}


/* v42.13.54: shared warning modal for incomplete judge criteria */
.fct-warning-modal-overlay {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transition: opacity .18s ease, visibility .18s ease !important;
	padding: 18px !important;
}

.fct-warning-modal-overlay.is-visible {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

.fct-warning-modal-box {
	width: min(520px, 94vw) !important;
	max-height: 86vh !important;
	overflow: auto !important;
	padding: 26px !important;
	text-align: center !important;
}

.fct-warning-modal-icon {
	width: 52px !important;
	height: 52px !important;
	margin: 0 auto 12px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 999px !important;
	background: rgba(251, 191, 36, .16) !important;
	border: 1px solid rgba(251, 191, 36, .34) !important;
	font-size: 1.45rem !important;
}

.fct-warning-modal-title {
	color: var(--nsff-text, #eaf2ff) !important;
	font-size: 1.25rem !important;
	font-weight: 950 !important;
	line-height: 1.2 !important;
	margin: 0 0 8px !important;
}

.fct-warning-modal-desc {
	color: rgba(234, 242, 255, .78) !important;
	font-size: .95rem !important;
	line-height: 1.55 !important;
	margin: 0 auto 16px !important;
	max-width: 390px !important;
}

.fct-warning-modal-list {
	list-style: none !important;
	margin: 0 0 18px !important;
	padding: 0 !important;
	display: grid !important;
	gap: 8px !important;
	text-align: left !important;
}

.fct-warning-modal-list li {
	margin: 0 !important;
	padding: 9px 11px !important;
	border-radius: 12px !important;
	background: rgba(166, 211, 244, .10) !important;
	border: 1px solid rgba(166, 211, 244, .18) !important;
	color: var(--nsff-text, #eaf2ff) !important;
	font-weight: 800 !important;
}

.fct-warning-modal-actions {
	display: flex !important;
	justify-content: center !important;
	gap: 10px !important;
	flex-wrap: wrap !important;
}

.fct-field-needs-score {
	outline: 2px solid rgba(251, 191, 36, .78) !important;
	outline-offset: 4px !important;
	border-radius: 14px !important;
}


/* ========================================================================== 
   v42.13.56: Universal judge form cleanup
   - Hide Fluent Forms' unused default submit wrapper.
   - Remove the extra visible form-wrapper box so the judging form has fewer nested containers.
   - Keep the PHP/JS wrapper intact for autosave and validation.
   ========================================================================== */
.fct-judge-page-wrap .fct-form-wrapper {
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.fct-judge-page-wrap .fct-form-wrapper :where(form, fieldset, .fluentform, .fluentform_wrapper, .frm-fluent-form) {
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff_submit_btn_wrapper {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff_submit_btn_wrapper .ff-btn-submit {
	display: none !important;
}

.fct-judge-page-wrap .fct-form-wrapper .ff-el-group:last-child {
	margin-bottom: 0 !important;
}


/* ========================================================================== 
   v42.13.57: Unified judge portal structure
   - Screenplay now uses the same judge single-view, navigator, section, form footer, and action classes as the regular judge portal.
   - Only PDF-specific sizing remains unique because screenplay uses an embedded script instead of a video player.
   ========================================================================== */
.fct-judge-page-wrap .fct-judge-title-block {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.fct-judge-page-wrap .fct-judge-title-block .fct-section-heading {
	margin: 0;
}

.fct-judge-page-wrap .fct-pdf-frame {
	overflow: hidden;
	min-height: 520px;
	height: min(72vh, 760px);
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: rgba(5, 8, 13, .60);
}

.fct-judge-page-wrap .fct-pdf-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 760px) {
	.fct-judge-page-wrap .fct-pdf-frame {
		min-height: 360px;
		height: 58vh;
	}
}


/* ========================================================================== 
   v42.13.62: Judge portals use the same visible cinematic content frame.
   Keep the filmmaker-directory shell intact, but make the shared content area
   visibly bounded so the judge portal content does not look like it is floating.
   ========================================================================== */
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap > .fct-cinema-content,
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
	background:
		linear-gradient(180deg, rgba(166, 211, 244, .052), rgba(166, 211, 244, .018)),
		rgba(8, 18, 32, .36) !important;
	border: 1px solid rgba(166, 211, 244, .115) !important;
	border-top-color: rgba(166, 211, 244, .085) !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .035),
		0 24px 70px rgba(0, 0, 0, .18) !important;
	min-height: calc(100vh - var(--fct-shared-hero-height)) !important;
}

.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap > .fct-cinema-content > :last-child,
.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content > :last-child {
	margin-bottom: 0 !important;
}

@media (max-width: 900px) {
	.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap > .fct-cinema-content,
	.fct-directory.fct-seamless-cinematic.fct-judge-page-wrap > .fct-judge-content.fct-cinema-content {
		border-left-width: 1px !important;
		border-right-width: 1px !important;
		min-height: 0 !important;
	}
}

/* v42.13.63 - Judge portal inner content width
   Keeps the cinematic frame wide while giving the judge content the same breathing room as the directory layout. */
.fct-directory.fct-seamless-cinematic .fct-cinema-content.fct-judge-content {
	padding-inline: 0 !important;
}

.fct-directory.fct-seamless-cinematic .fct-judge-content-inner {
	width: min(100%, 1180px) !important;
	max-width: 1180px !important;
	margin-inline: auto !important;
	padding-inline: 28px !important;
}

@media (max-width: 760px) {
	.fct-directory.fct-seamless-cinematic .fct-judge-content-inner {
		padding-inline: 16px !important;
	}
}

/* v42.13.64: Match judge and archive inner content width to the public directory
   Keep the cinematic outer frame, but let the content use the same available width as the directory layout. */
.fct-directory.fct-seamless-cinematic .fct-cinema-content.fct-judge-content {
	padding-inline: clamp(28px, 3vw, 44px) !important;
}

.fct-directory.fct-seamless-cinematic .fct-judge-content-inner {
	width: 100% !important;
	max-width: none !important;
	margin-inline: 0 !important;
	padding-inline: 0 !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-container {
	width: 100% !important;
	max-width: none !important;
	margin-inline: 0 !important;
}

.fct-directory.fct-seamless-cinematic .fct-archive-container > :where(.fct-archive-toolbar, .fct-view-tabs, .fct-top13-container, .fct-nom-section, .fct-archive-grid, .fct-archive-empty-search) {
	width: 100% !important;
	max-width: none !important;
}

@media (max-width: 900px) {
	.fct-directory.fct-seamless-cinematic .fct-cinema-content.fct-judge-content {
		padding-inline: 18px !important;
	}
}

@media (max-width: 640px) {
	.fct-directory.fct-seamless-cinematic .fct-cinema-content.fct-judge-content {
		padding-inline: 12px !important;
	}
}

.fct-directory.fct-seamless-cinematic .fct-page-content {
	max-width: var(--fct-shared-content-width, 1360px);
	margin: 0 auto;
	color: var(--nsff-text);
}

.fct-directory.fct-seamless-cinematic .fct-page-content h2,
.fct-directory.fct-seamless-cinematic .fct-page-content h3,
.fct-directory.fct-seamless-cinematic .fct-page-content h4 {
	color: var(--nsff-text);
}

.fct-directory.fct-seamless-cinematic .fct-page-content p,
.fct-directory.fct-seamless-cinematic .fct-page-content li {
	color: var(--nsff-text-soft);
	line-height: 1.7;
}

.fct-directory.fct-seamless-cinematic .fct-page-content a {
	color: var(--nsff-ice-2);
	font-weight: 700;
}

.fct-directory.fct-seamless-cinematic .fct-page-content ul,
.fct-directory.fct-seamless-cinematic .fct-page-content ol {
	padding-left: 1.4rem;
}
/* ========================================================================== 
   v42.13.68 Staff Dashboard + Trailer Contest spacing polish
   Uses the same cinematic shell, card language, tabs, and button family as the filmmaker directory.
   ========================================================================== */
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-plugin-content-inner,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-plugin-content-inner {
	width: min(var(--fct-shared-content-width), 100%);
	max-width: var(--fct-shared-content-width);
	margin: 0 auto;
	padding: clamp(18px, 2.4vw, 30px);
	border: 1px solid var(--nsff-border);
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(13, 21, 34, .78), rgba(5, 8, 13, .72)),
		rgba(13, 21, 34, .52);
	box-shadow: var(--nsff-shadow-soft);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-wrap,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-gallery {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	color: var(--nsff-text);
	display: grid;
	gap: clamp(18px, 2.2vw, 28px);
}

/* Shared toolbar/search treatment */
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-toolbar,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-search-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0 0 18px;
	padding: 12px;
	border: 1px solid var(--nsff-border-soft);
	border-radius: 18px;
	background: rgba(5, 8, 13, .38);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-toolbar-inner {
	width: 100%;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-season-line {
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--nsff-muted);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-season-value {
	color: var(--nsff-ice);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-search-wrap,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-search-wrap {
	position: relative;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-search-icon,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-search-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: rgba(234, 242, 255, .62);
	z-index: 2;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-search-input,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-search-input {
	min-height: 48px;
	padding-left: 48px !important;
}

/* Shared tabs */
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-nav.fct-profile-steps {
	margin: 0 0 22px;
	padding: 6px;
	border: 1px solid var(--nsff-border-soft);
	border-radius: 20px;
	background: rgba(5, 8, 13, .44);
	gap: 8px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-tab.fct-profile-step {
	justify-content: center;
	text-decoration: none;
	min-height: 46px;
	border-radius: 14px;
}

/* Shared panels/cards */
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-staff-panel, .fct-staff-award-section),
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-banner, .fct-auth-box, .fct-help-box, .fct-leaderboard, .fct-panel) {
	border: 1px solid var(--nsff-border) !important;
	background: var(--nsff-panel-bg) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: var(--nsff-shadow-soft) !important;
	color: var(--nsff-text) !important;
	padding: clamp(16px, 1.8vw, 24px) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-card, .fct-staff-poster-card, .fct-staff-nominee-card),
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-card {
	position: relative;
	border: 1px solid var(--nsff-border) !important;
	background: linear-gradient(180deg, rgba(13, 21, 34, .92), rgba(8, 13, 20, .96)) !important;
	border-radius: var(--nsff-radius) !important;
	box-shadow: var(--nsff-shadow-soft) !important;
	color: var(--nsff-text) !important;
	overflow: hidden;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-card:hover,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-card:hover,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-nominee-card:hover,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-card:hover {
	border-color: rgba(166, 197, 231, .34) !important;
	transform: translateY(-2px);
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 22px 48px rgba(0, 0, 0, .34) !important;
}

/* Staff dashboard */
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-progress-panel,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-tools-panel,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-export-panel {
	margin-bottom: 18px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-progress-row {
	display: grid;
	grid-template-columns: minmax(150px, max-content) 1fr;
	gap: 12px;
	align-items: center;
	margin-top: 12px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-progress-label {
	font-weight: 900;
	color: var(--nsff-ice-2);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-progress-track {
	height: 12px;
	border-radius: 999px;
	border: 1px solid rgba(166, 197, 231, .18);
	background: rgba(5, 8, 13, .68);
	overflow: hidden;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-progress-fill {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--nsff-ice-2), var(--nsff-done));
	transition: width .2s ease;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-grid {
	display: grid;
	gap: 18px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-film-grid,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-nominee-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-card,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-card,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-nominee-card {
	padding: 16px !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-card-done {
	border-color: rgba(16, 185, 129, .42) !important;
	background: linear-gradient(180deg, rgba(16, 185, 129, .13), rgba(8, 13, 20, .96)) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-staff-card-head, .fct-staff-card-actions, .fct-staff-action-row, .fct-staff-award-head, .fct-staff-viewer-actions, .fct-staff-viewer-doc-actions) {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-card-head,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-award-head {
	justify-content: space-between;
	margin-bottom: 10px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-staff-team-pill, .fct-staff-sound-pill, .fct-staff-check-button) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 1px solid rgba(166, 197, 231, .26);
	border-radius: 999px;
	background: rgba(166, 197, 231, .10);
	color: var(--nsff-ice-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-team-pill,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-sound-pill {
	padding: 6px 10px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-check-button {
	width: 38px;
	height: 38px;
	cursor: pointer;
	font-size: 16px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-staff-card-title, .fct-staff-table-title, .fct-staff-award-title) {
	margin: 0 0 6px;
	color: var(--nsff-ice) !important;
	font-weight: 950;
	line-height: 1.15;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-staff-card-subtitle, .fct-staff-section-subtitle, .fct-staff-empty-state-inline) {
	color: var(--nsff-muted) !important;
	line-height: 1.45;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-missing-link,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-no-link {
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(239, 68, 68, .10);
	border: 1px solid rgba(239, 68, 68, .24);
	color: #fca5a5 !important;
	font-weight: 850;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-secondary-link,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-download-icon {
	text-decoration: none;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-head {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 14px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-preview {
	width: 72px;
	height: 104px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid var(--nsff-border);
	background: rgba(5, 8, 13, .68);
	flex: 0 0 auto;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-empty {
	width: 72px;
	height: 104px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 1px dashed rgba(166, 197, 231, .28);
	background: rgba(5, 8, 13, .58);
	color: var(--nsff-muted);
	font-size: 12px;
	text-align: center;
	flex: 0 0 auto;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-options {
	display: grid;
	gap: 10px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-option,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-category-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 12px;
	border-radius: 13px;
	border: 1px solid rgba(166, 197, 231, .18);
	background: rgba(5, 8, 13, .42);
	color: var(--nsff-text-soft);
	font-weight: 850;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 16px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-table th,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-table td {
	padding: 16px !important;
	vertical-align: top;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-doc-link {
	margin: 4px;
	white-space: normal;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-viewer-modal {
	position: fixed;
	inset: 0;
	display: none;
	flex-direction: column;
	z-index: 999999;
	padding: clamp(18px, 3vw, 34px);
	background: rgba(5, 8, 13, .92);
	backdrop-filter: blur(10px);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-viewer-close {
	position: absolute;
	right: 20px;
	top: 18px;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--nsff-border);
	background: rgba(13, 21, 34, .94);
	color: var(--nsff-text);
	cursor: pointer;
	font-weight: 950;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-viewer-team-title {
	color: var(--nsff-ice);
	font-size: clamp(20px, 2.4vw, 30px);
	font-weight: 950;
	padding-right: 54px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-viewer-doc-title,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-viewer-counter {
	color: var(--nsff-muted);
	font-weight: 850;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-viewer-content {
	flex: 1 1 auto;
	min-height: 0;
	margin: 18px 0;
	border: 1px solid var(--nsff-border);
	border-radius: 18px;
	background: rgba(5, 8, 13, .62);
	overflow: auto;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-viewer-image,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-viewer-frame {
	width: 100%;
	height: 100%;
	min-height: 68vh;
	border: 0;
	object-fit: contain;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-nominations-layout {
	display: grid;
	grid-template-columns: minmax(210px, 280px) 1fr;
	gap: 22px;
	align-items: start;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-nom-sidebar {
	position: sticky;
	top: 24px;
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: rgba(5, 8, 13, .42);
	padding: 16px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-cat-link {
	display: block;
	padding: 9px 10px;
	border-radius: 11px;
	color: var(--nsff-text-soft);
	text-decoration: none;
	font-weight: 850;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-cat-link:hover {
	background: rgba(166, 197, 231, .10);
	color: var(--nsff-ice);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-export-grid,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-export-output-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-output-card,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-export-control-panel {
	border: 1px solid var(--nsff-border-soft);
	border-radius: 16px;
	background: rgba(5, 8, 13, .36);
	padding: 16px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-output-textarea,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-category-textarea {
	min-height: 130px;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 13px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-yt-facade,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-video-wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(5, 8, 13, .78);
	border: 1px solid var(--nsff-border-soft);
	margin: 14px 0;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-yt-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Trailer contest */
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-vote-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
	gap: 16px;
	margin-bottom: 20px;
	align-items: stretch;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-vote-status {
	grid-column: 1 / -1;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-banner {
	margin-bottom: 18px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-banner-icon {
	font-size: 34px;
	color: var(--nsff-ice-2);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-trailer-banner-title, .fct-auth-title, .fct-help-title, .fct-lb-heading) {
	color: var(--nsff-ice) !important;
	font-weight: 950;
	letter-spacing: -.02em;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-trailer-banner-text, .fct-trailer-tip, .fct-trailer-privacy-note, .fct-auth-text, .fct-lb-refresh-note) {
	color: var(--nsff-muted) !important;
	line-height: 1.55;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-steps {
	counter-reset: trailer-step;
	list-style: none;
	padding: 0;
	margin: 14px 0;
	display: grid;
	gap: 10px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-step {
	counter-increment: trailer-step;
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 10px;
	align-items: center;
	color: var(--nsff-text-soft);
	font-weight: 800;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-step::before {
	content: counter(trailer-step);
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(166, 197, 231, .14);
	border: 1px solid rgba(166, 197, 231, .24);
	color: var(--nsff-ice-2);
	font-weight: 950;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-auth-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: end;
	margin-top: 14px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-honeypot-field,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .is-hidden {
	display: none !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-auth-status,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-vote-status,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-card-status,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-admin-inline-status {
	min-height: 22px;
	margin-top: 12px;
	font-weight: 850;
	color: var(--nsff-muted);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .is-error,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-status-text.is-error {
	color: #f87171 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .is-success,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-status-text.is-success {
	color: #34d399 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-leaderboard {
	margin-bottom: 20px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 14px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-heading-main,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-heading-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-container {
	display: grid;
	gap: 14px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 14px;
	border: 1px solid rgba(166, 197, 231, .16);
	border-radius: 16px;
	background: rgba(5, 8, 13, .36);
	cursor: pointer;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-rank,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item-rank,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-vote-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(166, 197, 231, .26);
	background: rgba(166, 197, 231, .12);
	color: var(--nsff-ice-2) !important;
	font-weight: 950;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-votes {
	text-align: right;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
	align-items: stretch;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-card {
	display: grid;
	grid-template-rows: auto 1fr;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-thumb-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 0;
	background: #000;
	cursor: pointer;
	overflow: hidden;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-thumb-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .25s ease;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-card:hover .fct-thumb-wrap img {
	transform: scale(1.035);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-thumb-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(5, 8, 13, .76));
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-play-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: rgba(248, 250, 252, .92);
	box-shadow: 0 14px 28px rgba(0, 0, 0, .32);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-play-icon::before {
	content: "";
	position: absolute;
	left: 23px;
	top: 17px;
	border-left: 16px solid #0d1522;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-thumb-label {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(5, 8, 13, .72);
	border: 1px solid rgba(166, 197, 231, .22);
	color: var(--nsff-text-soft);
	font-weight: 900;
	font-size: 12px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-meta {
	padding: clamp(16px, 1.8vw, 22px);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-film-title {
	font-size: 1.12rem;
	line-height: 1.18;
	color: var(--nsff-ice) !important;
	font-weight: 950;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-film-team, .fct-team-number) {
	color: var(--nsff-muted) !important;
	font-weight: 800;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-action-row, .fct-vote-container) {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-vote-container {
	justify-content: space-between;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid rgba(166, 197, 231, .12);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-vote-btn:not(:disabled) {
	border-color: rgba(16, 185, 129, .42) !important;
	background: linear-gradient(135deg, rgba(16, 185, 129, .95), rgba(6, 95, 70, .95)) !important;
	color: #ffffff !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-synopsis-box {
	padding: 10px 12px;
	border-radius: 14px;
	border: 1px solid rgba(166, 197, 231, .14);
	background: rgba(5, 8, 13, .42);
	color: var(--nsff-text-soft);
	line-height: 1.55;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-admin-gear {
	position: absolute;
	right: 12px;
	top: 12px;
	z-index: 3;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(166, 197, 231, .28);
	border-radius: 999px;
	background: rgba(5, 8, 13, .76);
	color: var(--nsff-text);
	cursor: pointer;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-admin-overlay {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: none;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	background: rgba(5, 8, 13, .96);
	backdrop-filter: blur(8px);
	color: var(--nsff-text);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-admin-original-link {
	max-height: 76px;
	overflow: auto;
	padding: 10px;
	border-radius: 12px;
	background: rgba(166, 197, 231, .08);
	color: var(--nsff-muted);
	font-size: 12px;
	word-break: break-word;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-custom-modal, .fct-video-modal) {
	color: var(--nsff-text);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-back-to-top,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 60;
	width: 44px;
	height: 44px;
	padding: 0 !important;
	border-radius: 999px !important;
}


@media (max-width: 980px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 981px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-card {
		min-width: 0;
	}
}

@media (max-width: 900px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-plugin-content-inner,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-plugin-content-inner {
		padding: 16px;
		border-radius: 22px;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-toolbar,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-search-wrap,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-auth-row,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-vote-grid,
	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-progress-row,
	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-nominations-layout,
	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-export-grid,
	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-export-output-grid {
		grid-template-columns: 1fr;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-toolbar,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-search-wrap {
		display: grid;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-nom-sidebar {
		position: static;
	}
}


/* v42.13.69 - Staff/Trailer status refinement and hidden utility UI cleanup */
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-back-to-top,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-back-to-top {
	display: none;
	align-items: center;
	justify-content: center;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-video-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 3vw, 32px);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal.is-open,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-video-modal.is-open {
	display: flex;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-custom-modal-backdrop, .fct-video-backdrop) {
	position: absolute;
	inset: 0;
	background: rgba(5, 8, 13, .84);
	backdrop-filter: blur(9px);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal-dialog,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-video-dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 920px);
	border: 1px solid var(--nsff-border);
	border-radius: var(--nsff-radius);
	background: linear-gradient(180deg, rgba(13, 21, 34, .98), rgba(5, 8, 13, .98));
	box-shadow: var(--nsff-shadow-strong);
	color: var(--nsff-text);
	overflow: hidden;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal-dialog {
	max-width: 520px;
	padding: clamp(18px, 2.5vw, 28px);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal-title {
	margin: 0 0 10px;
	color: var(--nsff-ice);
	font-weight: 950;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal-body {
	color: var(--nsff-text-soft);
	line-height: 1.6;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-video-frame-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-video-frame-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-video-close {
	position: absolute;
	right: 12px;
	top: 12px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(166, 211, 244, .28);
	border-radius: 999px;
	background: rgba(5, 8, 13, .78);
	color: var(--nsff-text);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-video-caption {
	padding: 14px 16px;
	color: var(--nsff-text-soft);
	font-weight: 800;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-banner.upcoming,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-banner.live,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-admin-preview-note {
	border-left: 4px solid var(--fct-status-color, var(--nsff-ice-2)) !important;
	background: var(--fct-status-bg, var(--nsff-panel-bg)) !important;
	border-color: var(--fct-status-border, var(--nsff-border)) !important;
	color: var(--fct-status-color, var(--nsff-text)) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-banner.upcoming,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-admin-preview-note {
	--fct-status-color: var(--nsff-pending);
	--fct-status-bg: rgba(246, 183, 60, .10);
	--fct-status-border: rgba(246, 183, 60, .42);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-banner.live {
	--fct-status-color: var(--nsff-done);
	--fct-status-bg: rgba(52, 211, 153, .10);
	--fct-status-border: rgba(52, 211, 153, .42);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-banner :where(h2, p, div, span),
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-admin-preview-note {
	color: inherit !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-heading-badge {
	padding: 6px 10px;
	font-size: 11px;
	line-height: 1;
	letter-spacing: .08em;
	text-transform: uppercase;
	--fct-status-color: var(--nsff-done);
	--fct-status-bg: rgba(52, 211, 153, .12);
	--fct-status-border: rgba(52, 211, 153, .42);
	color: var(--fct-status-color) !important;
	background: var(--fct-status-bg) !important;
	border-color: var(--fct-status-border) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-final-badge {
	--fct-status-color: var(--nsff-pending);
	--fct-status-bg: rgba(246, 183, 60, .12);
	--fct-status-border: rgba(246, 183, 60, .42);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-auth-status, .fct-vote-status, .fct-card-status, .fct-admin-inline-status):empty,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-card-status:not(.is-visible) {
	display: none;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-auth-status, .fct-vote-status, .fct-card-status.is-visible, .fct-admin-inline-status:not(:empty)) {
	min-height: 0;
	padding: 10px 12px;
	border: 1px solid rgba(166, 211, 244, .20);
	border-radius: 14px;
	background: rgba(166, 211, 244, .08);
	color: var(--nsff-text-soft);
	line-height: 1.45;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-auth-status, .fct-vote-status, .fct-card-status, .fct-admin-inline-status).is-success,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-status-text.is-success {
	border-color: rgba(52, 211, 153, .40) !important;
	background: rgba(52, 211, 153, .10) !important;
	color: #34d399 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-auth-status, .fct-vote-status, .fct-card-status, .fct-admin-inline-status).is-error,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-status-text.is-error {
	border-color: rgba(248, 113, 113, .42) !important;
	background: rgba(248, 113, 113, .11) !important;
	color: #f87171 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-status-text.is-working {
	color: var(--nsff-pending) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-vote-btn:disabled {
	cursor: not-allowed;
	opacity: .82;
	border-color: rgba(115, 131, 154, .32) !important;
	background: rgba(115, 131, 154, .12) !important;
	color: var(--nsff-muted) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-card-done .fct-staff-check-button {
	border-color: rgba(52, 211, 153, .46) !important;
	background: rgba(52, 211, 153, .12) !important;
	color: #34d399 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-sound-pill {
	border-color: rgba(246, 183, 60, .42) !important;
	background: rgba(246, 183, 60, .10) !important;
	color: var(--nsff-pending) !important;
}

@media (max-width: 700px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal-actions,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-vote-container {
		justify-content: stretch;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-custom-modal-actions .fct-btn,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-vote-container .fct-btn {
		width: 100%;
	}
}

/* ========================================================================== 
   v42.13.70 Trailer leaderboard polish + calmer Staff Dashboard typography
   ========================================================================== */
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-leaderboard {
	position: relative;
	isolation: isolate;
	padding: clamp(20px, 2.2vw, 30px) !important;
	border-color: rgba(166, 211, 244, .30) !important;
	background:
		radial-gradient(circle at 12% 0%, rgba(166, 211, 244, .20), transparent 34%),
		radial-gradient(circle at 88% 12%, rgba(16, 185, 129, .14), transparent 36%),
		linear-gradient(180deg, rgba(13, 21, 34, .96), rgba(5, 8, 13, .98)) !important;
	overflow: hidden;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-leaderboard::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, transparent, rgba(166, 211, 244, .14), transparent) 0 0 / 100% 1px no-repeat,
		linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 42%);
	pointer-events: none;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-heading {
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(166, 211, 244, .16);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-heading-main {
	font-size: clamp(1.15rem, 1.7vw, 1.55rem);
	line-height: 1.15;
	letter-spacing: -.03em;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-inline-icon {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(166, 211, 244, .14);
	border: 1px solid rgba(166, 211, 244, .24);
	color: var(--nsff-ice-2);
	font-size: 18px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-refresh-note {
	font-size: 12px;
	font-weight: 850;
	color: var(--nsff-muted);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-container {
	gap: 16px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first {
	position: relative;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: clamp(14px, 2vw, 22px);
	padding: clamp(18px, 2.4vw, 28px);
	border-color: rgba(166, 211, 244, .38);
	background:
		radial-gradient(circle at 12% 10%, rgba(246, 183, 60, .16), transparent 34%),
		linear-gradient(135deg, rgba(166, 211, 244, .16), rgba(16, 185, 129, .08) 45%, rgba(5, 8, 13, .72));
	box-shadow: 0 22px 54px rgba(0, 0, 0, .30), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first::after {
	content: "Audience favorite";
	position: absolute;
	right: 18px;
	top: 14px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(246, 183, 60, .38);
	background: rgba(246, 183, 60, .12);
	color: #fbbf24;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-rank {
	min-width: 70px;
	height: 70px;
	border-radius: 22px;
	border-color: rgba(246, 183, 60, .48);
	background:
		linear-gradient(135deg, rgba(246, 183, 60, .26), rgba(166, 211, 244, .16)),
		rgba(5, 8, 13, .46);
	color: #fbbf24 !important;
	font-size: 1.35rem;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-title {
	font-size: clamp(1.18rem, 2vw, 1.75rem);
	line-height: 1.08;
	letter-spacing: -.04em;
	font-weight: 950;
	color: var(--nsff-ice) !important;
	max-width: 760px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-team {
	margin-top: 6px;
	color: var(--nsff-text-soft) !important;
	font-size: 13px;
	font-weight: 800;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-votes {
	min-width: 104px;
	padding: 14px 16px;
	border: 1px solid rgba(166, 211, 244, .22);
	border-radius: 18px;
	background: rgba(5, 8, 13, .46);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-votes .lb-val {
	display: block;
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	font-weight: 950;
	line-height: 1;
	color: var(--nsff-ice) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-votes span:last-child {
	display: block;
	margin-top: 6px;
	color: var(--nsff-muted);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-runners {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item {
	padding: 14px 16px;
	border-color: rgba(166, 211, 244, .20);
	background: rgba(5, 8, 13, .44);
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item:hover,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first:hover {
	border-color: rgba(166, 211, 244, .42);
	transform: translateY(-2px);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item-rank {
	min-width: 44px;
	height: 44px;
	border-radius: 16px;
	font-size: 1rem;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item:nth-child(1) .fct-lb-item-rank {
	border-color: rgba(203, 213, 225, .38);
	background: rgba(203, 213, 225, .12);
	color: #e2e8f0 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item:nth-child(2) .fct-lb-item-rank {
	border-color: rgba(251, 146, 60, .38);
	background: rgba(251, 146, 60, .12);
	color: #fdba74 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item-title {
	color: var(--nsff-ice) !important;
	font-size: .98rem;
	font-weight: 920;
	line-height: 1.2;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item-team {
	margin-top: 3px;
	color: var(--nsff-muted) !important;
	font-size: 12px;
	font-weight: 750;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item-votes {
	min-width: 54px;
	height: 36px;
	font-size: .92rem;
}

/* Staff dashboard: calmer, smaller UI typography */
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-wrap {
	font-size: 14px;
	line-height: 1.48;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-wrap :where(p, li, td, label, input, select, textarea, button, a) {
	font-size: .9rem;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-toolbar,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-nav.fct-profile-steps {
	margin-bottom: 16px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-tab.fct-profile-step {
	min-height: 40px;
	padding: 9px 12px;
	font-size: 12.5px;
	font-weight: 850;
	letter-spacing: .01em;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-section-title.fct-staff-section-title {
	font-size: clamp(1.05rem, 1.3vw, 1.28rem);
	line-height: 1.18;
	letter-spacing: -.025em;
	margin-bottom: 6px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-section-subtitle.fct-staff-section-subtitle {
	font-size: 13px;
	line-height: 1.45;
	max-width: 760px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-staff-panel, .fct-staff-award-section) {
	padding: clamp(14px, 1.55vw, 20px) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-card, .fct-staff-poster-card, .fct-staff-nominee-card) {
	padding: 14px !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-card-title,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-table-title,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-award-title {
	font-size: clamp(.98rem, 1.1vw, 1.12rem);
	line-height: 1.2;
	letter-spacing: -.02em;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-card-subtitle,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-section-subtitle,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-empty-state-inline {
	font-size: 12.5px;
	line-height: 1.4;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-btn {
	min-height: 38px;
	padding: 9px 12px;
	font-size: 12.5px;
	font-weight: 850;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] :where(.fct-staff-team-pill, .fct-staff-sound-pill, .fct-status-pill) {
	padding: 5px 8px;
	font-size: 10.5px;
	letter-spacing: .055em;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-check-button {
	width: 34px;
	height: 34px;
	font-size: 14px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-progress-label {
	font-size: 12.5px;
	letter-spacing: .015em;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-table {
	font-size: 13px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-table th,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-table td {
	padding: 12px 14px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-doc-link {
	padding: 8px 10px;
	font-size: 12.5px;
	font-weight: 800;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-output-label {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--nsff-ice-2);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-output-textarea,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-category-textarea {
	font-size: 12px;
	line-height: 1.45;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-sidebar-title {
	font-size: 13px;
	font-weight: 950;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--nsff-ice-2);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-cat-link {
	font-size: 12.5px;
	padding: 8px 9px;
}

@media (max-width: 820px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-votes,
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item-votes {
		grid-column: 1 / -1;
		text-align: left;
		justify-self: stretch;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-runners {
		grid-template-columns: 1fr;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first::after {
		position: static;
		grid-column: 1 / -1;
		width: fit-content;
	}
}

/* v42.13.71: Trailer and staff dashboard refinement */
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-container {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-leaderboard {
	padding: clamp(16px, 1.8vw, 22px) !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-heading {
	margin-bottom: 16px !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-card {
	min-height: 100%;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-trailer-meta {
	padding: clamp(14px, 1.5vw, 18px);
	gap: 9px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-film-title {
	font-size: clamp(1rem, 1.15vw, 1.14rem);
	line-height: 1.2;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] :where(.fct-film-team, .fct-team-number) {
	font-size: 13px;
	line-height: 1.35;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-action-row {
	margin-top: 2px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-synopsis-box[hidden] {
	display: none !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-synopsis-box.is-open {
	display: block;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-synopsis-box {
	margin: 2px 0 4px;
	font-size: 13px;
	line-height: 1.55;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-vote-container {
	gap: 12px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-film-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
	gap: 18px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 220px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	min-width: 0;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-meta span {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 4px 8px;
	border-radius: 999px;
	border: 1px solid rgba(166, 211, 244, .18);
	background: rgba(166, 211, 244, .08);
	color: var(--nsff-ice-2);
	font-size: 10.5px;
	font-weight: 900;
	letter-spacing: .055em;
	text-transform: uppercase;
	white-space: nowrap;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-info {
	min-width: 0;
	padding-right: 4px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-card .fct-staff-card-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 5px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-card .fct-staff-card-subtitle {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-card .fct-staff-card-actions {
	margin-top: auto;
	align-items: stretch;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-card .fct-btn,
.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-card .fct-staff-missing-link {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-card .fct-staff-check-button {
	flex: 0 0 auto;
}

@media (min-width: 1180px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-film-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-screening-card {
		min-height: 0;
	}
}


/* v42.13.72: Trailer badge spacing + Staff poster grid cleanup */
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-rank-badge.rank-1 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: calc(100% - 28px);
	margin: 14px 14px 0;
	padding: 8px 12px !important;
	border-radius: 999px !important;
	white-space: normal;
	line-height: 1.25;
	text-align: center;
	background: linear-gradient(135deg, rgba(246, 183, 60, .22), rgba(166, 211, 244, .12)) !important;
	border-color: rgba(246, 183, 60, .42) !important;
	color: #fbbf24 !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-team-number {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	align-self: flex-start;
	width: fit-content;
	max-width: 100%;
	min-height: 0;
	padding: 5px 9px !important;
	line-height: 1.2 !important;
	white-space: nowrap;
	border-radius: 999px !important;
	font-size: 12px !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first {
	padding-top: clamp(28px, 3vw, 38px);
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first::after {
	right: 16px;
	top: 12px;
	max-width: calc(100% - 32px);
	padding: 5px 9px;
	line-height: 1.15;
	white-space: nowrap;
	box-sizing: border-box;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-rank,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item-rank {
	flex: 0 0 auto;
	line-height: 1;
	white-space: nowrap;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first-content,
.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-item-info {
	min-width: 0;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-empty {
	display: none !important;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: 18px;
}

@media (min-width: 1180px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-head {
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 0;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-head > div:not(.fct-staff-poster-empty) {
	min-width: 0;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-preview {
	width: 82px;
	height: 118px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-card .fct-staff-card-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0 0 5px;
}

.fct-directory.fct-seamless-cinematic[data-fct-module="staff_dashboard"] .fct-staff-poster-card .fct-staff-card-subtitle {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 820px) {
	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first {
		padding-top: 18px;
	}

	.fct-directory.fct-seamless-cinematic[data-fct-module="trailer_contest"] .fct-lb-first::after {
		justify-self: start;
		white-space: normal;
	}
}

/* v42-13-94: final mobile override for public profile hero photo/back link. */
.fct-profile-back-row {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 18px;
}

.fct-profile-back-row .fct-profile-back-link {
	margin-bottom: 0;
}

@media (min-width: 701px) {
	.fct-public-profile-content {
		padding-top: 34px !important;
	}
}

@media (max-width: 700px) {
	.fct-public-profile .fct-public-profile-hero {
		min-height: auto !important;
		height: auto !important;
		overflow: hidden !important;
	}

	.fct-public-profile .fct-public-profile-hero-inner {
		display: block !important;
		padding: 42px 0 34px !important;
		text-align: center !important;
	}

	.fct-public-profile .fct-public-profile-photo {
		display: none !important;
	}

	.fct-public-profile .fct-public-profile-intro {
		width: 100% !important;
		max-width: 360px !important;
		margin: 0 auto !important;
	}

	.fct-profile-back-row {
		justify-content: center;
		margin-bottom: 16px;
	}
}


/* Admin dashboard custom content editors */
.fct-admin-dashboard-wrap .fct-editor-wrap {
	border: 1px solid rgba(166, 211, 244, .24);
	border-radius: 14px;
	background: rgba(7, 14, 25, .72);
	box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
	padding: 12px;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .fct-editor-tabs {
	margin-bottom: 12px;
	padding-bottom: 10px;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .fct-tab-btn {
	color: var(--nsff-text) !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .fct-tab-btn.fct-tab-active {
	color: #ffffff !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .fct-raw-html-editor,
.fct-admin-dashboard-wrap .fct-editor-wrap textarea.wp-editor-area {
	min-height: 420px !important;
	resize: vertical;
	white-space: pre-wrap;
	tab-size: 2;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
	font-size: 14px !important;
	line-height: 1.65 !important;
	background: linear-gradient(180deg, rgba(8, 18, 31, .98), rgba(4, 10, 20, .98)) !important;
	border: 1px solid rgba(166, 211, 244, .28) !important;
	border-radius: 12px !important;
	color: #eaf2ff !important;
	caret-color: #93c5fd !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03), 0 12px 28px rgba(0, 0, 0, .20) !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .fct-raw-html-editor:focus,
.fct-admin-dashboard-wrap .fct-editor-wrap textarea.wp-editor-area:focus {
	border-color: rgba(147, 197, 253, .72) !important;
	box-shadow: 0 0 0 3px rgba(147, 197, 253, .16), inset 0 0 0 1px rgba(255, 255, 255, .04) !important;
	outline: none !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-tinymce,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-container,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-panel {
	border-color: rgba(166, 211, 244, .28) !important;
	background: #08121f !important;
	color: #eaf2ff !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-toolbar-grp,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-statusbar {
	border-color: rgba(166, 211, 244, .24) !important;
	background: #0b1a2a !important;
	color: #cfe3ff !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-toolbar,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-flow-layout,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-btn-group {
	background: transparent !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-btn,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-listbox,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-menubtn {
	border: 1px solid rgba(166, 211, 244, .30) !important;
	border-radius: 6px !important;
	background: #11263a !important;
	box-shadow: none !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-btn:hover,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-btn:focus,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-listbox:hover,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-menubtn:hover {
	border-color: rgba(147, 197, 253, .78) !important;
	background: #173654 !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-btn.mce-active,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-btn:active {
	background: #1e4b73 !important;
	border-color: rgba(191, 219, 254, .82) !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-btn button,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-listbox button,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-menubtn button {
	display: inline-block !important;
	width: auto !important;
	min-width: 0 !important;
	min-height: 28px !important;
	height: 28px !important;
	padding: 3px 8px !important;
	border: 0 !important;
	border-radius: 4px !important;
	background: transparent !important;
	color: #f8fbff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 20px !important;
	box-shadow: none !important;
	text-shadow: none !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-ico,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-txt,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-path,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-wordcount,
.fct-admin-dashboard-wrap .fct-editor-wrap .mce-branding {
	color: #f8fbff !important;
	text-shadow: none !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-caret {
	border-top-color: #f8fbff !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-separator {
	border-color: rgba(166, 211, 244, .28) !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap .mce-edit-area {
	background: #071421 !important;
	border-color: rgba(166, 211, 244, .20) !important;
}

.fct-admin-dashboard-wrap .fct-editor-wrap iframe {
	background: #071421 !important;
	color-scheme: dark;
}

/* ==========================================================
   Admin settings polish v42.13.129
   Registration windows + floating save bar
   ========================================================== */
.fct-admin-dashboard-wrap {
	padding-bottom: 118px !important;
}

.fct-admin-dashboard-wrap .fct-admin-u-154 {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 18px !important;
	align-items: stretch !important;
}

.fct-admin-dashboard-wrap .fct-registration-tier-row,
.fct-admin-dashboard-wrap .fct-admin-u-155 {
	min-width: 0 !important;
}

.fct-admin-dashboard-wrap .fct-admin-u-160 {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 14px !important;
	align-items: start !important;
}

.fct-admin-dashboard-wrap .fct-admin-u-160 > div {
	min-width: 0 !important;
}

.fct-admin-dashboard-wrap .fct-registration-tier-row input[type="datetime-local"],
.fct-admin-dashboard-wrap .fct-admin-u-160 input[type="datetime-local"] {
	width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box !important;
	font-size: 14px !important;
	line-height: 1.35 !important;
	color-scheme: dark !important;
}

.fct-admin-dashboard-wrap .fct-admin-u-162 {
	position: fixed !important;
	right: max(22px, calc((100vw - 1280px) / 2 + 22px)) !important;
	bottom: 22px !important;
	width: min(620px, calc(100vw - 44px)) !important;
	margin: 0 !important;
	padding: 14px 16px !important;
	border: 1px solid rgba(166, 211, 244, .28) !important;
	border-radius: 18px !important;
	background: linear-gradient(135deg, rgba(13, 21, 34, .96), rgba(15, 23, 42, .94)) !important;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .44), inset 0 1px 0 rgba(226, 245, 255, .08) !important;
	backdrop-filter: blur(14px) !important;
	-webkit-backdrop-filter: blur(14px) !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 14px !important;
	z-index: 99999 !important;
}

.fct-admin-dashboard-wrap .fct-admin-u-163 {
	min-height: 22px !important;
	line-height: 1.35 !important;
	font-size: 13px !important;
	color: #86efac !important;
}

.fct-admin-dashboard-wrap .fct-admin-u-164 {
	white-space: nowrap !important;
	box-shadow: 0 14px 32px rgba(37, 99, 235, .26) !important;
}

@media (max-width: 980px) {
	.fct-admin-dashboard-wrap .fct-admin-u-154 {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 720px) {
	.fct-admin-dashboard-wrap {
		padding-bottom: 150px !important;
	}

	.fct-admin-dashboard-wrap .fct-admin-u-160 {
		grid-template-columns: 1fr !important;
	}

	.fct-admin-dashboard-wrap .fct-admin-u-162 {
		left: 12px !important;
		right: 12px !important;
		bottom: 12px !important;
		width: auto !important;
		flex-wrap: wrap !important;
		justify-content: stretch !important;
	}

	.fct-admin-dashboard-wrap .fct-admin-u-163 {
		width: 100% !important;
	}

	.fct-admin-dashboard-wrap .fct-admin-u-164 {
		width: 100% !important;
	}
}

/* Payment status controls */
.fct-admin-dashboard-wrap .fct-payment-status-table td {
	vertical-align: middle !important;
}

.fct-admin-dashboard-wrap .fct-payment-status-control {
	display: grid !important;
	grid-template-columns: minmax(130px, 1fr) 86px auto !important;
	gap: 8px !important;
	align-items: center !important;
	min-width: 320px !important;
}

.fct-admin-dashboard-wrap .fct-payment-status-control select,
.fct-admin-dashboard-wrap .fct-payment-status-control input[type="number"] {
	width: 100% !important;
	min-height: 36px !important;
	border: 1px solid rgba(166, 211, 244, .28) !important;
	border-radius: 10px !important;
	background: rgba(15, 23, 42, .94) !important;
	color: #eaf2ff !important;
	font-size: 13px !important;
	line-height: 1.25 !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05) !important;
}

.fct-admin-dashboard-wrap .fct-payment-status-control select:focus,
.fct-admin-dashboard-wrap .fct-payment-status-control input[type="number"]:focus {
	outline: none !important;
	border-color: rgba(125, 211, 252, .68) !important;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, .18) !important;
}

.fct-admin-dashboard-wrap .fct-payment-status-save {
	min-height: 36px !important;
	border: 1px solid rgba(125, 211, 252, .34) !important;
	border-radius: 10px !important;
	background: rgba(14, 165, 233, .18) !important;
	color: #e0f7ff !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	padding: 0 12px !important;
	cursor: pointer !important;
}

.fct-admin-dashboard-wrap .fct-payment-status-save:hover {
	background: rgba(14, 165, 233, .28) !important;
	border-color: rgba(125, 211, 252, .58) !important;
}

.fct-admin-dashboard-wrap .fct-admin-notice.is-success {
	margin: 0 0 16px !important;
	padding: 12px 14px !important;
	border: 1px solid rgba(74, 222, 128, .35) !important;
	border-radius: 14px !important;
	background: rgba(22, 163, 74, .12) !important;
	color: #bbf7d0 !important;
	font-weight: 700 !important;
}

@media (max-width: 760px) {
	.fct-admin-dashboard-wrap .fct-payment-status-control {
		grid-template-columns: 1fr !important;
		min-width: 220px !important;
	}
}

/* Payment bulk status controls */
.fct-admin-dashboard-wrap .fct-payment-bulk-panel {
	margin-bottom: 18px !important;
}

.fct-admin-dashboard-wrap .fct-payment-bulk-form {
	margin-top: 14px !important;
}

.fct-admin-dashboard-wrap .fct-payment-bulk-grid {
	display: grid !important;
	grid-template-columns: minmax(220px, 1.2fr) minmax(170px, .8fr) minmax(190px, .9fr) auto !important;
	gap: 12px !important;
	align-items: end !important;
}

.fct-admin-dashboard-wrap .fct-payment-bulk-grid label {
	display: grid !important;
	gap: 6px !important;
	margin: 0 !important;
	color: #dbeafe !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

.fct-admin-dashboard-wrap .fct-payment-bulk-grid select,
.fct-admin-dashboard-wrap .fct-payment-bulk-grid input[type="number"] {
	width: 100% !important;
	min-height: 42px !important;
	border: 1px solid rgba(166, 211, 244, .28) !important;
	border-radius: 12px !important;
	background: rgba(15, 23, 42, .94) !important;
	color: #eaf2ff !important;
	font-size: 14px !important;
	line-height: 1.25 !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05) !important;
}

.fct-admin-dashboard-wrap .fct-payment-bulk-grid select:focus,
.fct-admin-dashboard-wrap .fct-payment-bulk-grid input[type="number"]:focus {
	outline: none !important;
	border-color: rgba(125, 211, 252, .68) !important;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, .18) !important;
}

.fct-admin-dashboard-wrap .fct-payment-bulk-actions {
	display: flex !important;
	gap: 8px !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: wrap !important;
}

.fct-admin-dashboard-wrap .fct-payment-status-table input[data-fct-payment-row-check] {
	width: 18px !important;
	height: 18px !important;
	accent-color: #38bdf8 !important;
}

@media (max-width: 1100px) {
	.fct-admin-dashboard-wrap .fct-payment-bulk-grid {
		grid-template-columns: 1fr 1fr !important;
	}

	.fct-admin-dashboard-wrap .fct-payment-bulk-actions {
		justify-content: flex-start !important;
	}
}

@media (max-width: 720px) {
	.fct-admin-dashboard-wrap .fct-payment-bulk-grid {
		grid-template-columns: 1fr !important;
	}
}
