/**
 * TLT Draft Night Raffle v0.1.0-beta.10
 * One owned component. No global visual rules outside the raffle page.
 */

body.tlt-dnr-page .entry-header,
body.tlt-dnr-page .page-header {
	display: none !important;
}

body.tlt-dnr-page .content-area,
body.tlt-dnr-page .site-main,
body.tlt-dnr-page .entry-content,
body.tlt-dnr-page .entry-content-wrap,
body.tlt-dnr-page .content-container,
body.tlt-dnr-page #primary {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.tlt-dnr-page .content-area {
	background: #070908;
}

html.tlt-dnr-overlay-open,
html.tlt-dnr-overlay-open body {
	overflow: hidden;
}

.tlt-dnr {
	--dnr-black: #070908;
	--dnr-panel: rgba(9, 12, 10, .94);
	--dnr-panel-solid: #0b0e0c;
	--dnr-forest: #071d17;
	--dnr-forest-2: #123629;
	--dnr-cream: #f4efe6;
	--dnr-cream-soft: #cfc7ba;
	--dnr-orange: #f26a1b;
	--dnr-orange-bright: #ff8b45;
	--dnr-gold: #e1b457;
	--dnr-green: #9bbf82;
	--dnr-teal: #6fa7a0;
	--dnr-blue: #61aee6;
	--dnr-red: #e35f5f;
	--dnr-line: rgba(244, 239, 230, .17);
	--dnr-line-strong: rgba(244, 239, 230, .34);
	position: relative;
	isolation: isolate;
	width: 100%;
	min-width: 0;
	min-height: max(760px, 100svh);
	overflow: hidden;
	background:
		radial-gradient(circle at 50% -10%, rgba(22, 67, 52, .25), transparent 46%),
		var(--dnr-black);
	color: var(--dnr-cream);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.25;
}

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

.tlt-dnr button,
.tlt-dnr input,
.tlt-dnr textarea {
	font: inherit;
}

.tlt-dnr button {
	color: inherit;
}

.tlt-dnr button:focus-visible,
.tlt-dnr input:focus-visible,
.tlt-dnr textarea:focus-visible {
	outline: 3px solid var(--dnr-cream);
	outline-offset: 3px;
}

.tlt-dnr [hidden] {
	display: none !important;
}

.tlt-dnr__stage {
	position: absolute;
	z-index: 0;
	inset: 0;
	min-height: inherit;
	overflow: hidden;
	background: #050706;
}

.tlt-dnr__stage-image {
	position: absolute;
	inset: 0 auto auto 0;
	display: block;
	width: 100%;
	height: auto;
	min-height: 100%;
	object-fit: cover;
	object-position: center top;
	user-select: none;
	pointer-events: none;
	transition: opacity .4s ease, filter .5s ease, transform 1s ease;
}

.tlt-dnr__stage-image--ready {
	opacity: 1;
}

.tlt-dnr__stage-image--action {
	opacity: 0;
}

.tlt-dnr.is-spinning .tlt-dnr__stage-image--ready {
	opacity: .12;
}

.tlt-dnr.is-spinning .tlt-dnr__stage-image--action {
	opacity: 1;
	animation: tlt-dnr-machine-pulse .34s ease-in-out infinite alternate;
}

.tlt-dnr__stage-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(2, 4, 3, .04) 0%, rgba(2, 4, 3, 0) 42%, rgba(2, 4, 3, .28) 68%, rgba(2, 4, 3, .92) 100%),
		radial-gradient(circle at 52% 34%, transparent 28%, rgba(0, 0, 0, .23) 100%);
	pointer-events: none;
	transition: background .5s ease;
}

.tlt-dnr.lights-dim .tlt-dnr__stage-shade {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, .58) 100%),
		radial-gradient(circle at 58% 62%, rgba(242, 106, 27, .03), rgba(0, 0, 0, .46) 66%);
}

.tlt-dnr__light-rig {
	position: absolute;
	inset: 0;
	opacity: 0;
	background:
		radial-gradient(circle at 55% 65%, rgba(255, 139, 69, .30), transparent 11%),
		linear-gradient(105deg, transparent 0 46%, rgba(225, 180, 87, .08) 53%, transparent 60%);
	pointer-events: none;
	transition: opacity .2s ease;
}

.tlt-dnr__drop-ball {
	display: none;
}

.tlt-dnr.is-revealing .tlt-dnr__light-rig {
	opacity: 1;
	animation: tlt-dnr-reveal-light .8s ease-out both;
}

.tlt-dnr__top-deck {
	position: absolute;
	z-index: 5;
	top: clamp(14px, 2.1vw, 34px);
	left: clamp(16px, 2.4vw, 42px);
	right: clamp(16px, 2.4vw, 42px);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	pointer-events: none;
}

.tlt-dnr__brand-lockup {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 10px 16px 10px 10px;
	border: 1px solid rgba(244, 239, 230, .20);
	border-radius: 15px;
	background: rgba(7, 9, 8, .80);
	box-shadow: 0 10px 34px rgba(0, 0, 0, .42), inset 0 0 0 1px rgba(255, 255, 255, .025);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	pointer-events: auto;
}

.tlt-dnr__brand-lockup > img {
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	object-fit: cover;
	border: 1px solid rgba(244, 239, 230, .28);
	border-radius: 10px;
	box-shadow: 0 0 24px rgba(242, 106, 27, .15);
}

.tlt-dnr__brand-copy {
	min-width: 0;
}

