:root {
	--awl-primary: #0d6acd;
	--awl-secondary: #003a9f;
	--awl-accent: #f5b400;
	--awl-background: #f8fafc;
	--awl-surface: #fff;
	--awl-text: #0b1234;
	--awl-muted: #667085;
	--awl-border: #e5e7eb;
	--awl-soft: #eef5ff;
	--awl-body-font: inherit;
	--awl-heading-font: inherit;
}

.awl-library,
.awl-song {
	color: var(--awl-text);
	font-family: var(--awl-body-font);
	max-width: 1220px;
	margin: 32px auto;
	padding: 0 18px;
}

.awl-song {
	padding-bottom: 110px;
}

.awl-featured-artist-song {
	position: relative;
	padding-top: 8px;
}

.awl-filters {
	display: grid;
	grid-template-columns: repeat(6, minmax(120px, 1fr)) auto;
	gap: 10px;
	margin-bottom: 24px;
}

.awl-library-hero {
	display: grid;
	min-height: 250px;
	margin: 0 0 22px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(0, 58, 159, 0.96), rgba(13, 106, 205, 0.92)), var(--awl-primary);
	color: #fff;
	box-shadow: 0 24px 58px rgba(0, 58, 159, 0.18);
	padding: clamp(26px, 5vw, 54px);
	align-items: center;
}

.awl-library-hero span {
	display: inline-flex;
	width: fit-content;
	border-radius: 999px;
	background: rgba(245, 180, 0, 0.18);
	color: var(--awl-accent);
	font-weight: 900;
	padding: 7px 12px;
	margin-bottom: 14px;
}

.awl-library-hero h1 {
	max-width: 760px;
	margin: 0;
	font-family: var(--awl-heading-font);
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.04;
}

.awl-library-hero p {
	max-width: 680px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.08rem;
	line-height: 1.65;
}

.awl-library-results {
	position: relative;
	min-height: 180px;
	transition: opacity 160ms ease;
}

.awl-library-results.is-loading {
	opacity: 0.55;
	pointer-events: none;
}

.awl-library-count {
	margin: 0 0 14px;
	color: var(--awl-muted);
	font-weight: 800;
}

.awl-filters input,
.awl-filters select,
.awl-filters button,
.awl-download-form input,
.awl-download-form button {
	border: 1px solid var(--awl-border);
	border-radius: 6px;
	min-height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.awl-filters button,
.awl-button,
.awl-download-form button {
	background: var(--awl-primary);
	color: #fff;
	border-color: var(--awl-primary);
}

.awl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
}

.awl-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--awl-border);
	border-radius: 12px;
	overflow: hidden;
	background: var(--awl-surface);
	box-shadow: 0 16px 34px rgba(11, 18, 52, 0.08);
}

.awl-card-cover {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--awl-soft);
}

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

.awl-card-cover-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--awl-secondary), var(--awl-primary));
	color: #fff;
	font-size: 3rem;
	font-weight: 900;
}

.awl-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 14px;
}

.awl-card h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
}

.awl-card-body p {
	margin: 0 0 18px;
	color: var(--awl-muted);
}

.awl-card-body .awl-button {
	margin-top: auto;
	align-self: flex-start;
}

.awl-library-empty {
	grid-column: 1 / -1;
	border: 1px dashed var(--awl-border);
	border-radius: 16px;
	background: var(--awl-surface);
	padding: 24px;
	color: var(--awl-muted);
	font-weight: 800;
}

.awl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 10px;
	padding: 9px 12px;
	text-decoration: none;
	border: 1px solid var(--awl-primary);
	cursor: pointer;
}

.awl-song-hero {
	display: grid;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 44px);
	align-items: start;
	margin: 0 0 26px;
	position: relative;
	z-index: 1;
	padding: clamp(24px, 4vw, 46px);
	border: 1px solid rgba(11, 18, 52, 0.06);
	border-radius: 20px;
	background: var(--awl-surface);
	box-shadow: 0 18px 48px rgba(11, 18, 52, 0.08);
	transition: opacity 180ms ease, visibility 180ms ease;
	overflow: visible;
}

.awl-song-hero > .awl-hero-cover-column,
.awl-song-hero > .awl-song-identity {
	position: relative;
	z-index: 3;
}

.awl-featured-artist-hero-bg {
	position: absolute;
	top: -34px;
	left: 50%;
	z-index: 0;
	width: 100vw;
	height: clamp(310px, 38vw, 470px);
	overflow: hidden;
	background-position: center;
	background-size: cover;
	opacity: 1;
	pointer-events: none;
	transform: translateX(-50%);
	transform-origin: center top;
}

.awl-featured-artist-hero-bg::before {
	content: "";
	position: absolute;
	inset: -46px;
	background-image: inherit;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	filter: blur(24px);
	opacity: 0.74;
	transform: scale(1.08);
}

.awl-featured-artist-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.22);
}

.awl-featured-artist-hero-shadow {
	position: absolute;
	top: calc(clamp(310px, 38vw, 470px) - 34px);
	left: 50%;
	z-index: 1;
	width: 100vw;
	height: 76px;
	background:
		linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 24, 110, 0.2) 46%, rgba(0, 24, 110, 0) 100%),
		linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(11, 18, 52, 0.18) 50%, rgba(255, 255, 255, 0) 51%);
	pointer-events: none;
	transform: translateX(-50%) translateY(-50%);
}

.awl-featured-series-badge {
	position: absolute;
	top: -35px;
	right: 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 92px;
	pointer-events: none;
	filter: drop-shadow(0 10px 22px rgba(0, 20, 65, 0.22));
	transform: translateX(50%);
}

.awl-featured-series-badge img {
	display: block;
	width: min(86px, 100%);
	height: auto;
}

.awl-featured-series-number {
	position: absolute;
	top: 66%;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	min-height: 18px;
	border-radius: 999px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 1000;
	line-height: 1;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
	transform: translate(-50%, -50%);
}

.awl-song.has-banner .awl-song-hero {
	margin-top: -118px;
}

.awl-song-banner {
	min-height: 260px;
	border-radius: 22px;
	background-position: center;
	background-size: cover;
	margin-bottom: 28px;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 -120px 140px rgba(0, 20, 65, 0.72);
	transition: opacity 180ms ease, visibility 180ms ease;
}

body.awl-video-is-active .awl-song-hero,
body.awl-video-is-active .awl-song-banner,
body.awl-video-is-active .awl-featured-artist-hero-bg,
body.awl-video-is-active .awl-featured-artist-hero-shadow {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.awl-song-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 36, 120, 0.72), rgba(0, 36, 120, 0.12));
}

.awl-cover {
	aspect-ratio: 1 / 1;
	align-self: start;
	border-radius: 20px;
	background: var(--awl-soft);
	box-shadow: 0 18px 42px rgba(11, 18, 52, 0.14);
	display: block;
	inline-size: clamp(260px, 20vw, 320px);
	block-size: clamp(260px, 20vw, 320px);
	max-inline-size: 320px;
	overflow: hidden;
}

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

.awl-hero-cover-column {
	display: grid;
	gap: 14px;
	align-self: start;
	inline-size: clamp(260px, 20vw, 320px);
	max-inline-size: 320px;
}

.awl-hero-cover-column .awl-cover {
	inline-size: 100%;
	block-size: auto;
	max-inline-size: none;
}

.awl-purchase-card {
	display: grid;
	gap: 10px;
	border: 1px solid rgba(13, 106, 205, 0.16);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(13, 106, 205, 0.08), rgba(255, 255, 255, 0.92));
	padding: 14px;
	box-shadow: 0 12px 28px rgba(11, 18, 52, 0.08);
}

.awl-paid-badge {
	justify-self: start;
	border-radius: 999px;
	background: rgba(245, 180, 0, 0.16);
	color: #8a5a00;
	font-size: 0.78rem;
	font-weight: 900;
	padding: 5px 10px;
}

.awl-purchase-card p {
	margin: 0;
	color: var(--awl-muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.awl-product-price {
	color: var(--awl-primary);
	font-size: 1.25rem;
	font-weight: 900;
}

.awl-purchase-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	border: 0;
	border-radius: 12px;
	background: var(--awl-accent);
	color: #07245f;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(245, 180, 0, 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.awl-cart-button {
	min-height: 40px;
	border: 1px solid rgba(13, 106, 205, 0.22);
	border-radius: 12px;
	background: #fff;
	color: var(--awl-primary);
	font-weight: 900;
	cursor: pointer;
}

.awl-purchase-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(245, 180, 0, 0.28);
}

.awl-purchase-button.is-disabled,
.awl-purchase-button:disabled {
	cursor: not-allowed;
	opacity: 0.62;
	transform: none;
}

.awl-cart-icon {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
	width: 15px;
	height: 13px;
	margin-top: 1px;
	border: 2px solid currentColor;
	border-radius: 3px 3px 5px 5px;
	box-sizing: border-box;
}

.awl-cart-icon::before {
	content: "";
	position: absolute;
	left: 3px;
	top: -7px;
	width: 7px;
	height: 7px;
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
}

.awl-cart-icon::after {
	content: "";
	position: absolute;
	left: 3px;
	top: 3px;
	width: 5px;
	height: 2px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.awl-wallet-icon {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 14px;
	flex: 0 0 auto;
	border: 2px solid currentColor;
	border-radius: 5px;
	box-sizing: border-box;
}

.awl-wallet-icon::before {
	content: "";
	position: absolute;
	right: -2px;
	top: 3px;
	width: 8px;
	height: 6px;
	border: 2px solid currentColor;
	border-right: 0;
	border-radius: 4px 0 0 4px;
	background: var(--awl-accent);
}

.awl-wallet-icon::after {
	content: "";
	position: absolute;
	right: 2px;
	top: 6px;
	width: 3px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
}

.awl-floating-cart {
	position: fixed;
	right: 22px;
	bottom: 112px;
	z-index: 99989;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--awl-secondary), var(--awl-primary));
	color: #fff;
	box-shadow: 0 18px 44px rgba(0, 38, 122, 0.28);
	cursor: pointer;
	transition: transform 160ms ease;
}

.awl-floating-cart:hover {
	transform: translateY(-2px);
}

.awl-floating-cart strong {
	position: absolute;
	right: -4px;
	top: -4px;
	min-width: 20px;
	height: 20px;
	border-radius: 999px;
	background: var(--awl-accent);
	color: #07245f;
	font-size: 0.72rem;
	line-height: 20px;
	text-align: center;
}

.awl-floating-cart:not(.has-items) strong {
	display: none;
}

.awl-floating-account {
	position: fixed;
	right: 22px;
	bottom: 176px;
	z-index: 99989;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 54px;
	min-height: 54px;
	border-radius: 999px;
	background: #fff;
	color: var(--awl-primary);
	box-shadow: 0 18px 44px rgba(0, 38, 122, 0.18);
	text-decoration: none;
	font-weight: 900;
	padding: 0 15px;
	transition: transform 160ms ease;
}

.awl-floating-account strong {
	display: none;
	max-width: 150px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.awl-floating-account.is-logged-in strong,
.awl-floating-account.is-vip strong {
	display: block;
}

.awl-floating-account.is-vip {
	background: var(--awl-accent);
	color: #07245f;
}

.awl-floating-account em,
.awl-top-account-link em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 22px;
	border-radius: 999px;
	background: #07245f;
	color: var(--awl-accent);
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 1000;
	letter-spacing: 0.04em;
}

.awl-floating-account:hover {
	transform: translateY(-2px);
}

.awl-floating-account img,
.awl-top-account-link img {
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	object-fit: cover;
	background: rgba(13, 106, 205, 0.1);
}

.awl-floating-account span {
	display: block;
	width: 24px;
	flex: 0 0 24px;
}

.awl-top-account-link span {
	display: block;
	width: 22px;
	flex: 0 0 22px;
	color: currentColor;
}

.awl-floating-account span::before,
.awl-floating-account span::after,
.awl-top-account-link span::before,
.awl-top-account-link span::after {
	content: "";
	display: block;
	margin: 0 auto;
	border: 3px solid currentColor;
}

.awl-floating-account span::before,
.awl-top-account-link span::before {
	width: 12px;
	height: 12px;
	border-radius: 999px;
}

.awl-floating-account span::after,
.awl-top-account-link span::after {
	width: 22px;
	height: 12px;
	margin-top: 4px;
	border-radius: 999px 999px 4px 4px;
	border-bottom: 0;
}

