/* @override 
	http://localhost:8888/fusion-bootlegs/style.css?* */

#track-title,
.transport-time,
.playlist-track-title,
.transport-tooltip {
	font-family: "Bitcount Grid Single", system-ui;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings:
		"slnt" 0,
		"CRSV" 0.5,
		"ELSH" 0,
		"ELXP" 0;
}

:root {
	--ink: #f7f0e6;
	--muted: rgba(247, 240, 230, .6);
	--panel: rgba(10, 9, 8, .74);
	--panel-strong: rgba(7, 7, 6, .9);
	--line: rgba(247, 240, 230, .18);
	--accent: #cbb27a;
	--accent-strong: #cda451;
	--button: rgba(247, 240, 230, .12);
	--button-hover: rgba(247, 240, 230, .24);
	--shadow: 0 24px 80px rgba(0, 0, 0, .48);
	--basefont: Tahoma, ui-sans-serif, system-ui, -apple-system, sans-serif;
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	background: #090807;
}

body {
	position: relative;
	min-height: 100vh;
	margin: 0;
	background-color: transparent;
	color: var(--ink);
	font-family: var(--basefont);
	letter-spacing: 0;
}

.page-background {
	position: fixed;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	opacity: 0;
	transition: opacity 900ms ease;
}

html.is-page-bg-ready .page-background {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.page-background {
		transition: none;
	}
}

a {
	color: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.bootlegs-shell {
	--shell-gap: clamp(18px, 3vw, 42px);
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(400px, 480px) minmax(400px, 480px);
	grid-template-areas: "player playlist";
	gap: var(--shell-gap);
	justify-content: center;
	width: min(1180px, calc(100% - 32px));
	min-height: 100vh;
	margin: 0 auto;
	padding: clamp(20px, 5vw, 64px) 0;
	align-items: center;
}

.player-panel,
.playlist-panel {
	border: 1px solid var(--line);
	background: var(--panel);
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
}

.player-panel {
	position: relative;
	grid-area: player;
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 0;
	padding: clamp(22px, 4vw, 38px);
	border-radius: 8px;
}

.fusion-contact-trigger {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	min-height: 38px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 5px;
	background: var(--panel);
	color: var(--accent-strong);
	cursor: pointer;
	box-shadow: var(--shadow);
	transition:
		background .12s ease,
		color .12s ease,
		filter .12s ease;
	transform: translateX(-50%);
}

.fusion-contact-trigger:hover {
	background: var(--panel-strong);
	color: var(--accent);
	filter: brightness(1.08);
}

.fusion-contact-trigger:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
}

