/* --- PLAYER --- */
#gonzo-player {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: .75rem 1.5rem;
	z-index: 9999;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}
#gonzo-cover {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
}
#gonzo-title {
	font-weight: 600;
	text-align: left;
	flex: 1;
}
#gonzo-audio {
	flex: 2;
	filter: invert(1);
	max-width: 800px;
}
#gonzo-prev, #gonzo-live {
	background: none;
	border: 1px solid #fff;
	color: #fff;
	padding: .25rem .6rem;
	cursor: pointer;
	border-radius: 4px;
	font-size: 1rem;
	transition: all 0.2s ease;
}
#gonzo-prev:hover, #gonzo-live:hover {
	background: #fff;
	color: #000;
}

/* --- SHORTCODE PLAYLIST PUBBLICHE --- */
.gonzo-sc {
	max-width: 100%;
	margin: 0 auto;
	padding: 2rem 1rem;
	text-align: center;
}
.gonzo-playlists {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}
.gonzo-playlists .playlist {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 1.5rem;
	border: 1px solid #333;
	border-radius: 8px;
	background: #111;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.gonzo-playlists h3 {
	color: #fff;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
}
.gonzo-playlists ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
}
.gonzo-playlists li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: #fff;
	flex-wrap: wrap;
}
.gonzo-playlists li img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #333;
}
.gonzo-playlists li strong {
	font-size: 1rem;
}
.gonzo-replay {
	background: #fff;
	color: #000;
	border: none;
	padding: .3rem .9rem;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.2s ease;
}
.gonzo-replay:hover {
	background: #ff3d00;
	color: #fff;
	transform: scale(1.05);
}