.awl-top-account-link {
	position: fixed;
	top: 18px;
	right: 22px;
	z-index: 99988;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	max-width: min(260px, calc(100vw - 44px));
	min-height: 42px;
	border: 1px solid rgba(13, 106, 205, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--awl-primary);
	box-shadow: 0 14px 34px rgba(0, 38, 122, 0.12);
	padding: 4px 12px 4px 5px;
	text-decoration: none;
	backdrop-filter: blur(12px);
}

.awl-top-account-link strong {
	display: block;
	max-width: 132px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.82rem;
	font-weight: 900;
}

.awl-top-account-link.is-vip {
	border-color: rgba(245, 180, 0, 0.45);
	background: rgba(255, 250, 232, 0.96);
}

.awl-cart-modal[hidden] {
	display: none;
}

.awl-cart-backdrop {
	position: fixed;
	inset: 0;
	z-index: 100010;
	background: rgba(7, 13, 38, 0.58);
	backdrop-filter: blur(8px);
}

.awl-cart-dialog {
	position: fixed;
	right: max(18px, calc((100vw - 1180px) / 2));
	top: 86px;
	z-index: 100011;
	display: grid;
	gap: 18px;
	width: min(460px, calc(100vw - 28px));
	max-height: calc(100vh - 128px);
	overflow: auto;
	border: 1px solid rgba(13, 106, 205, 0.18);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(7, 13, 38, 0.24);
	padding: 24px;
	color: var(--awl-text);
	font-family: var(--awl-body-font);
}

.awl-cart-dialog header span {
	display: inline-flex;
	border-radius: 999px;
	background: rgba(245, 180, 0, 0.18);
	color: #7a5600;
	font-weight: 900;
	padding: 7px 12px;
}

.awl-cart-dialog h2 {
	margin: 12px 0 6px;
	font-family: var(--awl-heading-font);
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	line-height: 1.05;
}

.awl-cart-dialog p {
	color: var(--awl-muted);
	margin: 0;
}

.awl-cart-close {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: var(--awl-soft);
	color: var(--awl-text);
	font-size: 1.45rem;
	cursor: pointer;
}

.awl-cart-items {
	display: grid;
	gap: 10px;
}

.awl-cart-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 1px solid var(--awl-border);
	border-radius: 14px;
	padding: 13px;
}

.awl-cart-row strong,
.awl-cart-row span {
	display: block;
}

.awl-cart-row span {
	color: var(--awl-primary);
	font-weight: 900;
	margin-top: 4px;
}

.awl-cart-row button,
.awl-cart-clear {
	border: 1px solid var(--awl-border);
	border-radius: 999px;
	background: #fff;
	color: var(--awl-muted);
	font-weight: 800;
	padding: 8px 12px;
	cursor: pointer;
}

.awl-cart-dialog footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border-top: 1px solid var(--awl-border);
	padding-top: 16px;
}

.awl-cart-dialog footer > div {
	display: inline-flex;
	gap: 8px;
}

.awl-cart-pay {
	border: 0;
	border-radius: 999px;
	background: var(--awl-accent);
	color: #07245f;
	font-weight: 900;
	padding: 10px 15px;
	cursor: pointer;
}

.awl-cart-pay:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.awl-cart-message {
	font-weight: 800;
}

.awl-cart-feexpay {
	display: grid;
	gap: 10px;
}

.awl-cart-feexpay p {
	font-weight: 900;
	color: var(--awl-text);
}

.awl-cart-feexpay button,
.awl-cart-feexpay [role="button"],
.awl-cart-feexpay input[type="button"],
.awl-cart-feexpay input[type="submit"],
.awl-cart-feexpay a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--awl-accent) !important;
	color: #07245f !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

.awl-cover-placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--awl-secondary), var(--awl-primary));
	color: #fff;
}

.awl-cover-placeholder span {
	font-size: clamp(4rem, 9vw, 7rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.awl-song h1 {
	font-size: clamp(2.35rem, 4.8vw, 4.65rem);
	line-height: 1.02;
	margin: 0;
	color: inherit;
	font-family: var(--awl-heading-font);
	font-weight: 800;
}

.awl-song-identity {
	min-width: 0;
}

.awl-song-title-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.awl-verified-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: var(--awl-primary);
	color: #fff;
	font-weight: 900;
	box-shadow: 0 12px 26px rgba(13, 106, 205, 0.28);
}

.awl-hero-artist-line {
	margin: 0 0 16px;
	color: var(--awl-text);
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 600;
}

.awl-hero-artist-line a {
	color: var(--awl-primary);
	text-decoration: none;
	transition: color 160ms ease, text-decoration-color 160ms ease;
}

.awl-hero-artist-line a:hover {
	color: var(--awl-secondary);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.awl-hero-year {
	color: var(--awl-muted);
	font-weight: 500;
}

.awl-hero-rating {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 18px;
	color: var(--awl-text);
	text-decoration: none;
	font-size: 1.08rem;
	font-weight: 600;
}

.awl-hero-rating:hover strong {
	color: var(--awl-primary);
}

.awl-rating-buttons {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.awl-rating-buttons button {
	border: 0;
	background: transparent;
	color: rgba(102, 112, 133, 0.32);
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	padding: 0 1px;
	text-shadow: none;
	transition: color 140ms ease, transform 140ms ease, text-shadow 140ms ease;
}

.awl-rating-buttons button:hover,
.awl-rating-buttons button.is-active {
	color: var(--awl-accent);
	text-shadow: 0 8px 18px rgba(245, 180, 0, 0.22);
}

.awl-rating-buttons button:hover {
	transform: translateY(-1px) scale(1.06);
}

.awl-hero-rating.is-saving .awl-rating-buttons {
	opacity: 0.62;
	pointer-events: none;
}

.awl-hero-rating em {
	flex-basis: 100%;
	min-height: 1.1em;
	color: var(--awl-muted);
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 700;
}

.awl-stars {
	display: none;
	background: linear-gradient(90deg, var(--awl-accent) var(--rating-percent, 0%), rgba(102, 112, 133, 0.32) var(--rating-percent, 0%));
	background-clip: text;
	color: rgba(102, 112, 133, 0.32);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
	font-size: 1.35rem;
	line-height: 1;
	text-shadow: 0 8px 18px rgba(245, 180, 0, 0.22);
}

.awl-hero-rating.is-empty .awl-stars {
	text-shadow: none;
}

.awl-hero-themes {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0 0 28px;
}

.awl-theme-chip {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	border-radius: 999px;
	background: rgba(13, 106, 205, 0.1);
	color: var(--awl-primary);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	padding: 10px 18px;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.awl-theme-chip:hover {
	background: var(--awl-primary);
	color: #fff;
	transform: translateY(-1px);
}

.awl-theme-chip:nth-child(2) {
	background: rgba(13, 106, 205, 0.08);
}

.awl-theme-chip:nth-child(3) {
	background: rgba(245, 180, 0, 0.14);
	color: #9a5a00;
}

.awl-theme-chip:nth-child(4) {
	background: rgba(115, 70, 190, 0.12);
	color: #4b2388;
}

.awl-theme-more {
	background: rgba(11, 18, 52, 0.08);
	color: var(--awl-muted);
}

.awl-hero-divider {
	display: none;
}

.awl-hero-meta-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid rgba(11, 18, 52, 0.1);
}

.awl-identity-fact {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	padding: 26px 30px;
	border-left: 1px solid rgba(11, 18, 52, 0.1);
}

.awl-identity-fact:nth-child(3n + 1) {
	border-left: 0;
	padding-left: 0;
}

.awl-identity-fact:nth-child(n + 4) {
	border-top: 1px solid rgba(11, 18, 52, 0.1);
}

.awl-hero-share {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.awl-hero-share span {
	color: var(--awl-muted);
	font-size: 0.82rem;
	font-weight: 900;
}

.awl-hero-share a,
.awl-hero-share button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 36px;
	border: 0;
	border-radius: 999px;
	padding: 8px 13px;
	color: #fff;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(11, 18, 52, 0.1);
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.awl-hero-share a:hover,
.awl-hero-share button:hover {
	transform: translateY(-1px);
	filter: brightness(1.04);
	box-shadow: 0 14px 28px rgba(11, 18, 52, 0.16);
}

.awl-hero-share .is-whatsapp {
	background: #25d366;
}

.awl-hero-share .is-email {
	background: rgba(16, 89, 200, 0.1);
	color: var(--awl-primary);
}

.awl-hero-share .is-facebook {
	background: #1877f2;
}

.awl-hero-share .is-tiktok {
	background: #0b1234;
}

.awl-hero-share .is-link {
	background: rgba(11, 18, 52, 0.08);
	color: var(--awl-text);
}

.awl-hero-share i {
	display: inline-block;
	width: 17px;
	height: 17px;
	background: currentColor;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.awl-hero-share .is-whatsapp i {
	-webkit-mask-image: url("../icons/share/whatsapp.svg");
	mask-image: url("../icons/share/whatsapp.svg");
}

.awl-hero-share .is-email i {
	-webkit-mask-image: url("../icons/share/email.svg");
	mask-image: url("../icons/share/email.svg");
}

.awl-hero-share .is-facebook i {
	-webkit-mask-image: url("../icons/share/facebook.svg");
	mask-image: url("../icons/share/facebook.svg");
}

.awl-hero-share .is-tiktok i {
	-webkit-mask-image: url("../icons/share/tiktok.svg");
	mask-image: url("../icons/share/tiktok.svg");
}

.awl-hero-share .is-link i {
	-webkit-mask-image: url("../icons/share/link.svg");
	mask-image: url("../icons/share/link.svg");
}

.awl-share-sheet {
	position: fixed;
	inset: 0;
	z-index: 100002;
	display: grid;
	place-items: center;
	padding: 20px;
}

.awl-share-sheet[hidden] {
	display: none;
}

.awl-share-sheet-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 8, 23, 0.58);
	backdrop-filter: blur(10px);
}

.awl-share-sheet-dialog {
	position: relative;
	width: min(520px, 100%);
	border-radius: 18px;
	background: var(--awl-surface);
	color: var(--awl-text);
	padding: 26px;
	box-shadow: 0 28px 80px rgba(0, 20, 65, 0.28);
}

.awl-share-sheet-close {
	position: absolute;
	right: 16px;
	top: 14px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: rgba(16, 89, 200, 0.1);
	color: var(--awl-primary);
	font-size: 26px;
	cursor: pointer;
}

.awl-share-sheet-dialog > span {
	display: inline-flex;
	margin-bottom: 10px;
	border-radius: 999px;
	background: rgba(245, 180, 0, 0.16);
	color: #8a5a00;
	padding: 7px 13px;
	font-weight: 900;
}

.awl-share-sheet-dialog h3 {
	margin: 0 46px 18px 0;
	font-size: clamp(1.35rem, 3vw, 2rem);
	line-height: 1.1;
}

.awl-share-sheet-actions {
	justify-content: flex-start;
	margin-top: 0;
}

.awl-identity-icon {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	color: #050817;
}

.awl-identity-fact span {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.awl-identity-fact small {
	color: var(--awl-muted);
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.awl-identity-fact strong {
	min-width: 0;
	overflow: hidden;
	color: var(--awl-text);
	font-size: 1.12rem;
	font-weight: 500;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.awl-identity-value {
	display: block;
	max-width: 100%;
}

.awl-identity-value span {
	display: inline-block;
	min-width: 100%;
	will-change: transform;
}

.awl-identity-value.is-marquee {
	text-overflow: clip;
}

.awl-identity-value.is-marquee span {
	animation: awlIdentityMarquee 7s ease-in-out infinite alternate;
}

@keyframes awlIdentityMarquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-1 * var(--awl-marquee-distance, 0px)));
	}
}

.awl-subtitle,
.awl-meta,
.awl-bible {
	color: var(--awl-muted);
}

.awl-player {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--awl-border);
	border-radius: 999px;
	padding: 12px 16px;
	margin: 12px 0 24px;
	background: linear-gradient(180deg, var(--awl-surface), var(--awl-soft));
	box-shadow: 0 18px 40px rgba(11, 18, 52, 0.08);
}

.awl-play {
	border: 0;
	border-radius: 999px;
	background: var(--awl-primary);
	color: #fff;
	width: 48px;
	height: 48px;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(13, 106, 205, 0.3);
	position: relative;
}

.awl-play span,
.awl-sticky-play::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	transform: translateX(2px);
}

