html body.lml-landing-page {
	margin: 0;
	background: #101013;
	color: #fff;
}

.lml-page {
	--lml-button-bg: rgba(14, 14, 18, 0.74);
	--lml-button-hover-bg: rgba(28, 28, 34, 0.9);
	--lml-button-text: #ffffff;
	--lml-button-radius: 8px;
	--lml-icon-area-width: 58px;
	--lml-action-bg: #050507;
	--lml-action-text: #f6f6f7;
	--lml-mobile-cover-size: 62vw;
	--lml-mobile-cover-max: 300px;

	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	overflow-x: hidden;
	overflow-y: auto;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #fff;
}

.lml-bg,
.lml-overlay {
	position: fixed;
	inset: -5vw;
	pointer-events: none;
}

.lml-bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.lml-overlay {
	inset: 0;
}

.lml-shell {
	position: relative;
	z-index: 1;
	width: min(1080px, calc(100% - 32px));
	min-height: 100vh;
	min-height: 100svh;
	margin: 0 auto;
	padding: 18px 0 22px;
	display: grid;
	grid-template-columns: 1fr;
	align-content: start;
	gap: 14px;
	box-sizing: border-box;
}

.lml-cover-wrap {
	width: min(100%, var(--lml-mobile-cover-size), var(--lml-mobile-cover-max));
	margin: 0 auto;
}

.lml-cover {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.44);
	background: #1d1d22;
}

.lml-cover--placeholder {
	display: grid;
	place-items: center;
	font-size: clamp(4rem, 30vw, 8rem);
	font-weight: 800;
	color: rgba(255, 255, 255, 0.74);
}

.lml-content {
	width: min(100%, 520px);
	margin: 0 auto;
	text-align: center;
}

.lml-kicker {
	margin: 0 0 7px;
	text-transform: uppercase;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.72);
}

.lml-content h1 {
	margin: 0;
	font-size: 2rem;
	line-height: 1.04;
	letter-spacing: 0;
	color: #fff;
}

.lml-artist {
	margin: 8px 0 0;
	font-size: 1.08rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.84);
}

.lml-description {
	margin: 12px auto 0;
	max-width: 46ch;
	font-size: 0.96rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.76);
}

.lml-links {
	margin-top: 16px;
	display: grid;
	gap: 10px;
}

.lml-button {
	display: grid;
	grid-template-columns: var(--lml-icon-area-width) minmax(0, 1fr) auto;
	align-items: center;
	min-height: 64px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--lml-button-radius);
	background: var(--lml-button-bg);
	color: var(--lml-button-text);
	text-decoration: none;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(18px);
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
	box-sizing: border-box;
	overflow: hidden;
}

.lml-button:hover,
.lml-button:focus {
	transform: translateY(-1px);
	background: var(--lml-button-hover-bg);
	color: var(--lml-button-text);
	border-color: rgba(255, 255, 255, 0.24);
	outline: none;
}

.lml-button:focus-visible {
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.34), 0 14px 34px rgba(0, 0, 0, 0.26);
}

.lml-button__icon {
	width: var(--lml-icon-area-width);
	height: 100%;
	min-height: 64px;
	display: grid;
	place-items: center;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.78rem;
	font-weight: 800;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 3px 0 0 var(--lml-platform-color, rgba(255, 255, 255, 0.24));
}

	.lml-button__icon img {
		width: 34px;
		height: 34px;
		object-fit: contain;
		border-radius: 0;
	}

	.lml-button__builtin-icon {
		display: block;
		width: 34px;
		height: 34px;
		background: var(--lml-platform-color, currentColor);
		-webkit-mask-image: var(--lml-icon-url);
		mask-image: var(--lml-icon-url);
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-size: contain;
		mask-size: contain;
	}

	.lml-button__label {
	padding: 0 10px 0 12px;
	font-size: 1rem;
	font-weight: 800;
	text-align: left;
	overflow-wrap: anywhere;
	min-width: 0;
}

.lml-button__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	max-width: 96px;
	min-height: 30px;
	margin-right: 12px;
	padding: 0 13px;
	border-radius: 999px;
	background: var(--lml-action-bg);
	color: var(--lml-action-text);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(0, 0, 0, 0.2);
}

.lml-footer {
	margin-top: 18px;
	text-align: center;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.48);
}

@media (min-width: 840px) {
	.lml-shell {
		width: min(1120px, calc(100% - 72px));
		grid-template-columns: minmax(280px, 460px) minmax(360px, 1fr);
		align-items: center;
		align-content: center;
		gap: 64px;
		padding: 34px 0;
	}

	.lml-cover-wrap {
		width: 100%;
	}

	.lml-cover {
		box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
	}

	.lml-content {
		text-align: left;
		margin: 0;
	}

	.lml-content h1 {
		font-size: 3.8rem;
		line-height: 0.98;
	}

	.lml-artist {
		margin-top: 12px;
		font-size: 1.35rem;
	}

	.lml-description {
		margin-top: 18px;
		margin-left: 0;
		font-size: 1rem;
		line-height: 1.55;
	}

	.lml-links {
		max-width: 440px;
		margin-top: 26px;
		gap: 12px;
	}

	.lml-button {
		min-height: 68px;
	}

	.lml-button__icon {
		min-height: 68px;
	}

	.lml-footer {
		max-width: 440px;
		text-align: center;
	}
}

@media (max-height: 740px) and (max-width: 839px) {
	.lml-page {
		--lml-mobile-cover-size: 58vw;
		--lml-mobile-cover-max: 270px;
	}

	.lml-shell {
		padding-top: 14px;
		padding-bottom: 18px;
		gap: 12px;
	}

	.lml-content h1 {
		font-size: 1.82rem;
	}

	.lml-description {
		margin-top: 10px;
		font-size: 0.92rem;
		line-height: 1.38;
	}

	.lml-links {
		margin-top: 14px;
		gap: 9px;
	}

	.lml-button {
		min-height: 62px;
	}

	.lml-button__icon {
		min-height: 62px;
	}

	.lml-button__action {
		min-width: 48px;
		min-height: 28px;
		margin-right: 10px;
		padding: 0 11px;
		font-size: 0.74rem;
	}

	.lml-footer {
		margin-top: 14px;
	}
}

@media (max-height: 720px) and (min-width: 840px) {
	.lml-shell {
		padding: 26px 0;
	}

	.lml-cover-wrap {
		width: min(100%, 390px);
	}
}
