#page-music-controls {
	position: fixed;
	bottom: 1.2rem;
	right: 1.5rem;
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}
#page-music-toggle {
	font-size: 1.2rem;
	color: goldenrod;
	cursor: pointer;
	text-shadow: 0 0 6px rgba(218,165,32,.5);
	user-select: none;
	transition: text-shadow .2s ease, opacity .2s ease;
}
#page-music-toggle:hover {
	text-shadow: 0 0 12px rgba(218,165,32,.9);
}
#page-music-toggle.muted {
	opacity: 0.3;
}