.awl-player.is-playing .awl-play span,
.awl-sticky-player.is-playing .awl-sticky-play::before {
	box-sizing: border-box;
	width: 14px;
	height: 18px;
	border: 0;
	border-left: 5px solid #fff;
	border-right: 5px solid #fff;
	transform: none;
}

.awl-visualizer {
	width: 100%;
	height: 40px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(13, 106, 205, 0.05), rgba(13, 106, 205, 0.02));
	cursor: pointer;
}

.awl-player-time {
	color: var(--awl-muted);
	font-variant-numeric: tabular-nums;
}

.awl-language-select {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin: 0;
	color: var(--awl-muted);
	font-size: 0.9rem;
	white-space: nowrap;
}

.awl-language-select select {
	min-height: 38px;
	border: 1px solid var(--awl-border);
	border-radius: 6px;
	padding: 4px 8px;
}

.awl-song-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 16px 0;
}

.awl-tabs-shell {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 18px;
	margin: 20px 0 24px;
	padding: 0 20px;
	border: 1px solid rgba(13, 106, 205, 0.12);
	border-radius: 20px;
	background: var(--awl-surface);
	box-shadow: 0 18px 48px rgba(11, 18, 52, 0.08);
}

.awl-tabs {
	display: flex;
	align-items: stretch;
	gap: 0;
	min-width: 0;
}

.awl-downloads {
	display: grid;
	gap: 10px;
	margin: 16px 0 0;
}

.awl-paid-download {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 1px solid var(--awl-border);
	border-radius: 14px;
	background: #fff;
	padding: 12px 14px;
}

.awl-paid-resource-name {
	color: var(--awl-text);
	font-weight: 900;
}

.awl-paid-download small {
	color: var(--awl-muted);
	font-size: 0.78rem;
	text-align: right;
}

.awl-feexpay-native-container {
	min-height: 0;
}

.awl-feexpay-native-container:empty {
	display: block;
	min-height: 44px;
	overflow: hidden;
}

.awl-feexpay-generated-wrap,
.awl-feexpay-native-container {
	width: 100%;
}

.awl-purchase-card .awl-feexpay-purchase-wrap {
	margin: 14px 0 8px;
}

.awl-feexpay-native-container button,
.awl-feexpay-native-container [role="button"],
.awl-feexpay-native-container input[type="button"],
.awl-feexpay-native-container input[type="submit"],
.awl-feexpay-native-container a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 44px;
	border: 0 !important;
	border-radius: 12px !important;
	background: var(--awl-accent) !important;
	color: #07245f !important;
	font: inherit !important;
	font-weight: 900 !important;
	text-decoration: none !important;
	box-shadow: 0 12px 24px rgba(245, 180, 0, 0.22);
	cursor: pointer;
}

.awl-feexpay-warning {
	display: block;
	margin-top: 6px;
	color: var(--awl-muted);
	font-size: 0.78rem;
	line-height: 1.35;
}

.awl-feexpay-warning:empty {
	display: none;
}

.awl-feexpay-status {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.awl-feexpay-status.is-error {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal;
	color: #b42318;
	font-weight: 700;
}

.awl-cart-feedback,
.awl-toast {
	position: fixed;
	right: 24px;
	bottom: 108px;
	z-index: 100000;
	max-width: min(340px, calc(100vw - 32px));
	border-radius: 14px;
	background: linear-gradient(135deg, var(--awl-primary), var(--awl-secondary));
	color: #fff;
	font-weight: 800;
	box-shadow: 0 18px 42px rgba(11, 18, 52, 0.26);
	padding: 14px 18px;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.awl-cart-feedback.is-visible,
.awl-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.awl-toast {
	display: grid;
	gap: 3px;
	border: 1px solid rgba(255, 255, 255, 0.24);
}

.awl-toast strong {
	color: var(--awl-accent);
	font-size: 0.82rem;
	text-transform: uppercase;
}

.awl-toast span {
	color: #fff;
}

.awl-toast.is-warning {
	background: linear-gradient(135deg, #7a2e0b, #d77700);
}

.awl-payment-success-page {
	max-width: none;
	min-height: 70vh;
	margin: 0;
	background: rgba(5, 8, 23, 0.48);
	backdrop-filter: blur(8px);
	padding: clamp(28px, 5vw, 56px) 18px;
	color: var(--awl-text);
	font-family: var(--awl-body-font);
}

.awl-payment-success-card {
	max-width: 920px;
	margin: 0 auto;
	border: 1px solid var(--awl-border);
	border-radius: 24px;
	background: var(--awl-surface);
	box-shadow: 0 24px 70px rgba(11, 18, 52, 0.12);
	padding: clamp(24px, 5vw, 48px);
}

.awl-payment-success-card h1 {
	margin: 14px 0 10px;
	color: var(--awl-text);
	font-family: var(--awl-heading-font);
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1.05;
}

.awl-payment-success-card p {
	color: var(--awl-muted);
	font-size: 1.05rem;
}

.awl-success-logo {
	display: block;
	max-width: 170px;
	max-height: 82px;
	object-fit: contain;
	margin: 0 0 22px;
}

.awl-success-resources {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin: 28px 0;
}

.awl-success-empty {
	grid-column: 1 / -1;
	border: 1px dashed var(--awl-border);
	border-radius: 16px;
	background: #fff;
	padding: 18px;
}

.awl-success-download {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border: 1px solid var(--awl-border);
	border-radius: 16px;
	background: #fff;
	color: var(--awl-text);
	text-decoration: none;
	padding: 16px;
}

.awl-success-download-all {
	border-color: rgba(245, 180, 0, 0.65);
	background: linear-gradient(135deg, rgba(245, 180, 0, 0.16), #fff);
}

.awl-success-song-group {
	margin-top: 26px;
}

.awl-success-song-group h2 {
	margin: 0 0 12px;
	font-family: var(--awl-heading-font);
	color: var(--awl-text);
	font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.awl-success-download span {
	border-radius: 999px;
	background: var(--awl-accent);
	color: #07245f;
	font-weight: 900;
	padding: 8px 12px;
}

.awl-success-back {
	display: inline-flex;
	border-radius: 12px;
	background: var(--awl-primary);
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	padding: 12px 16px;
}

.awl-account {
	width: min(1120px, calc(100vw - 28px));
	margin: clamp(28px, 5vw, 70px) auto;
	font-family: var(--awl-body-font);
	color: var(--awl-text);
}

body:has(.awl-account) #sidebar,
body:has(.awl-account) .sidebar,
body:has(.awl-account) .widget-area,
body:has(.awl-account) aside {
	display: none !important;
}

body:has(.awl-account) #left-area,
body:has(.awl-account) #primary,
body:has(.awl-account) .content-area,
body:has(.awl-account) .site-main,
body:has(.awl-account) #main-content,
body:has(.awl-account) article,
body:has(.awl-account) .hentry {
	width: 100% !important;
	max-width: none !important;
	padding-right: 0 !important;
}

body:has(.awl-account) #main-content .container::before,
body:has(.awl-account) .container::before,
body:has(.awl-account) .content-area::before,
body:has(.awl-account) .site-main::before {
	display: none !important;
	content: none !important;
}

body:has(.awl-account) .container:has(.awl-account),
body:has(.awl-account) .entry-content:has(.awl-account) {
	width: min(1240px, calc(100vw - 28px));
	max-width: none;
	margin-inline: auto;
}

.awl-account-hero {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	background: linear-gradient(135deg, var(--awl-secondary), var(--awl-primary));
	color: #fff;
	padding: clamp(24px, 5vw, 52px);
	box-shadow: 0 28px 80px rgba(0, 38, 122, 0.24);
}

.awl-account-hero > span {
	display: inline-flex;
	border-radius: 999px;
	background: rgba(245, 180, 0, 0.2);
	color: var(--awl-accent);
	font-weight: 900;
	padding: 7px 12px;
}

.awl-account-hero h1 {
	margin: 14px 0 10px;
	max-width: 760px;
	font-family: var(--awl-heading-font);
	font-size: clamp(2rem, 5vw, 4.4rem);
	line-height: 1.02;
}

.awl-account-hero p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.06rem;
	line-height: 1.6;
}

.awl-account-hero .awl-account-email {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	margin: -4px 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	padding: 8px 12px;
	font-weight: 900;
	word-break: break-word;
}

.awl-account-hero-profile {
	display: grid;
	grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
	align-items: center;
	gap: clamp(18px, 4vw, 34px);
}

.awl-account-hero-content > span {
	display: inline-flex;
	border-radius: 999px;
	background: rgba(245, 180, 0, 0.2);
	color: var(--awl-accent);
	font-weight: 900;
	padding: 7px 12px;
}

.awl-account-avatar-card {
	display: grid;
	justify-items: center;
	gap: 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.12);
	padding: 16px;
}

.awl-account-avatar-card img {
	width: min(180px, 44vw);
	aspect-ratio: 1;
	border-radius: 22px;
	object-fit: cover;
	box-shadow: 0 18px 42px rgba(0, 16, 64, 0.2);
}

.awl-account-avatar-card form {
	display: grid;
	gap: 8px;
	width: 100%;
}

.awl-account-avatar-card label {
	display: grid;
	gap: 7px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.78rem;
	font-weight: 900;
	text-align: center;
}

.awl-account-avatar-card input {
	width: 100%;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.78rem;
}

.awl-account-avatar-card button {
	border: 0;
	border-radius: 999px;
	background: var(--awl-accent);
	color: #07245f;
	font-weight: 900;
	padding: 10px 12px;
	cursor: pointer;
}

.awl-account-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.awl-account-badges strong {
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 0.82rem;
	padding: 7px 10px;
}

.awl-account-badges .is-warning {
	background: rgba(245, 180, 0, 0.22);
	color: var(--awl-accent);
}

.awl-account-logout {
	margin-top: 18px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-weight: 900;
	padding: 10px 16px;
	cursor: pointer;
}

.awl-account-auth-grid,
.awl-account-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.awl-account-stats {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.awl-account-card,
.awl-account-stats article,
.awl-account-section,
.awl-account-order {
	border: 1px solid var(--awl-border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(11, 18, 52, 0.07);
}

.awl-account-card {
	display: grid;
	gap: 13px;
	padding: 22px;
}

.awl-account-smart-auth {
	max-width: 640px;
	margin: 22px auto 0;
	padding: clamp(22px, 4vw, 34px);
}

.awl-account-smart-auth > p {
	margin: 0;
	color: var(--awl-muted);
	line-height: 1.55;
}

.awl-smart-auth-form,
.awl-auth-next {
	display: grid;
	gap: 13px;
}

.awl-auth-next p {
	margin: 0;
	border-radius: 12px;
	background: rgba(13, 106, 205, 0.08);
	color: var(--awl-primary);
	font-weight: 800;
	padding: 11px 13px;
}

.awl-account-card [hidden] {
	display: none !important;
}

.awl-account-card h2,
.awl-account-section h2 {
	margin: 0;
	font-family: var(--awl-heading-font);
	color: var(--awl-text);
}

.awl-account-card label {
	display: grid;
	gap: 6px;
	color: var(--awl-muted);
	font-weight: 800;
}

.awl-account-card input {
	min-height: 46px;
	border: 1px solid var(--awl-border);
	border-radius: 12px;
	padding: 0 12px;
	font: inherit;
	color: var(--awl-text);
}

.awl-account-check {
	display: flex !important;
	grid-template-columns: none !important;
	flex-direction: row;
	align-items: center;
}

.awl-account-check input {
	min-height: auto;
}

.awl-account-card button,
.awl-google-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 0;
	border-radius: 999px;
	background: var(--awl-accent);
	color: #07245f;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
	padding: 0 18px;
}

.awl-google-button {
	gap: 10px;
}

.awl-google-button span {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	color: #0d6acd;
	font-weight: 900;
}

.awl-account-google-wrap {
	margin: 18px 0 0;
}

.awl-google-button {
	background: var(--awl-primary);
	border: 1px solid rgba(13, 106, 205, 0.28);
	color: #fff;
	box-shadow: 0 14px 32px rgba(11, 18, 52, 0.08);
}

.awl-google-missing {
	margin: 0;
	border-radius: 14px;
	background: rgba(245, 180, 0, 0.12);
	color: #8a5b00;
	font-weight: 800;
	padding: 12px 14px;
}

.awl-auth-separator {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--awl-muted);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.awl-auth-separator::before,
.awl-auth-separator::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--awl-border);
}

.awl-account-message {
	border-radius: 14px;
	background: rgba(13, 106, 205, 0.1);
	color: var(--awl-primary);
	font-weight: 800;
	padding: 12px 14px;
}

.awl-account-message.is-error {
	background: rgba(220, 38, 38, 0.1);
	color: #b91c1c;
}

.awl-account-stats article {
	padding: 20px;
}

.awl-account-stats strong {
	display: block;
	color: var(--awl-primary);
	font-family: var(--awl-heading-font);
	font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.awl-account-stats span {
	color: var(--awl-muted);
	font-weight: 800;
}

.awl-account-section {
	margin-top: 22px;
	padding: 22px;
}

.awl-verification-box {
	display: grid;
	gap: 12px;
	border-color: rgba(245, 180, 0, 0.48);
	background: linear-gradient(180deg, #fff, rgba(245, 180, 0, 0.08));
}

.awl-verification-box p {
	margin: 0;
	color: var(--awl-muted);
}

.awl-benefits-box {
	border-color: rgba(13, 106, 205, 0.22);
	background: linear-gradient(180deg, #fff, rgba(13, 106, 205, 0.06));
}

.awl-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.awl-benefits-grid article {
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--awl-border);
	padding: 16px;
	box-shadow: none;
}

.awl-benefits-grid strong {
	display: block;
	color: var(--awl-primary);
	font-weight: 900;
}

.awl-benefits-grid span {
	display: block;
	margin-top: 7px;
	color: var(--awl-muted);
	line-height: 1.45;
}

.awl-verification-form,
.awl-resend-code {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.awl-verification-form input {
	width: 150px;
	min-height: 46px;
	border: 1px solid var(--awl-border);
	border-radius: 12px;
	padding: 0 14px;
	font: inherit;
	font-weight: 900;
	letter-spacing: 4px;
	text-align: center;
}

.awl-verification-form button,
.awl-resend-code button {
	min-height: 44px;
	border: 0;
	border-radius: 999px;
	background: var(--awl-primary);
	color: #fff;
	font-weight: 900;
	padding: 0 16px;
	cursor: pointer;
}

.awl-resend-code button {
	background: #fff;
	color: var(--awl-primary);
	border: 1px solid rgba(13, 106, 205, 0.22);
}

.awl-account-empty {
	border: 1px dashed var(--awl-border);
	border-radius: 14px;
	background: var(--awl-background);
	color: var(--awl-muted);
	padding: 16px;
}

.awl-account-order {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: start;
	margin-top: 14px;
	padding: 18px;
	box-shadow: none;
}

.awl-account-order h3 {
	margin: 0 0 6px;
	font-family: var(--awl-heading-font);
}

.awl-account-order h3 a {
	color: var(--awl-text);
	text-decoration: none;
}

.awl-account-order p {
	margin: 0;
	color: var(--awl-muted);
	font-weight: 800;
}

.awl-account-order-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.awl-account-order-actions a {
	border-radius: 999px;
	background: rgba(13, 106, 205, 0.1);
	color: var(--awl-primary);
	font-weight: 900;
	text-decoration: none;
	padding: 9px 12px;
}

.awl-account-table {
	overflow-x: auto;
}

.awl-account-table table {
	width: 100%;
	border-collapse: collapse;
}

.awl-account-table th,
.awl-account-table td {
	border-bottom: 1px solid var(--awl-border);
	padding: 12px 8px;
	text-align: left;
}

.awl-account-table th {
	color: var(--awl-muted);
	font-size: 0.82rem;
	text-transform: uppercase;
}

.awl-account-table a {
	color: var(--awl-primary);
	font-weight: 800;
	text-decoration: none;
}

.awl-account-playlist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.awl-account-playlist-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	min-height: 74px;
	border: 1px solid rgba(16, 89, 200, 0.12);
	border-radius: 14px;
	background: rgba(16, 89, 200, 0.04);
	padding: 14px calc(14px + 150px + 3ch) 14px 14px;
}

.awl-account-playlist-meta {
	min-width: 0;
}

.awl-account-playlist-card strong,
.awl-account-playlist-card span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.awl-account-playlist-card span {
	color: var(--awl-muted);
	font-weight: 800;
}

.awl-account-playlist-actions {
	position: absolute;
	right: 14px;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 3ch;
	transform: translateY(-50%);
}

.awl-account-playlist-card a,
.awl-account-playlist-card button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border-radius: 999px;
	border: 0;
	background: var(--awl-primary);
	color: #fff;
	padding: 8px 12px;
	font: inherit;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.awl-account-playlist-card a {
	background: rgba(13, 106, 205, 0.1);
	color: var(--awl-primary);
}

@media (max-width: 560px) {
	.awl-account-playlist-card {
		padding: 14px;
	}

	.awl-account-playlist-actions {
		position: static;
		margin-top: 12px;
		transform: none;
	}
}

.awl-payment-modal[hidden] {
	display: none;
}

.awl-payment-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: grid;
	place-items: center;
	padding: clamp(14px, 3vw, 34px);
}

.awl-payment-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 12, 34, 0.64);
	backdrop-filter: blur(8px);
}

.awl-payment-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: auto auto auto;
	width: min(560px, 96vw);
	max-height: 92vh;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	background: var(--awl-surface);
	box-shadow: 0 34px 120px rgba(0, 20, 65, 0.42);
}