.contact-icon {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contact-dialog {
	width: min(88vw, 360px);
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
}

.contact-dialog::backdrop {
	background: rgba(0, 0, 0, .62);
	backdrop-filter: blur(3px);
}

.contact-dialog__panel {
	padding: 30px;
	border: 1px solid rgba(247, 240, 230, .22);
	border-radius: 8px;
	background: rgba(7, 7, 6, .94);
	box-shadow: var(--shadow);
	text-align: center;
}

.contact-dialog__label {
	margin: 0 0 16px;
	color: var(--accent-strong);
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.contact-dialog__email {
	display: block;
	margin: 0 0 22px;
	color: #fff;
	font-family: "Bitcount Grid Single", system-ui;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings:
		"slnt" 0,
		"CRSV" 0.5,
		"ELSH" 0,
		"ELXP" 0;
	font-size: clamp(1.05rem, 4vw, 1.35rem);
	line-height: 1.25;
	overflow-wrap: anywhere;
	text-decoration: none;
}

.contact-dialog__email:hover,
.contact-dialog__email:focus-visible {
	outline: none;
	text-decoration: underline;
}

.contact-dialog__copy {
	min-height: 36px;
	padding: 0 18px;
	border: 1px solid rgba(247, 240, 230, .28);
	border-radius: 5px;
	background: var(--button);
	color: var(--ink);
	cursor: pointer;
	font: 700 .78rem/1.1 var(--basefont);
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact-dialog__copy:hover,
.contact-dialog__copy:focus-visible {
	background: var(--button-hover);
	outline: none;
}

.brand-mark {
	display: block;
}

.brand-mark svg {
	margin-bottom: -20px;
}

.now-playing {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.album-label,
#track-count,
.status-message {
	margin: 0;
	font-size: .82rem;
	line-height: 1.45;
}

#track-count {
	text-transform: uppercase;
	color: var(--muted);
}

.album-label {
	color: var(--accent-strong);
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-align: center;
}

h1,
h2 {
	margin: 0;
	letter-spacing: 0;
}

.now-playing h1 {
	margin-top: 10px;
	--track-title-leading-space: .875em;
	position: relative;
	display: block;
	min-height: clamp(2.75rem, 6vw, 0);
	padding: .3em 0;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, .34);
	border-radius: 8px;
	background:
		linear-gradient(rgba(255, 255, 255, .04) 50%, rgba(0, 0, 0, .1) 50%),
		#080403;
	background-size: 100% 4px, auto;
	box-shadow:
		inset 0 0 18px rgba(179, 22, 0, .18),
		0 0 18px rgba(179, 22, 0, .08);
	color: #ff2a0f;
	font-size: clamp(1.45rem, 3vw, 2.3rem);
	line-height: 1.05;
	text-shadow:
		0 0 4px rgba(255, 42, 15, .76),
		0 0 14px rgba(179, 22, 0, .55);
	white-space: nowrap;
	overflow-wrap: normal;
	word-break: normal;
}

.now-playing h1::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(8, 4, 3, .96), transparent 12%, transparent 88%, rgba(8, 4, 3, .96));
	pointer-events: none;
}

.track-title-marquee {
	display: inline-flex;
	width: max-content;
	min-width: 100%;
	animation: track-title-scroll 9s steps(var(--track-title-steps, 120), end) infinite;
	animation-play-state: paused;
	will-change: transform;
}

#track-title.is-playing .track-title-marquee {
	animation-play-state: running;
}

.track-title-marquee-copy {
	flex: 0 0 auto;
	padding-left: var(--track-title-leading-space);
	padding-right: 1em;
}

.track-title-marquee-separator {
	flex: 0 0 auto;
}

@keyframes track-title-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-33.333%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.track-title-marquee {
		animation: none;
		transform: none;
	}
}

#audio-player {
	display: none;
}

.player-panel:not(.has-track) .player-actions {
	display: none;
}

.player-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.track-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--button);
	color: var(--ink);
	text-decoration: none;
	cursor: pointer;
}

.track-download:hover,
.track-download:focus-visible {
	background: var(--button-hover);
	outline: none;
}

.transport-prototype {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 0 0 100%;
	gap: 0;
	align-items: stretch;
	width: 100%;
	padding: 10px 14px 10px;
	overflow: hidden;
	border: 1px solid rgba(247, 240, 230, .12);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 16% 84%, rgba(255, 255, 255, .08)),
		linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, 0) 22%, rgba(0, 0, 0, .34)),
		#11100e;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .16),
		inset 0 -10px 24px rgba(0, 0, 0, .46),
		0 12px 24px rgba(0, 0, 0, .24);
}

.transport-prototype,
.transport-prototype * {
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
}

.transport-prototype::before,
.transport-prototype::after {
	position: absolute;
	right: 14px;
	left: 14px;
	content: "";
	pointer-events: none;
}

.transport-keys {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 8px;
	align-items: end;
	justify-content: center;
	width: 100%;
}

.transport-divider {
	position: relative;
	z-index: 1;
	height: 1px;
	margin: 10px 2px 10px;
	background: linear-gradient(90deg, transparent, rgba(247, 240, 230, .4) 12%, rgba(247, 240, 230, .2) 88%, transparent);
	box-shadow:
		0 1px 0 rgba(0, 0, 0, .54),
		0 -1px 0 rgba(255, 255, 255, .08);
}