.tlt-dnr__brand-copy p,
.tlt-dnr__drawer-head p,
.tlt-dnr__modal-head p,
.tlt-dnr__watch-gate p {
	margin: 0 0 2px;
	color: var(--dnr-orange-bright);
	font-family: "Arial Narrow", "Nimbus Sans Narrow", Impact, sans-serif;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.tlt-dnr__brand-copy h1 {
	margin: 0;
	max-width: 650px;
	color: var(--dnr-cream);
	font-family: Impact, "Arial Narrow", "Nimbus Sans Narrow", sans-serif;
	font-size: clamp(25px, 2.6vw, 42px);
	font-weight: 500;
	line-height: .96;
	letter-spacing: .026em;
	text-transform: uppercase;
	white-space: nowrap;
}

.tlt-dnr__brand-copy > span {
	display: block;
	margin-top: 5px;
	color: rgba(244, 239, 230, .67);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.tlt-dnr__top-actions {
	display: flex;
	align-items: center;
	gap: 7px;
	pointer-events: auto;
}

.tlt-dnr__sound-cluster {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
}

.tlt-dnr__mix-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 42px;
	min-height: 36px;
	padding: 0 8px;
	border: 1px solid rgba(244, 239, 230, .18);
	border-radius: 999px;
	background: rgba(7, 9, 8, .78);
	color: rgba(244, 239, 230, .62);
	cursor: pointer;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tlt-dnr__mix-toggle:hover,
.tlt-dnr__mix-toggle[aria-expanded="true"] {
	border-color: rgba(225, 180, 87, .52);
	color: var(--dnr-cream);
}

.tlt-dnr__sound-panel {
	position: absolute;
	z-index: 40;
	top: calc(100% + 9px);
	right: 0;
	width: 270px;
	padding: 11px;
	border: 1px solid rgba(244, 239, 230, .25);
	border-radius: 13px;
	background: rgba(7, 10, 8, .98);
	box-shadow: 0 20px 55px rgba(0, 0, 0, .72), inset 0 1px 0 rgba(255, 255, 255, .035);
	color: var(--dnr-cream);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.tlt-dnr__sound-panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 9px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--dnr-line);
}

.tlt-dnr__sound-panel-head strong,
.tlt-dnr__sound-panel-head span {
	display: block;
}

.tlt-dnr__sound-panel-head strong {
	font-family: "Arial Narrow", "Nimbus Sans Narrow", Impact, sans-serif;
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tlt-dnr__sound-panel-head span {
	margin-top: 2px;
	color: rgba(244, 239, 230, .48);
	font-size: 7px;
	letter-spacing: .04em;
}

.tlt-dnr__sound-panel-head > button {
	width: 25px;
	height: 25px;
	flex: 0 0 auto;
	padding: 0;
	border: 1px solid rgba(244, 239, 230, .18);
	border-radius: 7px;
	background: rgba(255, 255, 255, .025);
	color: var(--dnr-cream);
	cursor: pointer;
	font-size: 15px;
	line-height: 1;
}

.tlt-dnr__sound-panel > label {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	min-height: 29px;
	color: rgba(244, 239, 230, .67);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.tlt-dnr__sound-panel > label span {
	display: flex;
	justify-content: space-between;
	gap: 5px;
}

.tlt-dnr__sound-panel > label b {
	color: var(--dnr-gold);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 8px;
}

.tlt-dnr__sound-panel input[type="range"] {
	width: 100%;
	accent-color: var(--dnr-orange);
}

.tlt-dnr__utility {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 36px;
	padding: 0 11px;
	border: 1px solid rgba(244, 239, 230, .22);
	border-radius: 999px;
	background: rgba(7, 9, 8, .78);
	color: rgba(244, 239, 230, .72);
	cursor: pointer;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.tlt-dnr__utility:hover {
	border-color: rgba(111, 167, 160, .55);
	color: var(--dnr-cream);
}

.tlt-dnr__machine-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid rgba(155, 191, 130, .38);
	border-radius: 999px;
	background: rgba(5, 17, 13, .88);
	color: var(--dnr-green);
	box-shadow: 0 8px 28px rgba(0, 0, 0, .34);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
	white-space: nowrap;
}

.tlt-dnr__machine-status::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 13px currentColor;
}

.tlt-dnr.is-drawing .tlt-dnr__machine-status,
.tlt-dnr.is-replay .tlt-dnr__machine-status {
	border-color: rgba(227, 95, 95, .52);
	color: var(--dnr-red);
}

.tlt-dnr__reveal {
	position: absolute;
	z-index: 4;
	top: 54%;
	left: 55.5%;
	width: min(32vw, 470px);
	min-width: 290px;
	padding: 14px 18px;
	border: 1px solid rgba(225, 180, 87, .45);
	border-radius: 13px;
	background:
		linear-gradient(135deg, rgba(10, 14, 11, .96), rgba(7, 9, 8, .83)),
		var(--dnr-panel-solid);
	box-shadow: 0 18px 48px rgba(0, 0, 0, .50), inset 0 0 28px rgba(225, 180, 87, .045);
	opacity: 0;
	transform: translate(-10%, 14px);
	transition: opacity .28s ease, transform .28s ease;
	pointer-events: none;
}

.tlt-dnr.is-drawing .tlt-dnr__reveal,
.tlt-dnr.is-complete .tlt-dnr__reveal,
.tlt-dnr.is-replay .tlt-dnr__reveal {
	opacity: 1;
	transform: translate(-10%, 0);
}

.tlt-dnr.is-revealing .tlt-dnr__reveal {
	border-color: rgba(255, 139, 69, .88);
	box-shadow: 0 18px 55px rgba(0, 0, 0, .55), 0 0 42px rgba(242, 106, 27, .24), inset 0 0 28px rgba(225, 180, 87, .08);
}

.tlt-dnr__reveal-kicker {
	display: block;
	color: var(--dnr-gold);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.tlt-dnr__reveal strong {
	display: block;
	min-width: 0;
	margin: 5px 0 2px;
	overflow: hidden;
	color: var(--dnr-cream);
	font-family: "Arial Narrow", "Nimbus Sans Narrow", Impact, sans-serif;
	font-size: clamp(21px, 2vw, 34px);
	line-height: 1;
	letter-spacing: .025em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.tlt-dnr__reveal small {
	display: block;
	color: rgba(244, 239, 230, .50);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.tlt-dnr__ledger {
	position: absolute;
	z-index: 3;
	top: 15%;
	right: 2.1%;
	display: flex;
	flex-direction: column;
	width: min(25vw, 390px);
	height: min(54vw, 585px);
	min-height: 360px;
	overflow: hidden;
	border: 1px solid rgba(244, 239, 230, .23);
	border-radius: 15px;
	background: rgba(5, 8, 6, .87);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .58), inset 0 1px 0 rgba(255, 255, 255, .035);
	opacity: .93;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.tlt-dnr__ledger-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 12px;
	border-bottom: 1px solid var(--dnr-line);
	background: linear-gradient(90deg, rgba(7, 29, 23, .84), rgba(7, 9, 8, .68));
}

.tlt-dnr__ledger-head span {
	display: block;
	color: var(--dnr-orange-bright);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.tlt-dnr__ledger-head strong {
	display: block;
	margin-top: 2px;
	color: var(--dnr-cream);
	font-family: "Arial Narrow", "Nimbus Sans Narrow", sans-serif;
	font-size: 14px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.tlt-dnr__ledger-head small {
	color: var(--dnr-gold);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 9px;
	font-weight: 800;
	white-space: nowrap;
}

.tlt-dnr__ledger-list {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 5px;
	min-height: 0;
	margin: 0;
	padding: 9px;
	overflow-y: auto;
	list-style: none;
	scrollbar-color: rgba(225, 180, 87, .50) rgba(255, 255, 255, .03);
}

.tlt-dnr__ledger-list li {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: center;
	min-height: 32px;
	padding: 4px 8px 4px 5px;
	border: 1px solid rgba(244, 239, 230, .14);
	border-radius: 6px;
	background: rgba(255, 255, 255, .018);
	color: rgba(244, 239, 230, .40);
	transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.tlt-dnr__ledger-list li.is-filled {
	border-color: rgba(225, 180, 87, .34);
	background: linear-gradient(90deg, rgba(225, 180, 87, .08), rgba(255, 255, 255, .02));
	color: var(--dnr-cream);
}

.tlt-dnr__ledger-list li.is-current {
	border-color: rgba(255, 139, 69, .72);
	box-shadow: 0 0 18px rgba(242, 106, 27, .12);
}

.tlt-dnr__ledger-list b {
	color: var(--dnr-gold);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 9px;
	text-align: center;
}

.tlt-dnr__ledger-list span {
	min-width: 0;
	overflow: hidden;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .03em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.tlt-dnr__setup {
	position: absolute;
	z-index: 6;
	left: clamp(15px, 2.1vw, 34px);
	right: clamp(15px, 2.1vw, 34px);
	bottom: clamp(15px, 2.1vw, 30px);
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(244, 239, 230, .24);
	border-radius: 20px;
	background:
		linear-gradient(180deg, rgba(15, 20, 17, .95), rgba(7, 10, 8, .98)),
		var(--dnr-panel-solid);
	box-shadow: 0 22px 70px rgba(0, 0, 0, .66), inset 0 1px 0 rgba(255, 255, 255, .035);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	transition: opacity .26s ease, transform .32s ease;
}

.tlt-dnr__setup::before,
.tlt-dnr__ceremony-bar::before,
.tlt-dnr__final-bar::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--dnr-orange), var(--dnr-gold));
	box-shadow: 0 0 18px rgba(242, 106, 27, .30);
}

.tlt-dnr.is-drawing .tlt-dnr__setup,
.tlt-dnr.is-complete .tlt-dnr__setup,
.tlt-dnr.is-replay .tlt-dnr__setup {
	opacity: 0;
	transform: translateY(calc(100% + 40px));
	pointer-events: none;
}

.tlt-dnr__setup-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 11px 14px 9px 20px;
	border-bottom: 1px solid var(--dnr-line);
	background: linear-gradient(90deg, rgba(7, 29, 23, .76), rgba(7, 9, 8, .1));
}

.tlt-dnr__setup-head > div:first-child {
	display: flex;
	align-items: baseline;
	gap: 12px;
	min-width: 0;
}

.tlt-dnr__setup-head strong {
	font-family: "Arial Narrow", "Nimbus Sans Narrow", Impact, sans-serif;
	font-size: 17px;
	letter-spacing: .065em;
	text-transform: uppercase;
	white-space: nowrap;
}

.tlt-dnr__setup-head > div:first-child span {
	color: rgba(244, 239, 230, .56);
	font-size: 10px;
	font-weight: 650;
	white-space: nowrap;
}

.tlt-dnr__step-lamps {
	display: flex;
	gap: 6px;
	flex: 0 0 auto;
}

.tlt-dnr__step-lamps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 20px;
	border: 1px solid rgba(225, 180, 87, .24);
	border-radius: 4px;
	background: #0b0e0c;
	color: var(--dnr-gold);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 8px;
	font-weight: 800;
}

.tlt-dnr__quick-grid {
	display: grid;
	grid-template-columns: 1.45fr 1.18fr 1.18fr 1.12fr;
	min-width: 0;
}

.tlt-dnr__bank {
	min-width: 0;
	margin: 0;
	padding: 11px 13px 12px;
	border: 0;
	border-right: 1px solid var(--dnr-line);
}

.tlt-dnr__bank:last-child {
	border-right: 0;
}

.tlt-dnr__bank legend {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 0 8px;
	padding: 0;
	color: rgba(244, 239, 230, .68);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.tlt-dnr__bank legend b,
.tlt-dnr__drawer-section h3 b {
	margin-right: 7px;
	color: var(--dnr-orange-bright);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 9px;
}

.tlt-dnr__bank legend span {
	margin-left: auto;
	color: rgba(244, 239, 230, .42);
	font-size: 8px;
	letter-spacing: .05em;
}

.tlt-dnr__choices {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.tlt-dnr__choices--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tlt-dnr__choices--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tlt-dnr__choices--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tlt-dnr__choices--names {
	grid-template-columns: 1.35fr .8fr .72fr;
}

.tlt-dnr__choices button {
	position: relative;
	min-width: 0;
	min-height: 36px;
	padding: 7px 7px;
	border: 1px solid rgba(244, 239, 230, .17);
	border-radius: 8px;
	background: rgba(255, 255, 255, .018);
	color: rgba(244, 239, 230, .69);
	cursor: pointer;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .045em;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
	transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.tlt-dnr__choices button:hover {
	border-color: rgba(244, 239, 230, .34);
	color: var(--dnr-cream);
	transform: translateY(-1px);
}

.tlt-dnr__choices button.is-selected {
	border-color: rgba(242, 106, 27, .75);
	background:
		linear-gradient(180deg, rgba(242, 106, 27, .17), rgba(242, 106, 27, .045)),
		rgba(9, 12, 10, .78);
	color: var(--dnr-cream);
	box-shadow: inset 0 0 0 1px rgba(255, 139, 69, .09), 0 0 16px rgba(242, 106, 27, .08);
}

.tlt-dnr__choices button.is-selected::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 12px;
	height: 2px;
	border-radius: 2px;
	background: var(--dnr-orange-bright);
	box-shadow: 0 0 8px rgba(255, 139, 69, .45);
	transform: translateX(-50%);
}

.tlt-dnr__choices button.is-more {
	border-color: rgba(111, 167, 160, .30);
	color: var(--dnr-teal);
}

.tlt-dnr__command-rail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 10px 13px 11px 20px;
	border-top: 1px solid var(--dnr-line);
	background: linear-gradient(90deg, rgba(7, 29, 23, .54), rgba(7, 9, 8, .34) 50%, rgba(242, 106, 27, .045));
}

.tlt-dnr__summary {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.tlt-dnr__summary-light,
.tlt-dnr__ceremony-light {
	width: 9px;
	height: 9px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--dnr-green);
	box-shadow: 0 0 15px rgba(155, 191, 130, .55);
}

.tlt-dnr__summary > div {
	min-width: 0;
}

.tlt-dnr__summary strong {
	display: block;
	overflow: hidden;
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .04em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.tlt-dnr__summary > div > span {
	display: block;
	margin-top: 2px;
	color: rgba(244, 239, 230, .45);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .045em;
	text-transform: uppercase;
}

.tlt-dnr__command-actions,
.tlt-dnr__ceremony-actions,
.tlt-dnr__final-actions,
.tlt-dnr__modal-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tlt-dnr__button {
	min-height: 39px;
	padding: 0 14px;
	border-radius: 9px;
	cursor: pointer;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.tlt-dnr__button--secondary {
	border: 1px solid rgba(244, 239, 230, .27);
	background: rgba(255, 255, 255, .018);
	color: var(--dnr-cream-soft);
}

.tlt-dnr__button--secondary:hover {
	border-color: rgba(111, 167, 160, .58);
	color: var(--dnr-cream);
}

.tlt-dnr__button--primary {
	min-width: 180px;
	border: 1px solid #ff9a5a;
	background: linear-gradient(180deg, #f88238, #d8550e);
	color: #160b05;
	box-shadow: 0 8px 24px rgba(242, 106, 27, .22), inset 0 1px 0 rgba(255, 255, 255, .34);
}

.tlt-dnr__button--primary:hover {
	filter: brightness(1.06);
}

.tlt-dnr__button[disabled] {
	cursor: wait;
	opacity: .54;
}

.tlt-dnr__ceremony-bar,
.tlt-dnr__final-bar {
	position: absolute;
	z-index: 7;
	left: clamp(15px, 2.1vw, 34px);
	right: clamp(15px, 2.1vw, 34px);
	bottom: clamp(15px, 2.1vw, 30px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-width: 0;
	padding: 12px 14px 12px 20px;
	overflow: hidden;
	border: 1px solid rgba(244, 239, 230, .25);
	border-radius: 14px;
	background: rgba(8, 11, 9, .95);
	box-shadow: 0 20px 58px rgba(0, 0, 0, .62);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.tlt-dnr__ceremony-bar > div:first-child {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.tlt-dnr__ceremony-bar strong,
.tlt-dnr__final-meta strong {
	display: block;
	font-family: "Arial Narrow", "Nimbus Sans Narrow", sans-serif;
	font-size: 15px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.tlt-dnr__ceremony-bar small,
.tlt-dnr__final-meta span {
	display: block;
	margin-top: 2px;
	color: rgba(244, 239, 230, .48);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.tlt-dnr__final-bar {
	align-items: center;
}

.tlt-dnr__final-meta {
	min-width: 135px;
}

.tlt-dnr__final-actions {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.tlt-dnr__final-actions .tlt-dnr__button--primary {
	min-width: 125px;
}

.tlt-dnr__scrim {
	position: fixed;
	z-index: 100000;
	inset: 0;
	border: 0;
	background: rgba(2, 4, 3, .69);
	cursor: default;
}

body.tlt-dnr-page .tlt-dnr .tlt-dnr__scrim {
	border: 0 !important;
	border-radius: 0 !important;
	background: rgba(2, 4, 3, .78) !important;
	box-shadow: none !important;
}

.tlt-dnr__drawer,
.tlt-dnr__modal {
	position: fixed;
	z-index: 100001;
	border: 1px solid rgba(244, 239, 230, .28);
	background: linear-gradient(180deg, rgba(15, 20, 17, .99), rgba(6, 9, 7, .995));
	box-shadow: -24px 0 80px rgba(0, 0, 0, .70), inset 0 1px 0 rgba(255, 255, 255, .035);
	color: var(--dnr-cream);
}

.tlt-dnr__drawer {
	top: max(18px, env(safe-area-inset-top));
	right: 18px;
	bottom: max(18px, env(safe-area-inset-bottom));
	display: flex;
	flex-direction: column;
	width: min(450px, calc(100vw - 36px));
	overflow: hidden;
	border-radius: 18px;
	opacity: 0;
	transform: translateX(calc(100% + 34px));
	transition: opacity .22s ease, transform .24s ease;
	pointer-events: none;
}

.tlt-dnr__drawer.is-open {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.tlt-dnr__drawer-head,
.tlt-dnr__modal-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	padding: 17px 17px 14px;
	border-bottom: 1px solid var(--dnr-line);
	background: linear-gradient(90deg, rgba(7, 29, 23, .82), rgba(7, 9, 8, .16));
}

.tlt-dnr__drawer-head h2,
.tlt-dnr__modal-head h2,
.tlt-dnr__watch-gate h2 {
	margin: 0;
	font-family: Impact, "Arial Narrow", "Nimbus Sans Narrow", sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .035em;
	text-transform: uppercase;
}

.tlt-dnr__drawer-head > div > span {
	display: block;
	margin-top: 5px;
	color: rgba(244, 239, 230, .52);
	font-size: 9px;
	line-height: 1.35;
}

.tlt-dnr__drawer-head > button,
.tlt-dnr__modal-head > button {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(244, 239, 230, .22);
	border-radius: 9px;
	background: rgba(255, 255, 255, .025);
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
}

body.tlt-dnr-page .tlt-dnr .tlt-dnr__drawer-head > button,
body.tlt-dnr-page .tlt-dnr .tlt-dnr__modal-head > button {
	border: 1px solid rgba(244, 239, 230, .22) !important;
	background: rgba(255, 255, 255, .025) !important;
	color: var(--dnr-cream) !important;
	box-shadow: none !important;
}

.tlt-dnr__drawer-scroll {
	min-height: 0;
	overflow-y: auto;
	padding: 14px 17px 20px;
	scrollbar-color: rgba(225, 180, 87, .55) rgba(255, 255, 255, .04);
}

.tlt-dnr__drawer-section {
	margin: 0 0 14px;
	padding: 0 0 14px;
	border-bottom: 1px solid var(--dnr-line);
}

.tlt-dnr__drawer-section:last-child {
	border-bottom: 0;
}

.tlt-dnr__drawer-section h3 {
	display: flex;
	align-items: center;
	margin: 0 0 10px;
	color: rgba(244, 239, 230, .76);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.tlt-dnr__number-deck {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
}

.tlt-dnr__number-deck > input,
.tlt-dnr__field-row input {
	width: 100%;
	height: 48px;
	border: 1px solid rgba(225, 180, 87, .45);
	border-radius: 9px;
	background: #090c0a;
	color: var(--dnr-gold);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 21px;
	font-weight: 850;
	text-align: center;
}

.tlt-dnr__number-deck > div {
	display: grid;
	gap: 6px;
}

.tlt-dnr__number-deck input[type="range"] {
	width: 100%;
	accent-color: var(--dnr-orange);
}

.tlt-dnr__number-deck > div > span {
	display: flex;
	justify-content: space-between;
	color: rgba(244, 239, 230, .38);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 8px;
	font-style: normal;
}

.tlt-dnr__number-deck i {
	font-style: normal;
}

.tlt-dnr__field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 9px;
}

.tlt-dnr__field-row label {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 62px;
	align-items: center;
	gap: 8px;
	min-width: 0;
	padding: 8px;
	border: 1px solid rgba(244, 239, 230, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .018);
}

.tlt-dnr__field-row label > span {
	min-width: 0;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.tlt-dnr__field-row input {
	height: 34px;
	font-size: 14px;
}

.tlt-dnr__toggle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 11px;
	border: 1px solid rgba(244, 239, 230, .15);
	border-radius: 9px;
	background: rgba(255, 255, 255, .018);
	cursor: pointer;
}

.tlt-dnr__toggle span {
	min-width: 0;
}

.tlt-dnr__toggle strong,
.tlt-dnr__toggle small {
	display: block;
}

.tlt-dnr__toggle strong {
	font-size: 9px;
	text-transform: uppercase;
}

.tlt-dnr__toggle small {
	margin-top: 3px;
	color: rgba(244, 239, 230, .45);
	font-size: 8px;
}

.tlt-dnr__toggle input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tlt-dnr__toggle i {
	position: relative;
	width: 42px;
	height: 24px;
	flex: 0 0 auto;
	border: 1px solid rgba(244, 239, 230, .22);
	border-radius: 999px;
	background: #080b09;
}

.tlt-dnr__toggle i::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #777d77;
	transition: left .18s ease, background .18s ease;
}

.tlt-dnr__toggle input:checked + i {
	border-color: rgba(155, 191, 130, .55);
	background: rgba(7, 29, 23, .90);
}

.tlt-dnr__toggle input:checked + i::after {
	left: 20px;
	background: var(--dnr-green);
}

.tlt-dnr__drawer-foot {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 8px;
	padding: 12px 17px 15px;
	border-top: 1px solid var(--dnr-line);
	background: #080b09;
}

.tlt-dnr__modal {
	top: 50%;
	left: 50%;
	width: min(610px, calc(100vw - 30px));
	padding-bottom: 16px;
	border-radius: 18px;
	opacity: 0;
	transform: translate(-50%, calc(-50% + 20px));
	transition: opacity .2s ease, transform .2s ease;
	pointer-events: none;
}

.tlt-dnr__modal.is-open {
	opacity: 1;
	transform: translate(-50%, -50%);
	pointer-events: auto;
}

.tlt-dnr__modal > label {
	display: block;
	padding: 14px 17px 7px;
	color: var(--dnr-cream-soft);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tlt-dnr__modal-presets {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding: 0 17px 9px;
}

.tlt-dnr__modal-presets > span {
	margin-right: 2px;
	color: rgba(244, 239, 230, .42);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tlt-dnr__modal-presets button {
	min-height: 27px;
	padding: 0 9px;
	border: 1px solid rgba(111, 167, 160, .30);
	border-radius: 999px;
	background: rgba(111, 167, 160, .045);
	color: var(--dnr-teal);
	cursor: pointer;
	font-size: 7px;
	font-weight: 850;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.tlt-dnr__modal-presets button:hover {
	border-color: rgba(225, 180, 87, .56);
	color: var(--dnr-gold);
}

.tlt-dnr__modal textarea {
	display: block;
	width: calc(100% - 34px);
	min-height: 260px;
	margin: 0 17px;
	padding: 13px;
	border: 1px solid rgba(244, 239, 230, .22);
	border-radius: 10px;
	resize: vertical;
	background: #080b09;
	color: var(--dnr-cream);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 13px;
	line-height: 1.45;
}

.tlt-dnr__modal-count {
	padding: 7px 17px 0;
	color: rgba(244, 239, 230, .48);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: 9px;
	text-align: right;
	text-transform: uppercase;
}

.tlt-dnr__modal-actions {
	justify-content: flex-end;
	padding: 12px 17px 0;
}

.tlt-dnr__watch-gate {
	position: absolute;
	z-index: 8;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(2, 4, 3, .72);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.tlt-dnr__watch-gate > div {
	width: min(530px, 100%);
	padding: 26px;
	border: 1px solid rgba(244, 239, 230, .27);
	border-radius: 17px;
	background: rgba(7, 10, 8, .96);
	box-shadow: 0 20px 70px rgba(0, 0, 0, .67);
	text-align: center;
}

.tlt-dnr__watch-gate h2 {
	font-size: clamp(30px, 5vw, 48px);
}

.tlt-dnr__watch-gate span {
	display: block;
	margin: 10px auto 18px;
	color: rgba(244, 239, 230, .56);
	font-size: 11px;
}

.tlt-dnr__toast {
	position: fixed;
	z-index: 100010;
	right: 18px;
	bottom: max(18px, env(safe-area-inset-bottom));
	max-width: min(390px, calc(100vw - 36px));
	padding: 11px 14px;
	border: 1px solid rgba(155, 191, 130, .40);
	border-radius: 10px;
	background: rgba(5, 17, 13, .96);
	color: var(--dnr-cream);
	box-shadow: 0 18px 50px rgba(0, 0, 0, .54);
	font-size: 10px;
	font-weight: 750;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .18s ease, transform .18s ease;
	pointer-events: none;
}

.tlt-dnr__toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tlt-dnr__toast.is-warning {
	border-color: rgba(242, 106, 27, .62);
	background: rgba(45, 19, 7, .97);
}

/*
 * The permanent TLT rail remains about 70px wide even when collapsed.
 * Keep the room full-bleed, but move every desktop command surface clear of it.
 */
@media (min-width: 761px) {
	.tlt-dnr__setup,
	.tlt-dnr__ceremony-bar,
	.tlt-dnr__final-bar {
		left: clamp(84px, 5vw, 96px);
	}

	.tlt-dnr__top-deck {
		left: clamp(92px, 6vw, 118px);
	}
}

@media (min-width: 1400px) {
	.tlt-dnr__top-deck {
		left: clamp(300px, 17vw, 340px);
	}
}

.tlt-dnr:fullscreen .tlt-dnr__top-deck,
.tlt-dnr:-webkit-full-screen .tlt-dnr__top-deck {
	left: clamp(16px, 2.4vw, 42px);
}

@keyframes tlt-dnr-machine-pulse {
	from { filter: brightness(.95); transform: scale(1); }
	to { filter: brightness(1.06); transform: scale(1.003); }
}

@keyframes tlt-dnr-reveal-light {
	0% { opacity: 0; }
	18% { opacity: 1; }
	100% { opacity: .18; }
}

@media (max-width: 1180px) {
	.tlt-dnr__setup-head > div:first-child span {
		display: none;
	}

	.tlt-dnr__quick-grid {
		grid-template-columns: 1.38fr 1.18fr 1.12fr 1fr;
	}

	.tlt-dnr__bank {
		padding-inline: 10px;
	}

	.tlt-dnr__choices button {
		padding-inline: 5px;
		font-size: 7px;
	}

	.tlt-dnr__utility span:last-child {
		display: none;
	}

	.tlt-dnr__utility {
		width: 36px;
		padding: 0;
	}

	.tlt-dnr__mix-toggle {
		min-width: 36px;
		width: 36px;
		padding: 0;
	}

	.tlt-dnr__mix-toggle span:last-child {
		display: none;
	}

	.tlt-dnr__ledger {
		right: 1.4%;
		width: 26vw;
	}
}

@media (max-width: 760px) {
	body.tlt-dnr-page {
		overflow-x: hidden;
	}

	.tlt-dnr {
		--dnr-mobile-machine-height: clamp(300px, 84vw, 350px);
		min-height: auto;
		overflow: visible;
		padding-bottom: max(10px, env(safe-area-inset-bottom));
	}

	.tlt-dnr__stage {
		position: relative;
		inset: auto;
		width: 100%;
		min-height: 0;
		aspect-ratio: 1672 / 941;
	}

	.tlt-dnr.is-drawing .tlt-dnr__stage,
	.tlt-dnr.is-complete .tlt-dnr__stage,
	.tlt-dnr.is-replay .tlt-dnr__stage {
		min-height: calc(var(--dnr-mobile-machine-height) + 366px);
		aspect-ratio: auto;
		background:
			linear-gradient(
				180deg,
				#050706 0,
				#050706 var(--dnr-mobile-machine-height),
				#070908 var(--dnr-mobile-machine-height),
				#070908 100%
			);
	}

	.tlt-dnr__stage-image {
		width: 100%;
		height: 100%;
		min-height: 0;
		object-fit: cover;
		object-position: center top;
	}

	.tlt-dnr.is-drawing .tlt-dnr__stage-image,
	.tlt-dnr.is-complete .tlt-dnr__stage-image,
	.tlt-dnr.is-replay .tlt-dnr__stage-image {
		height: var(--dnr-mobile-machine-height);
		min-height: 0;
		object-position: center top;
	}

	.tlt-dnr.is-drawing .tlt-dnr__stage-shade,
	.tlt-dnr.is-complete .tlt-dnr__stage-shade,
	.tlt-dnr.is-replay .tlt-dnr__stage-shade,
	.tlt-dnr.is-drawing .tlt-dnr__light-rig,
	.tlt-dnr.is-complete .tlt-dnr__light-rig,
	.tlt-dnr.is-replay .tlt-dnr__light-rig {
		inset: 0 0 auto;
		height: var(--dnr-mobile-machine-height);
	}

	.tlt-dnr__stage-shade {
		background:
			linear-gradient(180deg, rgba(2, 4, 3, .02), rgba(2, 4, 3, .04) 56%, rgba(2, 4, 3, .94) 100%),
			radial-gradient(circle at 50% 35%, transparent, rgba(0, 0, 0, .18));
	}

	.tlt-dnr.is-spinning .tlt-dnr__stage-image--action {
		filter: brightness(1.08) saturate(1.05);
	}

	.tlt-dnr.is-spinning .tlt-dnr__light-rig {
		opacity: .24;
		background:
			radial-gradient(circle at 36% 53%, rgba(225, 180, 87, .28), transparent 24%),
			linear-gradient(105deg, transparent 0 43%, rgba(255, 139, 69, .10) 52%, transparent 62%);
	}

	.tlt-dnr.is-revealing .tlt-dnr__light-rig {
		opacity: .82;
		animation: tlt-dnr-mobile-result-light 1.1s ease-out both;
	}

	.tlt-dnr__drop-ball {
		position: absolute;
		z-index: 4;
		top: clamp(170px, 47vw, 205px);
		left: 61%;
		display: block;
		width: clamp(15px, 4.4vw, 18px);
		aspect-ratio: 1;
		border: 1px solid rgba(255, 241, 190, .72);
		border-radius: 50%;
		background:
			radial-gradient(circle at 35% 28%, #fff8d9 0 8%, #e8c079 28%, #a87025 68%, #55320f 100%);
		box-shadow:
			0 0 7px rgba(255, 213, 118, .82),
			0 0 16px rgba(242, 106, 27, .42);
		opacity: 0;
		pointer-events: none;
		will-change: transform, opacity;
	}

	.tlt-dnr.is-revealing .tlt-dnr__drop-ball {
		animation: tlt-dnr-mobile-ball-drop 1.08s cubic-bezier(.18, .72, .24, 1) both;
	}

	.tlt-dnr__top-deck {
		top: 7px;
		left: 8px;
		right: 8px;
		gap: 6px;
	}

	.tlt-dnr__brand-lockup {
		max-width: calc(100% - 113px);
		gap: 7px;
		padding: 5px 8px 5px 5px;
		border-radius: 10px;
	}

	.tlt-dnr__brand-lockup > img {
		width: 35px;
		height: 35px;
		border-radius: 7px;
	}

	.tlt-dnr__brand-copy p {
		font-size: 6px;
		letter-spacing: .14em;
	}

	.tlt-dnr__brand-copy h1 {
		font-size: clamp(17px, 5.4vw, 23px);
		white-space: nowrap;
	}

	.tlt-dnr__brand-copy > span {
		margin-top: 2px;
		font-size: 5.5px;
		letter-spacing: .07em;
	}

	.tlt-dnr__top-actions {
		gap: 4px;
	}

	.tlt-dnr__sound-cluster {
		gap: 3px;
	}

	.tlt-dnr__utility {
		width: 28px;
		min-height: 27px;
		font-size: 8px;
	}

	.tlt-dnr__mix-toggle {
		min-width: 27px;
		width: 27px;
		min-height: 27px;
		padding: 0;
		font-size: 8px;
	}

	.tlt-dnr__sound-panel {
		position: fixed;
		top: max(50px, calc(env(safe-area-inset-top) + 50px));
		right: 8px;
		width: min(270px, calc(100vw - 16px));
	}

	.tlt-dnr__machine-status {
		min-height: 27px;
		padding: 0 8px;
		gap: 5px;
		font-size: 6px;
		letter-spacing: .07em;
	}

	.tlt-dnr__machine-status::before {
		width: 5px;
		height: 5px;
	}

	.tlt-dnr__setup {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin: -9px 8px 0;
		border-radius: 14px;
	}

	.tlt-dnr.is-drawing .tlt-dnr__setup,
	.tlt-dnr.is-complete .tlt-dnr__setup,
	.tlt-dnr.is-replay .tlt-dnr__setup {
		display: none;
	}

	.tlt-dnr__setup-head {
		padding: 9px 9px 8px 14px;
	}

	.tlt-dnr__setup-head strong {
		font-size: 14px;
	}

	.tlt-dnr__step-lamps {
		gap: 4px;
	}

	.tlt-dnr__step-lamps span {
		width: 22px;
		height: 17px;
		font-size: 6px;
	}

	.tlt-dnr__quick-grid {
		grid-template-columns: 1fr 1fr;
	}

	.tlt-dnr__bank {
		padding: 10px 9px 11px 13px;
		border-right: 1px solid var(--dnr-line);
		border-bottom: 1px solid var(--dnr-line);
	}

	.tlt-dnr__bank:nth-child(2n) {
		border-right: 0;
	}

	.tlt-dnr__bank:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.tlt-dnr__bank legend {
		margin-bottom: 7px;
		font-size: 7px;
	}

	.tlt-dnr__bank legend b,
	.tlt-dnr__bank legend span {
		font-size: 6px;
	}

	.tlt-dnr__choices button {
		min-height: 39px;
		padding: 6px 3px;
		font-size: 6px;
		letter-spacing: .025em;
	}

	.tlt-dnr__command-rail {
		grid-template-columns: 1fr;
		gap: 9px;
		padding: 10px 9px 10px 14px;
	}

	.tlt-dnr__summary strong {
		font-size: 7px;
	}

	.tlt-dnr__summary > div > span {
		font-size: 6px;
	}

	.tlt-dnr__command-actions {
		display: grid;
		grid-template-columns: 1fr 1.32fr;
	}

	.tlt-dnr__command-actions .tlt-dnr__button {
		min-width: 0;
		padding-inline: 7px;
		font-size: 7px;
	}

	.tlt-dnr__ledger {
		top: calc(var(--dnr-mobile-machine-height) + 108px);
		right: 8px;
		bottom: auto;
		left: 8px;
		width: auto;
		height: 250px;
		min-height: 0;
		opacity: 0;
		transition: opacity .2s ease;
	}

	.tlt-dnr.is-drawing .tlt-dnr__ledger,
	.tlt-dnr.is-complete .tlt-dnr__ledger,
	.tlt-dnr.is-replay .tlt-dnr__ledger {
		opacity: .97;
	}

	.tlt-dnr__reveal {
		top: calc(var(--dnr-mobile-machine-height) + 8px);
		right: 8px;
		bottom: auto;
		left: 8px;
		width: auto;
		min-width: 0;
		transform: translateY(12px);
	}

	.tlt-dnr.is-drawing .tlt-dnr__reveal,
	.tlt-dnr.is-complete .tlt-dnr__reveal,
	.tlt-dnr.is-replay .tlt-dnr__reveal {
		transform: translateY(0);
	}

	.tlt-dnr__ceremony-bar,
	.tlt-dnr__final-bar {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin: -1px 8px 8px;
		border-radius: 12px;
	}

	.tlt-dnr__ceremony-bar {
		display: grid;
		grid-template-columns: 1fr auto;
	}

	.tlt-dnr__ceremony-actions .tlt-dnr__button {
		min-width: 0;
		padding-inline: 9px;
		font-size: 7px;
	}

	.tlt-dnr__final-bar {
		display: block;
	}

	.tlt-dnr__final-meta {
		margin-bottom: 9px;
	}

	.tlt-dnr__final-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tlt-dnr__final-actions .tlt-dnr__button {
		min-width: 0;
		padding-inline: 6px;
		font-size: 7px;
	}

	.tlt-dnr__drawer {
		top: max(8px, env(safe-area-inset-top));
		right: 8px;
		bottom: max(8px, env(safe-area-inset-bottom));
		width: calc(100vw - 16px);
		border-radius: 15px;
	}

	.tlt-dnr__drawer-head h2,
	.tlt-dnr__modal-head h2 {
		font-size: 23px;
	}

	.tlt-dnr__modal {
		max-height: calc(100svh - 16px);
		overflow-y: auto;
	}

	.tlt-dnr__modal textarea {
		min-height: 230px;
	}
}

@media (max-width: 350px) {
	.tlt-dnr__brand-copy h1 {
		font-size: 16px;
	}

	.tlt-dnr__brand-copy > span,
	.tlt-dnr__step-lamps {
		display: none;
	}

	.tlt-dnr__choices button {
		font-size: 5.5px;
	}
}

@keyframes tlt-dnr-mobile-ball-drop {
	0% {
		opacity: 0;
		transform: translate3d(-38px, -18px, 0) scale(.72);
	}
	24% {
		opacity: 1;
	}
	72% {
		opacity: 1;
		transform: translate3d(calc(-50% - 2px), 38px, 0) scale(.94);
	}
	100% {
		opacity: 1;
		transform: translate3d(-50%, 50px, 0) scale(1);
	}
}

@keyframes tlt-dnr-mobile-result-light {
	0% { opacity: .16; filter: brightness(.88); }
	18% { opacity: 1; filter: brightness(1.18); }
	52% { opacity: .66; filter: brightness(1.05); }
	100% { opacity: .38; filter: brightness(1); }
}

@media (prefers-reduced-motion: reduce) {
	.tlt-dnr *,
	.tlt-dnr *::before,
	.tlt-dnr *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
	.tlt-dnr.is-spinning .tlt-dnr__stage-image--action {
		animation: none !important;
		filter: brightness(1.06) saturate(1.03);
	}

	.tlt-dnr.is-revealing .tlt-dnr__light-rig {
		animation: none !important;
		opacity: .58 !important;
	}

	.tlt-dnr.is-revealing .tlt-dnr__drop-ball {
		animation-duration: .42s !important;
		animation-iteration-count: 1 !important;
	}
}