.awl-payment-dialog header {
	padding: 20px 56px 16px 22px;
	background: linear-gradient(135deg, var(--awl-secondary), var(--awl-primary));
	color: #fff;
}

.awl-payment-dialog header span {
	display: inline-flex;
	border-radius: 999px;
	background: rgba(245, 180, 0, 0.18);
	color: var(--awl-accent);
	font-size: 0.76rem;
	font-weight: 900;
	padding: 5px 10px;
}

.awl-payment-dialog h2 {
	margin: 8px 0 6px;
	color: #fff;
	font-size: clamp(1.25rem, 2vw, 1.9rem);
	line-height: 1.1;
}

.awl-payment-dialog p {
	margin: 0;
	max-width: 680px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.92rem;
	line-height: 1.45;
}

.awl-payment-close {
	position: absolute;
	right: 14px;
	top: 14px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
}

.awl-payment-status {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 34px 24px;
	text-align: center;
}

.awl-payment-status-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 999px;
	background: rgba(245, 180, 0, 0.16);
	color: #07245f;
}

.awl-payment-status-icon::before {
	content: "";
	width: 28px;
	height: 24px;
	border: 3px solid currentColor;
	border-radius: 6px 6px 9px 9px;
}

.awl-payment-status-icon::after {
	content: "";
	position: absolute;
	top: 19px;
	width: 18px;
	height: 14px;
	border: 3px solid currentColor;
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
}

.awl-payment-status strong {
	color: var(--awl-text);
	font-size: 1.2rem;
}

.awl-payment-status p {
	max-width: 390px;
	color: var(--awl-muted);
}

.awl-checkout-form {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.awl-payment-methods {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.awl-payment-methods label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	border: 1px solid var(--awl-border);
	border-radius: 12px;
	background: #fff;
	padding: 8px 10px;
	cursor: pointer;
}

.awl-mobile-fields {
	display: grid;
	gap: 12px;
}

.awl-checkout-form.uses-card .awl-mobile-fields {
	display: none;
}

.awl-network-hint {
	color: var(--awl-muted) !important;
	font-size: 0.78rem !important;
}

.awl-checkout-product {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 1px solid var(--awl-border);
	border-radius: 14px;
	background: #f8fafc;
	padding: 12px 14px;
}

.awl-checkout-product strong {
	color: var(--awl-text);
}

.awl-checkout-product span {
	color: var(--awl-primary);
	font-weight: 900;
}

.awl-checkout-form label {
	display: grid;
	gap: 6px;
	color: var(--awl-text);
	font-size: 0.88rem;
	font-weight: 800;
}

.awl-checkout-form .awl-payment-methods label {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.awl-checkout-form input,
.awl-checkout-form select {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--awl-border);
	border-radius: 10px;
	background: #fff;
	color: var(--awl-text);
	padding: 8px 11px;
	box-sizing: border-box;
}

.awl-checkout-message {
	min-height: 22px;
	margin: 0;
	color: var(--awl-muted);
	font-size: 0.88rem;
}

.awl-payment-dialog footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	border-top: 1px solid var(--awl-border);
	padding: 14px 18px;
	background: var(--awl-surface);
}

.awl-payment-done {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 40px;
	border-radius: 10px;
	padding: 9px 14px;
	font-weight: 900;
	text-decoration: none;
}

.awl-payment-done {
	border: 0;
	background: var(--awl-accent);
	color: #07245f;
	cursor: pointer;
}

.awl-song-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	align-items: start;
}

.awl-song-main {
	min-width: 0;
}

.awl-song-sidebar {
	position: sticky;
	top: 32px;
}

.awl-side-panel {
	border: 1px solid var(--awl-border);
	border-radius: 18px;
	background: var(--awl-surface);
	padding: 18px;
	box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
}

.awl-video-card {
	margin-bottom: 18px;
}

.awl-video-open {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(13, 106, 205, 0.16);
	border-radius: 18px;
	background: linear-gradient(135deg, var(--awl-secondary), var(--awl-primary));
	color: #fff;
	cursor: pointer;
	box-shadow: 0 16px 38px rgba(0, 37, 116, 0.18);
	padding: 0;
	text-align: left;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.awl-video-open:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 48px rgba(0, 37, 116, 0.24);
}

.awl-video-open img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	opacity: 0.92;
}

.awl-video-open::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 16, 55, 0.08), rgba(0, 16, 55, 0.68));
}

.awl-video-open strong {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 14px;
	z-index: 1;
	font-size: 0.96rem;
	line-height: 1.2;
}

.awl-video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 58px;
	height: 58px;
	border-radius: 999px;
	background: var(--awl-accent);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	transform: translate(-50%, -50%);
}

.awl-video-play::before {
	content: "";
	position: absolute;
	left: 23px;
	top: 18px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid var(--awl-secondary);
}

.awl-video-modal[hidden] {
	display: none;
}

.awl-video-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99992;
	background: rgba(5, 12, 34, 0.68);
	backdrop-filter: blur(8px);
}

.awl-video-dialog {
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 99993;
	width: min(940px, calc(100vw - 28px));
	transform: translate(-50%, -50%);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	background: linear-gradient(145deg, #001f5b, #003a9f 58%, #0d6acd);
	color: #fff;
	box-shadow: 0 30px 90px rgba(0, 20, 65, 0.46);
	padding: 22px;
}

.awl-video-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.awl-video-dialog-head {
	padding-right: 48px;
	margin-bottom: 16px;
}

.awl-video-dialog-head span {
	display: inline-flex;
	border-radius: 999px;
	background: var(--awl-accent);
	color: var(--awl-secondary);
	font-size: 0.78rem;
	font-weight: 900;
	padding: 5px 10px;
	margin-bottom: 8px;
}

.awl-video-dialog-head h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.3rem, 3vw, 2rem);
}

.awl-video-frame {
	overflow: hidden;
	border-radius: 18px;
	background: #001234;
	aspect-ratio: 16 / 9;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.awl-video-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.awl-side-panel h2,
.awl-side-panel h3 {
	font-size: 1rem;
	margin: 0 0 12px;
	color: inherit;
}

.awl-song-facts span {
	border: 1px solid var(--awl-border);
	border-radius: 12px;
	background: var(--awl-surface);
	padding: 8px 11px;
}

.awl-tabs button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 78px;
	border: 0;
	border-right: 1px solid rgba(13, 106, 205, 0.12);
	background: transparent;
	color: var(--awl-text);
	padding: 0 26px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: color 160ms ease, background 160ms ease;
}

.awl-tabs button:first-child {
	border-left: 0;
}

.awl-tabs button::before {
	color: var(--awl-primary);
	font-size: 1.05em;
}

.awl-tabs button[data-tab="lyrics"]::before {
	content: "▣";
}

.awl-tabs button[data-tab="chords"]::before {
	content: "♬";
}

.awl-tabs button[data-tab="story"]::before {
	content: "ⓘ";
}

.awl-tabs button[data-tab="notes"]::before {
	content: "✎";
}

.awl-tabs button[data-tab="stems"]::before {
	content: "≋";
}

.awl-tabs button[data-tab="satb"]::before {
	content: "♩";
}

