.fame-audio-player {
	--fame-orange: #d95f02;
	--fame-black: #111111;
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 52px;
	font-family: Arial, Helvetica, sans-serif;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.24));
}
.fame-audio-player audio { display: none; }
.fame-audio-label {
	position: absolute;
	right: 26px;
	top: 3px;
	height: 46px;
	width: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	padding: 0;
	border-radius: 24px 0 0 24px;
	background: var(--fame-black);
	color: #fff;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
	opacity: 0;
	transform: translateX(8px);
	transition: width 220ms ease, padding 220ms ease, opacity 160ms ease, transform 220ms ease;
	pointer-events: none;
}
.fame-audio-player:hover .fame-audio-label,
.fame-audio-player:focus-within .fame-audio-label {
	width: 170px;
	padding: 0 46px 0 18px;
	opacity: 1;
	transform: translateX(0);
}
.fame-audio-toggle {
	position: relative;
	z-index: 2;
	width: 52px;
	height: 52px;
	min-width: 52px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--fame-orange);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: transform 160ms ease, box-shadow 160ms ease;
}
.fame-audio-toggle:hover {
	transform: scale(1.04);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.24), 0 5px 14px rgba(0, 0, 0, 0.22);
}
.fame-audio-toggle:focus-visible { outline: 3px solid #ffffff; outline-offset: 3px; }
.fame-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 120ms ease, transform 120ms ease;
}
.fame-icon-play::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-left: 4px;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 14px solid #ffffff;
}
.fame-icon-pause { gap: 5px; opacity: 0; transform: scale(0.82); }
.fame-icon-pause span {
	display: block;
	width: 5px;
	height: 18px;
	border-radius: 2px;
	background: #ffffff;
}
.fame-audio-player.is-playing .fame-icon-play { opacity: 0; transform: scale(0.82); }
.fame-audio-player.is-playing .fame-icon-pause { opacity: 1; transform: scale(1); }
@media (max-width: 600px) {
	.fame-audio-player { right: 14px; bottom: 14px; }
	.fame-audio-player:hover .fame-audio-label {
		width: 164px;
		padding: 0 46px 0 16px;
		opacity: 1;
	}
}
@media (prefers-reduced-motion: reduce) {
	.fame-audio-label, .fame-audio-toggle, .fame-icon { transition: none; }
}