.transport-key {
	appearance: none;
	position: relative;
	z-index: 1;
	display: inline-flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 0;
	max-width: 68px;
	height: 54px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 5px;
	color: #1d2325;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	text-decoration: none;
	touch-action: manipulation;
	user-select: none;
	-webkit-user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		box-shadow .08s ease,
		transform .08s ease,
		filter .08s ease;
	box-shadow:
		inset 0 2px 1px rgba(255, 255, 255, .54),
		inset 0 -5px 0 rgba(0, 0, 0, .18),
		0 7px 0 #070707,
		0 9px 16px rgba(0, 0, 0, .56);
}

.transport-key:active,
.transport-key.is-pressed {
	transform: translateY(2px);
	filter: brightness(.92);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .28),
		inset 0 5px 8px rgba(0, 0, 0, .24),
		inset 0 -2px 0 rgba(255, 255, 255, .08),
		0 5px 0 #050505,
		0 7px 12px rgba(0, 0, 0, .44);
}

.transport-key:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
}

body:not(.can-download) .transport-download {
	display: none;
}

.transport-tooltip {
	position: relative;
	z-index: 1;
	min-height: 1em;
	margin: 0 2px -4px;
	color: rgba(226, 184, 107, .78);
	font-size: .82rem;
	line-height: 1;
	letter-spacing: 0;
	opacity: 0;
	pointer-events: none;
	text-align: center;
	white-space: nowrap;
	text-transform: uppercase;
}

.transport-tooltip.is-visible {
	opacity: 1;
}

.transport-key + .transport-key {
	margin-left: 0;
}

.transport-key::before {
	position: absolute;
	inset: 4px 5px auto;
	height: 16px;
	border-radius: 3px 3px 7px 7px;
	content: "";
	background: linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .06));
	pointer-events: none;
}

.transport-key:active::before,
.transport-key.is-pressed::before {
	height: 10px;
	opacity: .62;
}

.transport-key::after {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	content: "";
	background: linear-gradient(115deg, rgba(255, 255, 255, .2), transparent 42%);
	box-shadow: inset -1px 0 0 rgba(0, 0, 0, .14);
	pointer-events: none;
}