.awl-tabs button::after {
	content: "";
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 0;
	height: 3px;
	border-radius: 999px 999px 0 0;
	background: transparent;
}

.awl-tabs button.is-active {
	background: #fff;
	color: var(--awl-primary);
}

.awl-tabs button.is-active::after {
	background: var(--awl-primary);
}

.awl-tabs-shell .awl-language-select {
	margin-left: auto;
	padding-left: 14px;
	border-left: 1px solid rgba(13, 106, 205, 0.12);
}

.awl-transpose {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 14px 0;
	width: auto;
	max-width: 100%;
}

.awl-transpose span {
	color: var(--awl-muted);
	font-size: 0.9rem;
}

.awl-transpose select {
	border: 1px solid var(--awl-border);
	border-radius: 12px;
	background: var(--awl-surface);
	min-height: 44px;
	padding: 8px 12px;
	width: auto;
	min-width: 112px;
	max-width: 140px;
	flex: 0 0 auto;
}

.awl-tab-panel {
	display: none;
	border: 1px solid var(--awl-border);
	border-radius: 18px;
	padding: 18px;
	background: var(--awl-surface);
	box-shadow: 0 14px 34px rgba(23, 32, 51, 0.06);
}

.awl-tab-panel.is-active {
	display: block;
}

.awl-text-content,
.awl-chordpro {
	white-space: pre-wrap;
	font: inherit;
	font-size: var(--awl-song-text-size, 1.08rem);
	line-height: 1.8;
	margin: 0;
	color: inherit;
	text-align: center;
}

.awl-chord {
	color: var(--awl-primary);
	font-weight: 700;
}

.awl-text-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 16px;
	color: var(--awl-muted);
	font-size: 0.9rem;
}

.awl-text-tools button {
	min-width: 34px;
	min-height: 34px;
	border: 1px solid var(--awl-border);
	border-radius: 9px;
	background: var(--awl-surface);
	color: var(--awl-text);
	font-weight: 800;
	cursor: pointer;
}

.awl-text-tools button:hover,
.awl-text-tools button.is-active {
	border-color: var(--awl-primary);
	background: var(--awl-primary);
	color: #fff;
}

.awl-present-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-right: auto;
	padding: 0 12px;
}

.awl-present-button strong {
	display: inline-block;
	line-height: 1;
}

.awl-present-button span {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 14px;
	border: 2px solid currentColor;
	border-radius: 3px;
}

.awl-present-button span::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	width: 12px;
	height: 2px;
	background: currentColor;
	transform: translateX(-50%);
}

.awl-structured-text {
	display: grid;
	gap: 22px;
}

.awl-song-section {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 4px 0 18px;
	border-bottom: 1px solid rgba(13, 106, 205, 0.12);
}

.awl-song-section:last-child {
	border-bottom: 0;
}

.awl-section-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	border-radius: 999px;
	background: rgba(13, 106, 205, 0.1);
	color: var(--awl-primary);
	font-size: 0.85rem;
	font-weight: 900;
	padding: 6px 14px;
}

.awl-section-body {
	white-space: pre-wrap;
}

.awl-section-refrain .awl-section-body,
.awl-section-vamp .awl-section-body,
.awl-section-pont .awl-section-body,
.awl-section-pre-refrain .awl-section-body,
.awl-section-refrain .awl-section-label,
.awl-section-vamp .awl-section-label,
.awl-section-pont .awl-section-label,
.awl-section-pre-refrain .awl-section-label {
	color: var(--awl-primary);
	font-weight: 900;
}

.awl-section-refrain .awl-section-label,
.awl-section-vamp .awl-section-label,
.awl-section-pont .awl-section-label,
.awl-section-pre-refrain .awl-section-label {
	background: rgba(13, 106, 205, 0.14);
}

.awl-section-refrain .awl-chord,
.awl-section-vamp .awl-chord,
.awl-section-pont .awl-chord,
.awl-section-pre-refrain .awl-chord {
	color: var(--awl-text);
}

.awl-presentation[hidden] {
	display: none;
}

.awl-presentation {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at center, #0d6acd 0, #06327d 48%, #031a42 100%);
	color: #fff;
	padding: clamp(18px, 3vw, 48px);
}

.awl-presentation-stage {
	position: relative;
	display: grid;
	place-items: center;
	width: min(92vw, calc(92vh * 16 / 9));
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
	overflow: hidden;
}

.awl-presentation-frame {
	display: grid;
	place-items: center;
	gap: clamp(16px, 2vw, 28px);
	width: 100%;
	height: 100%;
	padding: clamp(48px, 7vw, 110px);
	text-align: center;
}

.awl-presentation-brand,
.awl-presentation-song-title,
.awl-presentation-site {
	position: absolute;
	top: 18px;
	z-index: 2;
	max-width: 30%;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(0.68rem, 0.95vw, 0.92rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.awl-presentation-brand {
	left: 22px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.awl-presentation-brand img {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	object-fit: cover;
	background: rgba(255, 255, 255, 0.16);
}

.awl-presentation-song-title {
	left: 50%;
	text-align: center;
	transform: translateX(-50%);
}

.awl-presentation-site {
	right: 74px;
	text-align: right;
}

.awl-presentation-label {
	border-radius: 999px;
	background: var(--awl-accent);
	color: #07245f;
	font-size: clamp(1rem, 1.6vw, 1.5rem);
	font-weight: 900;
	padding: 8px 18px;
}

.awl-presentation-content {
	white-space: pre-wrap;
	color: #fff;
	font-size: clamp(2.2rem, 4.8vw, 5.8rem);
	font-weight: 800;
	line-height: 1.18;
}

.awl-presentation-content .awl-chord {
	color: var(--awl-accent);
	font-size: 0.72em;
	font-weight: 900;
}

.awl-presentation-frame.awl-section-refrain .awl-presentation-content,
.awl-presentation-frame.awl-section-vamp .awl-presentation-content,
.awl-presentation-frame.awl-section-pont .awl-presentation-content,
.awl-presentation-frame.awl-section-pre-refrain .awl-presentation-content {
	color: #fff;
	font-weight: 900;
}

.awl-presentation-frame.awl-section-refrain .awl-chord,
.awl-presentation-frame.awl-section-vamp .awl-chord,
.awl-presentation-frame.awl-section-pont .awl-chord,
.awl-presentation-frame.awl-section-pre-refrain .awl-chord {
	color: var(--awl-accent);
}

.awl-presentation-close,
.awl-presentation-nav {
	position: absolute;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(12px);
}

.awl-presentation-close {
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
}

.awl-presentation-close::before,
.awl-presentation-close::after {
	content: "";
	position: absolute;
	left: 13px;
	top: 21px;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.awl-presentation-close::before {
	transform: rotate(45deg);
}

.awl-presentation-close::after {
	transform: rotate(-45deg);
}

.awl-presentation-nav {
	top: 50%;
	width: 54px;
	height: 54px;
	transform: translateY(-50%);
}

.awl-presentation-nav:disabled {
	cursor: default;
	opacity: 0.32;
}

.awl-presentation-prev {
	left: 18px;
}

.awl-presentation-next {
	right: 18px;
}

.awl-presentation-prev::before,
.awl-presentation-next::before {
	content: "";
	position: absolute;
	top: 18px;
	width: 16px;
	height: 16px;
	border-top: 3px solid currentColor;
	border-left: 3px solid currentColor;
}

.awl-presentation-prev::before {
	left: 21px;
	transform: rotate(-45deg);
}

.awl-presentation-next::before {
	right: 21px;
	transform: rotate(135deg);
}

.awl-presentation-count {
	position: absolute;
	left: 50%;
	bottom: 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.86);
	font-weight: 800;
	padding: 7px 13px;
	transform: translateX(-50%);
}

.awl-related-songs {
	margin: 28px 0 118px;
	border: 1px solid var(--awl-border);
	border-radius: 20px;
	background: var(--awl-surface);
	padding: 22px;
	box-shadow: 0 16px 42px rgba(11, 18, 52, 0.07);
}

.awl-related-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.awl-related-head h2 {
	margin: 0;
	font-size: 1.45rem;
}

.awl-related-head p {
	margin: 0;
	color: var(--awl-muted);
}

.awl-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px;
}

.awl-related-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	border: 1px solid rgba(13, 106, 205, 0.12);
	border-radius: 14px;
	background: rgba(13, 106, 205, 0.04);
	color: var(--awl-text);
	padding: 10px;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.awl-related-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(11, 18, 52, 0.1);
}

.awl-related-card img,
.awl-related-placeholder {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	object-fit: cover;
	background: linear-gradient(135deg, rgba(13, 106, 205, 0.16), rgba(245, 180, 0, 0.18));
}

.awl-related-card strong,
.awl-related-card small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.awl-related-card small {
	color: var(--awl-muted);
}

.awl-stems-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.awl-stems-head h2 {
	margin: 0 0 4px;
	font-size: 1.35rem;
}

.awl-stems-head p {
	margin: 0;
	color: var(--awl-muted);
}

.awl-stem-mixer-open,
.awl-stem-play {
	border: 0;
	border-radius: 12px;
	background: var(--awl-primary);
	color: #fff;
	font-weight: 800;
	padding: 12px 16px;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(13, 106, 205, 0.22);
}

.awl-stem-play {
	background: var(--awl-accent);
	color: var(--awl-primary);
	box-shadow: 0 14px 28px rgba(251, 180, 0, 0.28);
}

.awl-stem-play::before {
	content: "▶";
	margin-right: 8px;
}

.awl-stem-modal.is-playing .awl-stem-play::before {
	content: "Ⅱ";
}

.awl-stem-row[data-stem-type],
.awl-stem-track[data-stem-type] {
	--stem-color: #38bdf8;
	--stem-level: 100%;
}

.awl-stem-row[data-stem-type="stem_drums"],
.awl-stem-track[data-stem-type="stem_drums"] {
	--stem-color: #8b5cf6;
}

.awl-stem-row[data-stem-type="stem_bass"],
.awl-stem-track[data-stem-type="stem_bass"] {
	--stem-color: #14b8a6;
}

.awl-stem-row[data-stem-type="stem_guitars"],
.awl-stem-track[data-stem-type="stem_guitars"] {
	--stem-color: #f59e0b;
}

.awl-stem-row[data-stem-type="stem_keys"],
.awl-stem-track[data-stem-type="stem_keys"] {
	--stem-color: #0ea5e9;
}

.awl-stem-row[data-stem-type="stem_lead_vocal"],
.awl-stem-track[data-stem-type="stem_lead_vocal"] {
	--stem-color: #22c55e;
}

.awl-stem-row[data-stem-type="stem_backing_vocals"],
.awl-stem-track[data-stem-type="stem_backing_vocals"] {
	--stem-color: #ec4899;
}

.awl-stem-row[data-stem-type="stem_click_guide"],
.awl-stem-track[data-stem-type="stem_click_guide"] {
	--stem-color: #f97316;
}

.awl-stem-row[data-stem-type="satb_pdf"],
.awl-stem-track[data-stem-type="satb_pdf"],
.awl-stem-row[data-stem-type="satb_all"],
.awl-stem-track[data-stem-type="satb_all"] {
	--stem-color: #ec4899;
}

.awl-stem-row[data-stem-type="satb_soprano"],
.awl-stem-track[data-stem-type="satb_soprano"] {
	--stem-color: #08a6e9;
}

.awl-stem-row[data-stem-type="satb_alto"],
.awl-stem-track[data-stem-type="satb_alto"] {
	--stem-color: #f59e0b;
}

.awl-stem-row[data-stem-type="satb_tenor"],
.awl-stem-track[data-stem-type="satb_tenor"] {
	--stem-color: #21c55e;
}

.awl-stem-row[data-stem-type="satb_bass"],
.awl-stem-track[data-stem-type="satb_bass"] {
	--stem-color: #8b5cf6;
}

.awl-stem-list,
.awl-stem-mixer-tracks {
	display: grid;
	gap: 12px;
}

.awl-stem-row,
.awl-stem-track {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--awl-border);
	border-radius: 14px;
	background: linear-gradient(180deg, #fff, var(--awl-soft));
	padding: 12px;
}

.awl-stem-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background: transparent;
	box-shadow: none;
}

.awl-stem-icon img {
	display: block;
	width: 70px;
	height: 70px;
	object-fit: contain;
}

.awl-stem-row strong,
.awl-stem-track span {
	display: block;
	color: var(--awl-text);
}

.awl-stem-row span {
	display: block;
	color: var(--awl-muted);
	font-size: 0.9rem;
	margin-top: 3px;
}

.awl-stem-preview {
	border: 1px solid rgba(13, 106, 205, 0.22);
	border-radius: 10px;
	background: #fff;
	color: var(--awl-primary);
	font-weight: 800;
	min-height: 40px;
	padding: 0 14px;
	cursor: pointer;
}

.awl-stem-preview::before,
.awl-stem-row .awl-download-form summary::before {
	display: inline-block;
	margin-right: 7px;
	font-weight: 900;
}

.awl-stem-preview::before {
	content: "▶";
}

.awl-stem-row .awl-download-form summary::before {
	content: "↓";
}

.awl-stem-row .awl-download-form {
	min-width: 150px;
}

.awl-stem-row .awl-download-form summary {
	border-radius: 10px;
	padding: 9px 12px;
}

.awl-stem-modal[hidden] {
	display: none;
}

.awl-stem-modal-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99988;
	background: rgba(5, 12, 34, 0.58);
	backdrop-filter: blur(7px);
}

.awl-stem-mixer {
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 99989;
	width: min(1220px, calc(100vw - 28px));
	max-height: min(820px, calc(100vh - 28px));
	overflow: auto;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	background: linear-gradient(145deg, #001f5b, #003a9f 58%, #0d6acd);
	color: #fff;
	box-shadow: 0 28px 80px rgba(0, 20, 65, 0.42);
	padding: 24px;
}

.awl-fedapay-overlay-host {
	background: rgba(7, 13, 38, 0.62) !important;
	backdrop-filter: blur(8px) !important;
	-webkit-backdrop-filter: blur(8px) !important;
	display: grid !important;
	place-items: center !important;
	padding: clamp(14px, 3vw, 34px) !important;
}

.awl-fedapay-frame {
	background: transparent !important;
	border: 0 !important;
	border-radius: 22px !important;
	box-shadow: 0 34px 120px rgba(7, 13, 38, 0.38) !important;
	max-width: min(560px, 96vw) !important;
	max-height: min(760px, 92vh) !important;
}

.awl-stem-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}

.awl-stem-mixer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	padding-right: 40px;
}

.awl-stem-mixer h2 {
	margin: 0 0 4px;
	color: #fff;
}

.awl-stem-mixer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.awl-stem-master {
	position: relative;
	display: grid;
	align-items: center;
	margin: 4px 0 8px;
}

.awl-stem-wave {
	width: 100%;
	height: 42px;
	opacity: 0.95;
}

.awl-stem-progress {
	position: absolute;
	inset-inline: 0;
	width: 100%;
	accent-color: var(--awl-accent);
	background: transparent;
}

.awl-stem-time {
	display: block;
	margin: 8px 0 16px;
	color: rgba(255, 255, 255, 0.78);
	font-variant-numeric: tabular-nums;
}

.awl-stem-mixer-tracks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
	gap: 10px;
	overflow-x: visible;
	padding: 6px 2px 4px;
}

.awl-stem-track {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	align-items: start;
	min-width: 0;
	min-height: 382px;
	padding: 16px 10px;
	background: rgba(5, 12, 34, 0.3);
	border-color: rgba(255, 255, 255, 0.16);
	border-radius: 16px;
}

.awl-stem-track .awl-stem-icon {
	background: transparent;
	box-shadow: none;
	width: 52px;
	height: 52px;
}

.awl-stem-track .awl-stem-icon img {
	width: 52px;
	height: 52px;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.awl-stem-track strong {
	color: #fff;
	font-weight: 800;
	text-align: center;
}

.awl-stem-fader {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 190px;
	width: 52px;
	margin: 14px 0 8px;
}

.awl-stem-fader::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 10px;
	border-radius: 999px;
	transform: translateX(-50%);
	background: linear-gradient(to top, var(--stem-color) 0 var(--stem-level), rgba(255, 255, 255, 0.28) var(--stem-level) 100%);
}

.awl-stem-fader input[type="range"] {
	position: relative;
	z-index: 1;
	width: 190px;
	height: 34px;
	transform: rotate(-90deg);
	background: transparent;
	accent-color: var(--stem-color);
	-webkit-appearance: none;
	appearance: none;
}

.awl-stem-fader input[type="range"]::-webkit-slider-runnable-track {
	height: 10px;
	border-radius: 999px;
	background: transparent;
}

.awl-stem-fader input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 40px;
	height: 54px;
	margin-top: -22px;
	border: 0;
	border-radius: 16px;
	background: #a9bac3;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 10px 24px rgba(0, 0, 0, 0.25);
}

.awl-stem-fader input[type="range"]::-moz-range-track {
	height: 10px;
	border-radius: 999px;
	background: transparent;
}

.awl-stem-fader input[type="range"]::-moz-range-thumb {
	width: 40px;
	height: 54px;
	border: 0;
	border-radius: 16px;
	background: #a9bac3;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 10px 24px rgba(0, 0, 0, 0.25);
}

.awl-stem-switches {
	display: grid;
	gap: 8px;
	margin: 4px 0 10px;
}

.awl-stem-switches button {
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 999px;
	background: transparent;
	color: rgba(255, 255, 255, 0.76);
	font-weight: 800;
	cursor: pointer;
}

.awl-stem-track.is-muted .awl-stem-mute,
.awl-stem-track.is-solo .awl-stem-solo {
	background: var(--stem-color);
	border-color: var(--stem-color);
	color: #061225;
}

.awl-download-form {
	position: relative;
}

.awl-download-form summary {
	list-style: none;
	width: 100%;
}

.awl-download-form summary::-webkit-details-marker {
	display: none;
}

.awl-download-form form {
	border: 1px solid var(--awl-border);
	border-radius: 14px;
	margin-top: 8px;
	padding: 14px;
	width: min(360px, 90vw);
	background: var(--awl-surface);
	box-shadow: 0 12px 30px rgba(23, 32, 51, 0.12);
}

.awl-download-form[open]::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 99990;
	background: rgba(5, 12, 34, 0.52);
	backdrop-filter: blur(5px);
}

.awl-download-form[open] form {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99991;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 26px;
	border-radius: 18px;
}

.awl-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 34px !important;
	min-height: 34px !important;
	padding: 0 !important;
	border-radius: 999px !important;
	background: var(--awl-soft) !important;
	color: var(--awl-text) !important;
	border-color: transparent !important;
	font-size: 20px;
	line-height: 1;
}

.awl-download-form form.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.awl-download-form form.has-saved-contact p:first-child::after {
	content: " Vos informations sont deja memorisees pour cette session.";
	display: block;
	color: var(--awl-muted);
	margin-top: 6px;
}

.awl-form-error {
	display: none;
	color: #b91c1c;
}

.awl-download-form form.has-error .awl-form-error {
	display: block;
}

.awl-download-form label {
	display: block;
	margin: 10px 0;
}

.awl-check {
	display: flex !important;
	align-items: flex-start;
	gap: 8px;
}

.awl-check input {
	width: auto;
	min-height: auto;
	margin-top: 4px;
}

.awl-sticky-player {
	--awl-progress: 0%;
	position: fixed;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 99998;
	display: grid;
	grid-template-columns: 64px minmax(180px, 250px) auto auto minmax(260px, 1fr) auto minmax(120px, 160px) auto;
	align-items: center;
	gap: 16px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 20px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 16px;
	background: linear-gradient(90deg, rgba(0, 31, 91, 0.98), rgba(0, 58, 159, 0.98) 48%, rgba(13, 106, 205, 0.98));
	color: #fff;
	box-shadow: 0 18px 48px rgba(0, 20, 65, 0.28);
	backdrop-filter: blur(16px);
	transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.awl-sticky-player[hidden] {
	display: none;
}

.awl-sticky-player:hover {
	box-shadow: 0 22px 62px rgba(0, 20, 65, 0.36);
	transform: translateY(-1px);
}

.awl-sticky-cover-link,
.awl-sticky-meta {
	color: #fff;
	text-decoration: none;
}

.awl-sticky-artwork {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.awl-sticky-info {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.awl-sticky-meta {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.awl-sticky-meta strong {
	font-weight: 800;
}

.awl-sticky-meta strong,
.awl-sticky-artist {
	display: block;
	overflow: hidden;
	white-space: nowrap;
}

.awl-marquee-text {
	display: inline-block;
	min-width: 100%;
	overflow: visible;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.awl-sticky-meta .is-marquee .awl-marquee-text {
	text-overflow: clip;
	animation: awl-marquee 9s ease-in-out 1s infinite alternate;
	will-change: transform;
}

.awl-sticky-meta:hover .is-marquee .awl-marquee-text {
	animation-play-state: paused;
}

.awl-sticky-artist,
.awl-sticky-time {
	color: rgba(255, 255, 255, 0.76);
}

.awl-sticky-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.awl-sticky-status i {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
}

.awl-sticky-player.is-playing .awl-sticky-status {
	color: var(--awl-accent);
}

.awl-sticky-player.is-playing .awl-sticky-status i {
	background: var(--awl-accent);
	box-shadow: 0 0 0 5px rgba(245, 180, 0, 0.14);
}

@keyframes awl-marquee {
	0%,
	14% {
		transform: translateX(0);
	}

	86%,
	100% {
		transform: translateX(var(--awl-marquee-distance, -40px));
	}
}

.awl-sticky-controls,
.awl-sticky-volume,
.awl-sticky-extra {
	display: flex;
	align-items: center;
	gap: 8px;
}

.awl-sticky-lyrics {
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
	cursor: pointer;
	min-height: 36px;
	padding: 0 14px;
	font-weight: 800;
}

.awl-sticky-controls button,
.awl-sticky-volume button,
.awl-sticky-extra button,
.awl-sticky-panel-close {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.awl-sticky-controls button:hover,
.awl-sticky-volume button:hover,
.awl-sticky-extra button:hover,
.awl-sticky-panel-close:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.34);
	transform: translateY(-1px);
}

.awl-sticky-play {
	background: var(--awl-accent) !important;
	border-color: var(--awl-accent) !important;
	width: 56px !important;
	height: 56px !important;
	box-shadow: 0 10px 24px rgba(245, 180, 0, 0.28);
}

.awl-sticky-player.is-shuffle .awl-sticky-shuffle,
.awl-sticky-player[data-repeat-mode="one"] .awl-sticky-repeat,
.awl-sticky-player[data-repeat-mode="all"] .awl-sticky-repeat {
	background: rgba(245, 180, 0, 0.22);
	border-color: rgba(245, 180, 0, 0.72);
	color: var(--awl-accent);
}

.awl-sticky-shuffle::before {
	content: "";
	width: 18px;
	height: 12px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: skewX(-24deg);
}

.awl-sticky-shuffle::after {
	content: "";
	position: absolute;
	right: 9px;
	top: 10px;
	width: 6px;
	height: 6px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	box-shadow: 0 13px 0 -1px currentColor;
}

.awl-sticky-rewind::before,
.awl-sticky-forward::before {
	content: "10";
	position: absolute;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}

.awl-sticky-rewind::after,
.awl-sticky-forward::after {
	content: "";
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 999px;
}

.awl-sticky-forward::after {
	transform: scaleX(-1);
}

.awl-sticky-prev::before,
.awl-sticky-next::before {
	content: "";
	width: 12px;
	height: 12px;
	border-left: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
}

.awl-sticky-prev::before {
	transform: rotate(45deg);
}

.awl-sticky-next::before {
	transform: rotate(-135deg);
}

.awl-sticky-repeat::before {
	content: "";
	width: 18px;
	height: 13px;
	border: 2px solid currentColor;
	border-left-color: transparent;
	border-radius: 8px;
}

.awl-sticky-repeat::after {
	content: "";
	position: absolute;
	right: 8px;
	top: 11px;
	width: 6px;
	height: 6px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.awl-sticky-player[data-repeat-mode="one"] .awl-sticky-repeat span,
.awl-sticky-player[data-repeat-mode="one"] .awl-sticky-repeat::before {
	position: relative;
}

.awl-sticky-player[data-repeat-mode="one"] .awl-sticky-repeat {
	font-size: 0;
}

.awl-sticky-player[data-repeat-mode="one"] .awl-sticky-repeat::after {
	content: "1";
	border: 0;
	right: 8px;
	top: 8px;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: var(--awl-accent);
	color: #001f5b;
	font-size: 9px;
	font-weight: 900;
	display: grid;
	place-items: center;
	transform: none;
}

.awl-sticky-mute::before {
	content: "";
	width: 15px;
	height: 12px;
	background: currentColor;
	clip-path: polygon(0 35%, 35% 35%, 72% 0, 72% 100%, 35% 65%, 0 65%);
}

.awl-sticky-player.is-muted .awl-sticky-mute::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 2px;
	background: currentColor;
	transform: rotate(-42deg);
}

.awl-sticky-queue::before {
	content: "";
	width: 17px;
	height: 13px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	box-shadow: 0 5px 0 currentColor;
}

.awl-sticky-menu::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 9px 0 0 currentColor, -9px 0 0 currentColor;
}

.awl-sticky-mini::before {
	content: "";
	width: 16px;
	height: 12px;
	border: 2px solid currentColor;
	border-radius: 3px;
}

.awl-sticky-player.is-mini .awl-sticky-mini::before {
	width: 14px;
	height: 14px;
	border: 0;
	border-left: 2px solid currentColor;
	border-top: 2px solid currentColor;
	transform: rotate(45deg) translateY(2px);
}

.awl-sticky-player.is-mini .awl-sticky-mini::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.awl-sticky-shuffle::before,
.awl-sticky-repeat::before,
.awl-sticky-queue::before,
.awl-sticky-mini::before,
.awl-sticky-action-download::before,
.awl-sticky-action-share::before,
.awl-sticky-action-playlist::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 0;
	background: currentColor;
	box-shadow: none;
	transform: none;
	flex: 0 0 20px;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.awl-sticky-shuffle::before {
	-webkit-mask-image: url("../icons/player/shuffle.svg");
	mask-image: url("../icons/player/shuffle.svg");
}

.awl-sticky-repeat::before {
	-webkit-mask-image: url("../icons/player/repeat.svg");
	mask-image: url("../icons/player/repeat.svg");
}

.awl-sticky-queue::before {
	-webkit-mask-image: url("../icons/player/queue.svg");
	mask-image: url("../icons/player/queue.svg");
}

.awl-sticky-mini::before,
.awl-sticky-player.is-mini .awl-sticky-mini::before {
	width: 19px;
	height: 19px;
	border: 0;
	transform: none;
	-webkit-mask-image: url("../icons/player/minimize.svg");
	mask-image: url("../icons/player/minimize.svg");
}

.awl-sticky-player.is-mini .awl-sticky-mini::before {
	-webkit-mask-image: url("../icons/player/resize.svg");
	mask-image: url("../icons/player/resize.svg");
}

.awl-sticky-action-download::before {
	-webkit-mask-image: url("../icons/player/download.svg");
	mask-image: url("../icons/player/download.svg");
}

.awl-sticky-action-share::before {
	-webkit-mask-image: url("../icons/player/share.svg");
	mask-image: url("../icons/player/share.svg");
}

.awl-sticky-action-playlist::before {
	-webkit-mask-image: url("../icons/player/add-playlist.svg");
	mask-image: url("../icons/player/add-playlist.svg");
}

.awl-sticky-shuffle::after,
.awl-sticky-repeat::after,
.awl-sticky-player.is-mini .awl-sticky-mini::after,
.awl-sticky-action-download::after,
.awl-sticky-action-share::after,
.awl-sticky-action-playlist::after {
	content: none;
}

.awl-sticky-player[data-repeat-mode="one"] .awl-sticky-repeat::after {
	content: "1";
	position: absolute;
	right: 7px;
	top: 7px;
	width: 14px;
	height: 14px;
	border: 0;
	border-radius: 999px;
	background: var(--awl-accent);
	color: #001f5b;
	font-size: 9px;
	font-weight: 900;
	line-height: 14px;
	text-align: center;
	transform: none;
}

.awl-sticky-panel-close::before {
	content: "";
	width: 14px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	box-shadow: 0 0 0 currentColor;
}

.awl-sticky-panel-close::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 2px;
	background: currentColor;
	transform: rotate(-45deg);
}

.awl-sticky-progress-wrap {
	position: relative;
	min-width: 0;
	height: 40px;
	display: grid;
	align-items: center;
}

.awl-sticky-wave {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 34px;
	opacity: 0.52;
	pointer-events: none;
}

.awl-sticky-progress {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 6px;
	appearance: none;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--awl-accent) var(--awl-progress), rgba(255,255,255,0.24) var(--awl-progress));
	cursor: pointer;
}