.transport-key-cream {
	background:
		linear-gradient(180deg, #f2e0b2 0%, #d9c38c 52%, #b79a5d 100%);
}

.transport-key-teal {
	background:
		linear-gradient(180deg, #21d6d1 0%, #00aaa7 50%, #087b7d 100%);
	color: #092224;
}

.transport-key-red {
	background:
		linear-gradient(180deg, #ff7551 0%, #f04e2c 52%, #b22c1e 100%);
	color: #1c1714;
}

.transport-symbol {
	position: relative;
	z-index: 2;
	display: block;
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .18));
}

.transport-symbol-pause {
	width: 24px;
	height: 21px;
	background:
		linear-gradient(90deg, currentColor 0 38%, transparent 38% 62%, currentColor 62% 100%);
}

.transport-symbol-stop {
	width: 19px;
	height: 19px;
	background: currentColor;
}

.transport-symbol-play {
	width: 0;
	height: 0;
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	border-left: 21px solid currentColor;
	transform: translateX(2px);
}

.transport-symbol-skip {
	width: 27px;
	height: 24px;
}

.transport-symbol-skip::before,
.transport-symbol-skip::after {
	position: absolute;
	top: 0;
	width: 0;
	height: 0;
	content: "";
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

.transport-symbol-skip-left::before,
.transport-symbol-skip-left::after {
	border-right: 16px solid currentColor;
	transform: translateX(-2px);
}

.transport-symbol-skip-left::before {
	left: 0;
}

.transport-symbol-skip-left::after {
	right: 0;
}

.transport-symbol-skip-right::before,
.transport-symbol-skip-right::after {
	border-left: 16px solid currentColor;
	transform: translateX(2px);
}

.transport-symbol-skip-right::before {
	left: 0;
}

.transport-symbol-skip-right::after {
	right: 0;
}

.transport-symbol-download {
	width: 24px;
	height: 24px;
	background: linear-gradient(currentColor, currentColor) center 18px / 21px 4px no-repeat;
}

.transport-symbol-download::before {
	position: absolute;
	top: 3px;
	left: 50%;
	width: 0;
	height: 0;
	content: "";
	border-right: 13px solid transparent;
	border-left: 13px solid transparent;
	border-top: 15px solid currentColor;
	transform: translateX(-50%);
}

.transport-scrubber {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 39px minmax(0, 1fr) 39px;
	column-gap: 8px;
	align-items: center;
	width: 100%;
	min-height: 44px;
	padding: 0 5px 2px;
}

.transport-time {
	color: rgba(226, 184, 107, .78);
	line-height: 1;
	text-align: center;
	transform: translateY(3px);
	white-space: nowrap;
}

.transport-scrubber-input {
	--scrub-progress: 0%;
	appearance: none;
	display: block;
	width: 100%;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.transport-scrubber-input:disabled {
	cursor: default;
	opacity: .72;
}

.transport-scrubber-input:focus {
	outline: none;
}

.transport-scrubber-input:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 5px;
}

.transport-scrubber-input::-webkit-slider-runnable-track {
	height: 8px;
	border-radius: 999px;
	background:
		linear-gradient(90deg, rgba(226, 184, 107, .3) 0 var(--scrub-progress), transparent var(--scrub-progress) 100%),
		linear-gradient(180deg, #020202, #070706 52%, #151413);
	box-shadow:
		inset 0 2px 4px rgba(80, 80, 40, .5),
		inset 0 -1px 0 rgba(255, 255, 255, .08),
		0 1px 0 rgba(255, 255, 255, .16);
}

.transport-scrubber-input::-moz-range-track {
	height: 8px;
	border: 0;
	border-radius: 999px;
	background:
		linear-gradient(90deg, rgba(226, 184, 107, .3) 0 var(--scrub-progress), transparent var(--scrub-progress) 100%),
		linear-gradient(180deg, #020202, #070706 52%, #151413);
	box-shadow:
		inset 0 2px 4px rgba(0, 0, 0, .92),
		inset 0 -1px 0 rgba(255, 255, 255, .08),
		0 1px 0 rgba(255, 255, 255, .12);
}

.transport-scrubber-input::-webkit-slider-thumb {
	appearance: none;
	width: 30px;
	height: 38px;
	margin-top: -15px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 4px;
	background:
		linear-gradient(90deg, transparent 0 39%, rgba(255, 255, 255, .2) 39% 43%, rgba(255, 255, 255, .78) 43% 57%, rgba(255, 255, 255, .2) 57% 61%, transparent 61% 100%),
		linear-gradient(180deg, rgba(255, 255, 255, .2), transparent 26%),
		linear-gradient(180deg, #383a38, #202120 55%, #121312);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .26),
		inset 0 -4px 8px rgba(0, 0, 0, .52),
		0 3px 0 #050505,
		0 8px 14px rgba(0, 0, 0, .5);
}

.transport-scrubber-input::-moz-range-thumb {
	width: 30px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 4px;
	background:
		linear-gradient(90deg, transparent 0 39%, rgba(255, 255, 255, .2) 39% 43%, rgba(255, 255, 255, .78) 43% 57%, rgba(255, 255, 255, .2) 57% 61%, transparent 61% 100%),
		linear-gradient(180deg, rgba(255, 255, 255, .2), transparent 26%),
		linear-gradient(180deg, #383a38, #202120 55%, #121312);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .26),
		inset 0 -4px 8px rgba(0, 0, 0, .52),
		0 3px 0 #050505,
		0 8px 14px rgba(0, 0, 0, .5);
}

.playlist-panel {
	grid-area: playlist;
	position: relative;
	min-width: 0;
	max-height: min(720px, calc(100vh - 96px));
	overflow: hidden;
	border-radius: 8px;
}

.playlist-panel::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	height: 140px;
	content: "⌄";
	display: flex;
	align-items: end;
	justify-content: center;
	padding-bottom: 14px;
	background: rgba(0, 0, 0, 0);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 90%);
	color: var(--accent-strong);
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-shadow: 0 1px 8px rgba(0, 0, 0, .8);
	opacity: 0;
	pointer-events: none;
	transition: opacity .16s ease;
}

.playlist-panel.has-more-below::after {
	opacity: 1;
}

.playlist-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	border-bottom: 1px solid var(--line);
	background: var(--panel-strong);
}

.playlist {
	display: grid;
	max-height: calc(min(720px, 100vh - 96px) - 82px);
	margin: 0;
	padding: 0;
	overflow-y: scroll;
	scrollbar-color: rgba(247, 240, 230, .38) rgba(247, 240, 230, .08);
	scrollbar-gutter: stable;
	scrollbar-width: thin;
	list-style: none;
}

.playlist::-webkit-scrollbar {
	width: 10px;
}

.playlist::-webkit-scrollbar-track {
	background: rgba(247, 240, 230, .08);
}

.playlist::-webkit-scrollbar-thumb {
	border: 2px solid rgba(7, 7, 6, .9);
	border-radius: 999px;
	background: rgba(247, 240, 230, .38);
}

.playlist-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	grid-template-areas: "number track download";
	column-gap: 0;
	align-items: center;
	width: 100%;
	padding: 14px 18px 14px 0;
	border-bottom: 1px solid var(--line);
	cursor: pointer;
}

.playlist-item.is-active {
	background: rgba(205, 182, 126, 0.15);

	.playlist-track-title {
		color: var(--accent-strong);
	}
}

.track-number {
	grid-area: number;
	color: var(--accent);
	font-size: .8rem;
	font-weight: 900;
	text-align: center;
}

.track-button {
	grid-area: track;
	display: grid;
	gap: 4px;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.playlist-item:hover .playlist-track-title,
.track-button:focus-visible .playlist-track-title {
	color: #00a6a3;
}

.track-button:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
}

.playlist-track-title {
	overflow: hidden;
	overflow-wrap: normal;
	font-size: 1.2rem;
	line-height: 1.2rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.track-download,
.track-download-placeholder {
	grid-area: download;
	justify-self: end;
	margin-left: 14px;
	width: 42px;
	min-width: 42px;
	padding: 0;
}

.track-download-placeholder {
	min-height: 42px;
	pointer-events: none;
}

.track-download svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.status-message {
	padding: 16px 24px;
}

@media (max-width: 820px) {
	.bootlegs-shell {
		grid-template-columns: 1fr;
		grid-template-areas:
			"player"
			"playlist";
		align-items: start;
		padding: 40px 30px;
	}

	.player-panel {
		margin-bottom: 56px;
	}

	.playlist-panel {
		overflow: visible;
		max-height: none;
	}

	.playlist-panel::after {
		display: none;
	}

	.playlist {
		max-height: none;
		overflow: visible;
		scrollbar-width: none;
	}

	.playlist::-webkit-scrollbar {
		display: none;
	}
}

@media (max-width: 520px) {
	.bootlegs-shell {
		width: min(100% - 20px, 1180px);
		padding: 10px 0 22px 0;
	}

	.player-panel {
		overflow: visible;
		padding: 20px;
	}

	.player-actions {
		margin: 0 -20px -20px;
	}

	.transport-prototype {
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 0 0 8px 8px;
	}

	.playlist-heading {
		align-items: center;
		flex-direction: row;
		padding: 16px;
	}

	#track-count {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.playlist-item {
		grid-template-columns: 30px minmax(0, 1fr) 38px;
		column-gap: 0;
		padding: 12px 16px;
	}

	.track-number {
		text-align: left;
	}

	.track-download,
	.track-download-placeholder {
		margin-left: 8px;
		width: 38px;
		min-width: 38px;
	}
}