.awl-sticky-progress::-webkit-slider-thumb,
.awl-sticky-volume-range::-webkit-slider-thumb {
	appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: #fff;
	border: 2px solid var(--awl-accent);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.awl-sticky-progress::-moz-range-thumb,
.awl-sticky-volume-range::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: #fff;
	border: 2px solid var(--awl-accent);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.awl-sticky-time {
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	font-size: 0.92rem;
}

.awl-sticky-volume-range {
	width: 88px;
	height: 5px;
	appearance: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	cursor: pointer;
}

.awl-sticky-panel {
	position: absolute;
	right: 18px;
	bottom: calc(100% + 10px);
	width: min(320px, calc(100vw - 36px));
	border: 1px solid rgba(11, 46, 122, 0.12);
	border-radius: 16px;
	padding: 16px;
	background: #fff;
	color: #0b2e7a;
	box-shadow: 0 16px 42px rgba(0, 20, 65, 0.32);
}

.awl-sticky-queue-panel.is-playlist-view {
	width: min(560px, calc(100vw - 36px));
}

.awl-sticky-panel[hidden] {
	display: none;
}

.awl-sticky-panel p {
	margin: 12px 0 0;
	color: rgba(11, 46, 122, 0.72);
}

.awl-sticky-panel h3 {
	margin: 0 0 12px;
	color: #0b2e7a;
}

.awl-sticky-menu-panel {
	display: grid;
	gap: 6px;
}

.awl-sticky-menu-panel button,
.awl-sticky-clear-queue {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #0b2e7a;
	cursor: pointer;
	font-weight: 700;
	padding: 10px 12px;
	text-align: left;
}

.awl-sticky-menu-panel button::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 5px;
	background: rgba(16, 89, 200, 0.14);
	flex: 0 0 18px;
}

.awl-sticky-menu-panel button:hover,
.awl-sticky-clear-queue:hover {
	background: rgba(16, 89, 200, 0.08);
}

.awl-sticky-menu-panel button:disabled,
.awl-sticky-menu-panel button.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.awl-sticky-menu-panel button::after {
	content: none !important;
}

.awl-sticky-menu-panel .awl-sticky-repeat {
	font-size: inherit !important;
}

.awl-sticky-speed {
	display: grid;
	gap: 6px;
	color: #0b2e7a;
	font-weight: 700;
}

.awl-sticky-speed select {
	width: 100%;
	min-height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	background: rgba(16, 89, 200, 0.06);
	color: #0b2e7a;
	padding: 6px 10px;
}

.awl-sticky-menu-panel .awl-sticky-repeat::before,
.awl-sticky-menu-panel .awl-sticky-shuffle::before,
.awl-sticky-menu-panel .awl-sticky-action-download::before,
.awl-sticky-menu-panel .awl-sticky-action-share::before,
.awl-sticky-menu-panel .awl-sticky-action-playlist::before {
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 0;
	background: currentColor;
	box-shadow: none;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.awl-sticky-menu-panel .awl-sticky-repeat::before {
	-webkit-mask-image: url("../icons/player/repeat.svg");
	mask-image: url("../icons/player/repeat.svg");
}

.awl-sticky-menu-panel .awl-sticky-shuffle::before {
	-webkit-mask-image: url("../icons/player/shuffle.svg");
	mask-image: url("../icons/player/shuffle.svg");
}

.awl-sticky-menu-panel .awl-sticky-action-download::before {
	-webkit-mask-image: url("../icons/player/download.svg");
	mask-image: url("../icons/player/download.svg");
}

.awl-sticky-menu-panel .awl-sticky-action-share::before {
	-webkit-mask-image: url("../icons/player/share.svg");
	mask-image: url("../icons/player/share.svg");
}

.awl-sticky-menu-panel .awl-sticky-action-playlist::before {
	-webkit-mask-image: url("../icons/player/add-playlist.svg");
	mask-image: url("../icons/player/add-playlist.svg");
}

.awl-sticky-menu-panel .awl-sticky-action-favorite::before {
	content: "♡";
	display: inline-grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: currentColor;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	box-shadow: none;
}

.awl-queue-list {
	display: grid;
	gap: 8px;
	margin-top: 12px;
}

.awl-playlist-now {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	border-radius: 16px;
	background: linear-gradient(135deg, #0b2e7a, #1059c8);
	color: #fff;
	padding: 12px;
}

.awl-playlist-now img {
	width: 74px;
	height: 74px;
	border-radius: 12px;
	object-fit: cover;
}

.awl-playlist-now small,
.awl-playlist-now strong,
.awl-playlist-now span {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.awl-playlist-now small {
	color: var(--awl-accent);
	font-weight: 900;
	text-transform: uppercase;
}

.awl-playlist-now strong {
	font-size: 1.1rem;
}

.awl-playlist-add-box {
	display: grid;
	gap: 8px;
	border: 1px solid rgba(16, 89, 200, 0.12);
	border-radius: 14px;
	background: rgba(16, 89, 200, 0.05);
	padding: 12px;
}

.awl-playlist-add-box label {
	display: grid;
	gap: 6px;
	color: rgba(11, 46, 122, 0.72);
	font-weight: 900;
}

.awl-playlist-add-box input {
	min-height: 38px;
	border: 1px solid rgba(16, 89, 200, 0.18);
	border-radius: 10px;
	padding: 0 10px;
	font: inherit;
}

.awl-playlist-add-box button {
	border: 0;
	border-radius: 999px;
	background: var(--awl-accent);
	color: #06215b;
	font: inherit;
	font-weight: 900;
	padding: 10px 12px;
	cursor: pointer;
}

.awl-queue-heading {
	margin: 10px 0 2px;
	color: rgba(11, 46, 122, 0.66);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.awl-queue-empty {
	margin: 0;
	border: 1px dashed rgba(16, 89, 200, 0.22);
	border-radius: 14px;
	background: rgba(16, 89, 200, 0.05);
	color: rgba(11, 46, 122, 0.72);
	padding: 12px;
	font-weight: 800;
}

.awl-queue-item {
	display: grid;
	gap: 2px;
	width: 100%;
	text-align: left;
	border: 1px solid rgba(11, 46, 122, 0.12);
	border-radius: 12px;
	background: rgba(16, 89, 200, 0.04);
	color: #0b2e7a;
	padding: 10px 12px;
	cursor: pointer;
}

.awl-queue-item:hover {
	background: rgba(16, 89, 200, 0.09);
}

.awl-playlist-item {
	border-color: rgba(245, 180, 0, 0.3);
	background: rgba(245, 180, 0, 0.1);
}

.awl-queue-item span,
.awl-queue-item small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.awl-queue-item small {
	color: rgba(11, 46, 122, 0.62);
}

.awl-sticky-lyrics-panel {
	position: fixed;
	right: 28px;
	bottom: 116px;
	z-index: 99999;
	width: min(320px, calc(100vw - 42px));
	max-height: min(560px, 74vh);
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(180deg, #0b2e7a, #06215b);
	color: #fff;
	box-shadow: 0 22px 62px rgba(0, 20, 65, 0.32);
	padding: 18px;
}

.awl-sticky-lyrics-panel[hidden] {
	display: none;
}

.awl-sticky-lyrics-close {
	position: absolute;
	right: 12px;
	top: 12px;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.awl-sticky-lyrics-close::before,
.awl-sticky-lyrics-close::after {
	content: "";
	position: absolute;
	left: 9px;
	top: 15px;
	width: 14px;
	height: 2px;
	background: currentColor;
}

.awl-sticky-lyrics-close::before {
	transform: rotate(45deg);
}

.awl-sticky-lyrics-close::after {
	transform: rotate(-45deg);
}

.awl-sticky-lyrics-panel h3 {
	margin: 0 42px 16px 0;
}

.awl-sticky-lyrics-lines {
	display: grid;
	gap: 10px;
	max-height: 460px;
	overflow: auto;
	scrollbar-width: thin;
}

.awl-sticky-lyrics-lines p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	text-align: center;
	font-weight: 600;
}

.awl-sticky-lyrics-lines p.is-active {
	color: var(--awl-accent);
	font-size: 1.06em;
	font-weight: 900;
}

.awl-sticky-player.is-mini {
	grid-template-columns: 48px minmax(160px, 1fr) auto minmax(180px, 280px) auto auto;
	right: auto;
	max-width: 720px;
}

.awl-sticky-player.is-mini .awl-sticky-lyrics,
.awl-sticky-player.is-mini .awl-sticky-prev,
.awl-sticky-player.is-mini .awl-sticky-next,
.awl-sticky-player.is-mini .awl-sticky-volume,
.awl-sticky-player.is-mini .awl-sticky-queue,
.awl-sticky-player.is-mini .awl-sticky-menu {
	display: none;
}

.awl-sticky-player.is-mini .awl-sticky-extra {
	display: flex;
}

.awl-sticky-player.is-mini .awl-sticky-queue {
	display: none;
}

@media (max-width: 780px) {
	.awl-filters,
	.awl-song-layout {
		grid-template-columns: 1fr;
	}

	.awl-song-hero {
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 14px 16px;
		align-items: start;
		padding: 16px;
	}

	.awl-featured-series-badge {
		top: 10px;
		right: 10px;
		width: 58px;
		transform: none;
	}

	.awl-featured-series-badge img {
		width: 52px;
	}

	.awl-featured-series-number {
		top: 66%;
		font-size: 0.62rem;
	}

	.awl-cover {
		grid-column: 1;
		grid-row: 1 / span 4;
		inline-size: 104px;
		block-size: 104px;
		max-inline-size: 104px;
	}

	.awl-hero-cover-column {
		display: contents;
	}

	.awl-purchase-card {
		grid-column: 1 / -1;
		margin-top: 4px;
	}

	.awl-song-identity {
		display: contents;
	}

	.awl-song-title-row {
		grid-column: 2;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 0;
	}

	.awl-song h1 {
		font-size: clamp(1.55rem, 7.4vw, 2.45rem);
		line-height: 1.04;
	}

	.awl-verified-badge {
		width: 24px;
		height: 24px;
		font-size: 0.8rem;
	}

	.awl-hero-artist-line,
	.awl-hero-rating,
	.awl-hero-themes {
		grid-column: 2;
	}

	.awl-hero-artist-line {
		margin: 0;
		font-size: 1rem;
	}

	.awl-hero-rating {
		gap: 8px;
		margin-bottom: 0;
		font-size: 0.88rem;
	}

	.awl-stars {
		font-size: 1rem;
	}

	.awl-hero-themes {
		gap: 6px;
		margin: 0;
	}

	.awl-theme-chip {
		min-height: 26px;
		font-size: 0.78rem;
		padding: 6px 9px;
	}

	.awl-hero-divider,
	.awl-hero-share,
	.awl-hero-meta-grid {
		grid-column: 1 / -1;
	}

	.awl-hero-share {
		justify-content: flex-start;
		margin-top: 8px;
	}

	.awl-hero-share a,
	.awl-hero-share button {
		min-height: 32px;
		padding: 7px 10px;
		font-size: 0.78rem;
	}

	.awl-hero-meta-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
		border-top: 1px solid rgba(11, 18, 52, 0.1);
	}

	.awl-identity-fact,
	.awl-identity-fact:nth-child(3n + 1) {
		border-left: 1px solid rgba(11, 18, 52, 0.1);
		padding: 10px 8px;
	}

	.awl-identity-fact:nth-child(3n + 1) {
		border-left: 0;
	}

	.awl-identity-fact:nth-child(n + 4) {
		border-top: 1px solid rgba(11, 18, 52, 0.1);
	}

	.awl-identity-icon {
		width: 22px;
		height: 22px;
	}

	.awl-identity-fact {
		gap: 7px;
	}

	.awl-identity-fact small {
		font-size: 0.68rem;
	}

	.awl-identity-fact strong {
		font-size: 0.78rem;
	}

	.awl-tabs-shell {
		display: block;
		padding: 0 12px 12px;
		overflow-x: auto;
	}

	.awl-text-tools {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.awl-present-button {
		margin-right: 0;
	}

	.awl-tabs {
		min-width: max-content;
	}

	.awl-tabs button {
		min-height: 64px;
		padding: 0 18px;
	}

	.awl-tabs-shell .awl-language-select {
		justify-content: space-between;
		border-left: 0;
		border-top: 1px solid rgba(13, 106, 205, 0.12);
		padding: 12px 0 0;
	}

	.awl-stems-head,
	.awl-stem-mixer-top {
		display: grid;
	}

	.awl-stem-row {
		grid-template-columns: 1fr;
	}

	.awl-stem-row .awl-download-form {
		width: 100%;
	}

	.awl-stem-track {
		grid-template-columns: 1fr;
		min-width: 132px;
	}

	.awl-stem-track input[type="range"] {
		grid-column: auto;
	}

	.awl-song-sidebar {
		position: static;
	}

	.awl-video-dialog {
		width: calc(100vw - 20px);
		border-radius: 18px;
		padding: 14px;
	}

	.awl-video-dialog-head h2 {
		font-size: 1.2rem;
	}

	.awl-player {
		grid-template-columns: 1fr;
		border-radius: 18px;
	}

	.awl-top-account-link {
		top: auto;
		right: 12px;
		bottom: 72px;
	}

	.awl-top-account-link strong {
		display: none;
	}

	.awl-account-hero-profile {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.awl-account-avatar-card {
		max-width: 260px;
	}

	.awl-sticky-player {
		left: 10px;
		right: 10px;
		bottom: 10px;
		grid-template-columns: 48px minmax(0, 1fr) auto auto;
		gap: 10px;
		padding: 10px;
	}

	.awl-sticky-artwork {
		width: 48px;
		height: 48px;
	}

	.awl-sticky-controls {
		justify-content: flex-end;
	}

	.awl-sticky-prev,
	.awl-sticky-next,
	.awl-sticky-lyrics,
	.awl-sticky-status,
	.awl-sticky-time,
	.awl-sticky-volume {
		display: none;
	}

	.awl-sticky-extra {
		display: flex;
	}

	.awl-sticky-player.has-open-panel .awl-sticky-volume {
		display: flex;
		position: absolute;
		right: 62px;
		bottom: calc(100% + 22px);
		z-index: 2;
	}

	.awl-sticky-progress-wrap {
		grid-column: 1 / -1;
		width: 100%;
		height: 28px;
	}

	.awl-sticky-panel {
		right: 10px;
		left: 10px;
		width: auto;
		bottom: calc(100% + 10px);
	}

	.awl-sticky-lyrics-panel {
		left: 10px;
		right: 10px;
		bottom: 10px;
		width: auto;
		max-height: 80vh;
		border-radius: 22px;
		padding-top: 34px;
	}

	.awl-song-hero {
		padding: 18px;
	}

	.awl-song.has-banner .awl-song-hero {
		margin-top: -80px;
	}

	.awl-presentation {
		padding: 10px;
	}

	.awl-presentation-stage {
		width: calc(100vw - 20px);
	}

	.awl-presentation-frame {
		padding: 44px 48px;
	}

	.awl-presentation-brand,
	.awl-presentation-song-title,
	.awl-presentation-site {
		top: 12px;
		font-size: 0.66rem;
	}

	.awl-presentation-brand {
		left: 14px;
		max-width: 28%;
	}

	.awl-presentation-brand img {
		width: 20px;
		height: 20px;
	}

	.awl-presentation-song-title {
		max-width: 34%;
	}

	.awl-presentation-site {
		right: 58px;
		max-width: 24%;
	}

	.awl-presentation-content {
		font-size: clamp(1.45rem, 7vw, 3rem);
	}

	.awl-payment-modal {
		padding: 8px;
	}

	.awl-payment-dialog {
		grid-template-rows: auto auto auto;
		width: calc(100vw - 16px);
		max-height: calc(100vh - 16px);
	}

	.awl-payment-dialog header {
		padding: 16px 50px 12px 16px;
	}

	.awl-payment-dialog footer {
		flex-wrap: wrap;
		justify-content: stretch;
	}

	.awl-payment-done {
		flex: 1 1 160px;
	}

	.awl-account-auth-grid,
	.awl-account-stats,
	.awl-account-order,
	.awl-benefits-grid {
		grid-template-columns: 1fr;
	}

	.awl-account-order-actions {
		justify-content: flex-start;
	}

	.awl-floating-account {
		right: 14px;
		bottom: 164px;
	}
}

@media (max-width: 520px) {
	.awl-song-hero {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 10px 12px;
		padding: 12px;
	}

	.awl-featured-series-badge {
		top: 8px;
		right: 8px;
		width: 48px;
		transform: none;
	}

	.awl-featured-series-badge img {
		width: 44px;
	}

	.awl-cover {
		inline-size: 84px;
		block-size: 84px;
		max-inline-size: 84px;
		border-radius: 14px;
	}

	.awl-song h1 {
		font-size: clamp(1.28rem, 6.8vw, 1.95rem);
	}

	.awl-hero-artist-line {
		font-size: 0.9rem;
	}

	.awl-hero-rating {
		font-size: 0.78rem;
	}

	.awl-stars {
		font-size: 0.86rem;
	}

	.awl-theme-chip {
		min-height: 22px;
		font-size: 0.68rem;
		padding: 5px 7px;
	}

	.awl-hero-meta-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.awl-identity-fact {
		display: grid;
		justify-items: center;
		gap: 4px;
		padding: 8px 4px;
		text-align: center;
	}

	.awl-identity-icon {
		width: 18px;
		height: 18px;
	}

	.awl-identity-fact small {
		font-size: 0.58rem;
	}

	.awl-identity-fact strong {
		font-size: 0.68rem;
	}
}

.awl-newsletter-form {
	font-family: var(--awl-body-font, inherit);
	color: var(--awl-text, #0b1234);
}

.awl-newsletter-form-inner {
	display: grid;
	gap: 12px;
	padding: 22px;
	border: 1px solid color-mix(in srgb, var(--awl-primary, #0d6acd) 18%, #e5e7eb);
	border-radius: 18px;
	background: var(--awl-surface, #fff);
	box-shadow: 0 18px 50px rgba(11, 18, 52, 0.1);
}

.awl-newsletter-form h3 {
	margin: 0;
	font-family: var(--awl-heading-font, inherit);
	font-size: 1.3rem;
	line-height: 1.15;
}

.awl-newsletter-form p {
	margin: 0;
	color: var(--awl-muted, #667085);
}

.awl-newsletter-form input[type="text"],
.awl-newsletter-form input[type="email"] {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--awl-border, #e5e7eb);
	border-radius: 12px;
	padding: 0 14px;
	background: #fff;
	color: var(--awl-text, #0b1234);
}

.awl-newsletter-form button {
	min-height: 46px;
	border: 0;
	border-radius: 12px;
	background: var(--awl-accent, #f5b400);
	color: var(--awl-text, #0b1234);
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.awl-newsletter-form button:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(245, 180, 0, 0.24);
}

.awl-newsletter-consent {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 0.86rem;
	color: var(--awl-muted, #667085);
}

.awl-hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.awl-newsletter-popup {
	position: fixed;
	right: 24px;
	bottom: 118px;
	z-index: 99998;
	width: min(420px, calc(100vw - 32px));
}

.awl-newsletter-popup-close {
	position: absolute;
	top: -12px;
	right: -12px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: var(--awl-primary, #0d6acd);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.awl-newsletter-bar {
	position: fixed;
	left: 50%;
	bottom: 22px;
	z-index: 99997;
	width: min(760px, calc(100vw - 32px));
	transform: translateX(-50%);
}

.awl-newsletter-bar .awl-newsletter-form-inner {
	grid-template-columns: 1fr 220px auto;
	align-items: center;
	padding: 12px;
	border-radius: 16px;
	background: linear-gradient(90deg, var(--awl-secondary, #003a9f), var(--awl-primary, #0d6acd));
	color: #fff;
}

.awl-newsletter-bar .awl-newsletter-form h3,
.awl-newsletter-bar .awl-newsletter-form p,
.awl-newsletter-bar .awl-newsletter-consent {
	color: #fff;
}

.awl-newsletter-bar .awl-newsletter-form p,
.awl-newsletter-bar .awl-newsletter-consent {
	display: none;
}

@media (max-width: 720px) {
	.awl-newsletter-popup {
		right: 16px;
		bottom: 92px;
	}

	.awl-newsletter-bar .awl-newsletter-form-inner {
		grid-template-columns: 1fr;
	}
}
