/*!
 * Radio / Tv — Corporate mobile-app skin (frontend-app.css)
 * Version 1.15.7
 *
 * Clean, light, corporate styling for the front-end directory, cards,
 * navigation, related grids and bottom sheet. The existing audio and video
 * player structure/behaviour is intentionally preserved; only gentle container
 * polish is applied where needed.
 */

/* --------------------------------------------------------- Design tokens */
.rt-list,
.rt-sheet,
.rt-related,
.rt-nav,
.rt-notice {
	--rt-corp-bg: #f5f7fb;
	--rt-corp-surface: #ffffff;
	--rt-corp-surface-2: #f8fafc;
	--rt-corp-raised: #ffffff;
	--rt-corp-text: #172033;
	--rt-corp-muted: #667085;
	--rt-corp-soft: #98a2b3;
	--rt-corp-line: #e4e7ec;
	--rt-corp-line-strong: #d0d5dd;
	--rt-corp-primary: #2563eb;
	--rt-corp-primary-2: #1d4ed8;
	--rt-corp-primary-soft: #eff6ff;
	--rt-corp-success: #16a34a;
	--rt-corp-danger: #dc2626;
	--rt-corp-radius-sm: 12px;
	--rt-corp-radius: 18px;
	--rt-corp-radius-lg: 26px;
	--rt-corp-shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
	--rt-corp-shadow: 0 14px 34px rgba(15, 23, 42, .09);
	--rt-corp-shadow-lg: 0 24px 70px rgba(15, 23, 42, .18);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.rt-list *,
.rt-sheet *,
.rt-related *,
.rt-nav * { box-sizing: border-box; }

/* Keep Ionic ripple inert if framework loads, without relying on it. */
.rt-ripple,
ion-ripple-effect { color: rgba(37, 99, 235, .22); }

/* ======================================================= Player preservation */
/* Audio player already looked good: preserve the dark premium card and only
   tighten responsive spacing so it sits cleanly in corporate pages. */
.rt-player.rt-radio {
	isolation: isolate;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

/* Video player also stays visually intact; add a precise corporate outer edge. */
.rt-tv {
	border-radius: 24px;
	box-shadow: 0 18px 48px rgba(15, 23, 42, .18);
}
.rt-video-wrap { background: #000; }
.rt-live-badge {
	border: 1px solid rgba(255,255,255,.22);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* =================================================================== Lists */
.rt-list {
	max-width: 1180px;
	margin: 0 auto 32px;
	padding: 0;
	color: var(--rt-corp-text);
}

.rt-list__toolbar {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) auto;
	align-items: center;
	gap: 14px;
	margin: 0 0 22px;
	padding: 14px;
	border: 1px solid var(--rt-corp-line);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.96)),
		var(--rt-corp-surface);
	box-shadow: var(--rt-corp-shadow-sm);
}

.rt-list__search {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 16px;
	border: 1px solid var(--rt-corp-line);
	border-radius: 16px;
	background: var(--rt-corp-surface);
	color: var(--rt-corp-muted);
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.rt-list__search:focus-within {
	border-color: var(--rt-corp-primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
	background: #fff;
}
.rt-list__search svg { flex: 0 0 auto; color: var(--rt-corp-soft); }
.rt-list__search-input {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--rt-corp-text);
	font: 500 15px/1.4 inherit;
	padding: 13px 0;
	min-width: 0;
}
.rt-list__search-input::placeholder { color: #98a2b3; }

.rt-list__sort {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 650;
	color: var(--rt-corp-muted);
}
.rt-list__sort-select {
	min-height: 50px;
	padding: 0 42px 0 14px;
	border: 1px solid var(--rt-corp-line);
	border-radius: 16px;
	background-color: var(--rt-corp-surface);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23667085' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	color: var(--rt-corp-text);
	font: 650 14px/1 inherit;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.rt-list__sort-select:focus-visible {
	outline: 0;
	border-color: var(--rt-corp-primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.rt-grid {
	display: grid;
	gap: 20px;
	justify-items: stretch;
}
.rt-grid--1 { grid-template-columns: 1fr; }
.rt-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rt-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rt-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rt-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.rt-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	max-width: none;
	min-width: 0;
	overflow: hidden;
	text-align: left;
	text-decoration: none;
	color: var(--rt-corp-text);
	background: var(--rt-corp-surface);
	border: 1px solid var(--rt-corp-line);
	border-radius: 24px;
	box-shadow: var(--rt-corp-shadow-sm);
	cursor: pointer;
	font: inherit;
	appearance: none;
	-webkit-appearance: none;
	padding: 0;
	transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s ease, border-color .18s ease;
}
.rt-card:hover,
.rt-card:focus-visible,
.rt-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(37, 99, 235, .32);
	box-shadow: var(--rt-corp-shadow);
	outline: 0;
}
.rt-card:focus-visible { box-shadow: var(--rt-corp-shadow), 0 0 0 4px rgba(37, 99, 235, .16); }
.rt-card:active { transform: translateY(-1px) scale(.995); }

.rt-card__thumb {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex: 0 0 auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 15%, rgba(37,99,235,.28), transparent 34%),
		linear-gradient(135deg, #eef4ff 0%, #f8fafc 56%, #e0e7ff 100%);
}
.rt-card__thumb::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 48%;
	background: linear-gradient(to top, rgba(15,23,42,.66), rgba(15,23,42,0));
	pointer-events: none;
	opacity: .72;
}
.rt-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease, filter .35s ease;
}
.rt-card:hover .rt-card__thumb img,
.rt-card:focus-visible .rt-card__thumb img { transform: scale(1.045); filter: saturate(1.05); }
.rt-card__thumb-fallback {
	font-size: clamp(34px, 8vw, 52px);
	font-weight: 800;
	color: var(--rt-corp-primary);
	line-height: 1;
}
.rt-card__thumb-name {
	position: absolute;
	left: 14px;
	right: 70px;
	bottom: 14px;
	z-index: 2;
	color: #fff;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.25;
	letter-spacing: -.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-shadow: 0 1px 2px rgba(15,23,42,.35);
	opacity: 1;
	transform: none;
}
.rt-card__play {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	color: #fff;
	background: linear-gradient(135deg, var(--rt-corp-primary), var(--rt-corp-primary-2));
	box-shadow: 0 10px 22px rgba(37, 99, 235, .34);
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: transform .18s ease, box-shadow .18s ease;
}
.rt-card:hover .rt-card__play,
.rt-card:focus-visible .rt-card__play { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 28px rgba(37, 99, 235, .42); }
.rt-card__title {
	display: block;
	padding: 15px 16px 16px;
	font-size: 15.5px;
	font-weight: 720;
	line-height: 1.35;
	letter-spacing: -.01em;
	color: var(--rt-corp-text);
	transition: color .18s ease;
}
.rt-card:hover .rt-card__title,
.rt-card:focus-visible .rt-card__title,
.rt-card:focus-within .rt-card__title { color: var(--rt-corp-primary-2); text-shadow: none; }

/* Title-only cards when thumbnails are disabled. */
.rt-card--no-thumb {
	min-height: 72px;
	align-items: stretch;
	justify-content: center;
	border-radius: 18px;
	background:
		linear-gradient(90deg, rgba(37,99,235,.08), transparent 38%),
		var(--rt-corp-surface);
}
.rt-card--no-thumb::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	bottom: 14px;
	width: 4px;
	border-radius: 0 999px 999px 0;
	background: var(--rt-corp-primary);
}
.rt-card--no-thumb .rt-card__title { padding: 18px 20px 18px 24px; font-size: 16px; }

.rt-list__empty,
.rt-list__noresults {
	margin: 0;
	padding: 34px 20px;
	border: 1px dashed var(--rt-corp-line-strong);
	border-radius: 22px;
	background: var(--rt-corp-surface-2);
	color: var(--rt-corp-muted);
	text-align: center;
	font-size: 15px;
	font-weight: 550;
}

/* Pagination */
.rt-list__pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 26px auto 0;
}
.rt-list__pager:empty { display: none; margin: 0; }
.rt-list__pager .rt-page-btn {
	position: relative;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--rt-corp-line);
	border-radius: 14px;
	background: var(--rt-corp-surface);
	color: var(--rt-corp-muted);
	font: 700 14px/1 inherit;
	font-variant-numeric: tabular-nums;
	box-shadow: var(--rt-corp-shadow-sm);
	cursor: pointer;
	transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.rt-list__pager .rt-page-btn:hover:not(:disabled) { transform: translateY(-1px); border-color: rgba(37,99,235,.3); color: var(--rt-corp-primary-2); }
.rt-list__pager .rt-page-btn.is-active {
	border-color: transparent;
	background: linear-gradient(135deg, var(--rt-corp-primary), var(--rt-corp-primary-2));
	color: #fff;
	box-shadow: 0 10px 22px rgba(37, 99, 235, .24);
}
.rt-list__pager .rt-page-btn:disabled { opacity: .45; cursor: default; box-shadow: none; }

/* ============================================== Single-page nav + related */
.rt-nav {
	max-width: 620px;
	margin: 0 auto 20px;
	color: var(--rt-corp-text);
}
.rt-nav__label {
	display: block;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--rt-corp-muted);
}
.rt-nav__wrap { position: relative; }
.rt-nav__select {
	width: 100%;
	min-height: 54px;
	padding: 0 48px 0 16px;
	border: 1px solid var(--rt-corp-line);
	border-radius: 18px;
	background: var(--rt-corp-surface);
	box-shadow: var(--rt-corp-shadow-sm);
	color: var(--rt-corp-text);
	font: 750 15px/1.2 inherit;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.rt-nav__select:hover,
.rt-nav__select:focus-visible {
	outline: 0;
	border-color: var(--rt-corp-primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
.rt-nav__select option { background: #fff; color: #172033; font-weight: 600; }
.rt-nav__chev {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--rt-corp-primary);
	pointer-events: none;
}

.rt-related {
	max-width: 1180px;
	margin: 30px auto 0;
	color: var(--rt-corp-text);
}
.rt-related__title {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--rt-corp-muted);
}
.rt-related__grid { gap: 18px; }

/* ================================================== Bottom sheet / modal */
.rt-lb-homes { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.rt-sheet {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overscroll-behavior: contain;
	color: var(--rt-corp-text);
}
.rt-sheet[hidden] { display: none; }
.rt-sheet__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .52);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity .28s ease;
}
.rt-sheet.is-open .rt-sheet__backdrop { opacity: 1; }
.rt-sheet__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(100%, 640px);
	max-height: min(92vh, 820px);
	overflow: hidden;
	padding: 10px 18px 0;
	padding-bottom: env(safe-area-inset-bottom, 0px);
	border: 1px solid rgba(255,255,255,.68);
	border-bottom: 0;
	border-radius: 30px 30px 0 0;
	background:
		radial-gradient(90% 44% at 50% 0%, rgba(37,99,235,.08), transparent 62%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 -24px 70px rgba(15, 23, 42, .28);
	transform: translateY(100%);
	transition: transform .32s cubic-bezier(.2,.9,.25,1);
}
.rt-sheet.is-open .rt-sheet__panel { transform: translateY(0); }
.rt-sheet__grabber {
	flex: 0 0 auto;
	width: 46px;
	height: 5px;
	border-radius: 999px;
	margin: 0 auto 10px;
	background: #cbd5e1;
	cursor: pointer;
}
.rt-sheet__close {
	position: absolute;
	top: 14px;
	right: 16px;
	z-index: 20;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--rt-corp-line);
	border-radius: 16px;
	background: rgba(255,255,255,.9);
	color: var(--rt-corp-text);
	box-shadow: var(--rt-corp-shadow-sm);
	cursor: pointer;
	transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.rt-sheet__close:hover { transform: translateY(-1px); border-color: rgba(220,38,38,.25); background: #fef2f2; color: var(--rt-corp-danger); }
.rt-sheet__close:focus-visible { outline: 0; box-shadow: 0 0 0 4px rgba(37,99,235,.14); }
.rt-sheet__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 8px 0 calc(22px + env(safe-area-inset-bottom, 0px));
}
/* Action-sheet radio player: keep the exact same premium player skin used on
   normal pages. Only the width and top spacing are adjusted for the sheet. */
.rt-sheet__body .rt-player.rt-radio {
	margin: 8px auto 0;
	max-width: 520px;
	padding: 24px 22px 22px;
	border: 1px solid var(--rt-hairline, rgba(255,255,255,.07));
	border-radius: var(--rt-card-radius, 26px);
	background:
		radial-gradient(120% 80% at 50% -10%, rgba(244, 193, 75, .10) 0%, rgba(244, 193, 75, 0) 55%),
		linear-gradient(180deg, #1c1f24 0%, #131519 100%);
	box-shadow: var(--rt-elev-2, 0 2px 4px rgba(0,0,0,.5), 0 22px 60px rgba(0,0,0,.5)), inset 0 1px 0 rgba(255,255,255,.05);
	animation: none;
}
.rt-sheet__body .rt-player.rt-radio::before { display: block; }
.rt-sheet__body .rt-player.rt-radio .rt-np-head { padding-right: 54px; }
body.rt-lb-open { overflow: hidden; }

/* Notices */
.rt-notice {
	border: 1px solid #fecaca;
	background: #fef2f2;
	color: #991b1b;
	padding: 12px 14px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 560;
}

/* =============================================================== Responsive */
@media (max-width: 900px) {
	.rt-grid--4,
	.rt-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
	.rt-list { margin-bottom: 24px; }
	.rt-list__toolbar {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 12px;
		border-radius: 22px;
	}
	.rt-list__sort { justify-content: space-between; width: 100%; }
	.rt-list__sort-select { flex: 0 0 auto; min-width: 132px; }
	.rt-grid,
	.rt-grid--2,
	.rt-grid--3,
	.rt-grid--4,
	.rt-grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.rt-card { border-radius: 20px; }
	.rt-card__title { padding: 13px 13px 14px; font-size: 14.5px; }
	.rt-card__thumb-name { left: 12px; right: 58px; bottom: 12px; font-size: 14px; }
	.rt-card__play { right: 12px; bottom: 12px; width: 42px; height: 42px; border-radius: 14px; }
	.rt-sheet__panel { border-radius: 26px 26px 0 0; padding-left: 14px; padding-right: 14px; }
}

@media (max-width: 420px) {
	.rt-list__toolbar { margin-bottom: 16px; }
	.rt-list__search { min-height: 48px; border-radius: 15px; }
	.rt-list__sort > span { font-size: 13px; }
	.rt-grid,
	.rt-grid--2,
	.rt-grid--3,
	.rt-grid--4,
	.rt-grid--5 { grid-template-columns: 1fr; }
	.rt-card { border-radius: 18px; }
	.rt-card__thumb { max-height: 260px; }
	.rt-card__title { font-size: 15px; }
	.rt-list__pager .rt-page-btn { min-width: 42px; height: 42px; border-radius: 13px; }
	.rt-nav__select { min-height: 52px; border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	.rt-card,
	.rt-card *,
	.rt-list__pager .rt-page-btn,
	.rt-sheet__backdrop,
	.rt-sheet__panel,
	.rt-sheet__close,
	.rt-tv { transition: none !important; animation: none !important; }
}


/* ------------------------------------------------ Hover readability patch 1.11.1
   Keep Radio / TV card names visible on hover/focus. Some themes darken buttons
   and inherited text on hover; these rules force one consistent corporate card
   style for both radio and TV cards. */
.rt-card:hover,
.rt-card:focus-visible,
.rt-card:focus-within {
	background: var(--rt-corp-surface) !important;
	color: var(--rt-corp-text) !important;
}
.rt-card:hover .rt-card__thumb,
.rt-card:focus-visible .rt-card__thumb,
.rt-card:focus-within .rt-card__thumb {
	background:
		radial-gradient(circle at 20% 15%, rgba(37,99,235,.28), transparent 34%),
		linear-gradient(135deg, #eef4ff 0%, #f8fafc 56%, #e0e7ff 100%) !important;
}
.rt-card:hover .rt-card__thumb::after,
.rt-card:focus-visible .rt-card__thumb::after,
.rt-card:focus-within .rt-card__thumb::after {
	background: linear-gradient(to top, rgba(15,23,42,.72), rgba(15,23,42,0)) !important;
	opacity: .78 !important;
}
.rt-card:hover .rt-card__thumb-name,
.rt-card:focus-visible .rt-card__thumb-name,
.rt-card:focus-within .rt-card__thumb-name {
	color: #ffffff !important;
	text-shadow: 0 1px 2px rgba(15,23,42,.45), 0 0 18px rgba(15,23,42,.28) !important;
	opacity: 1 !important;
	transform: none !important;
}
.rt-card:hover .rt-card__title,
.rt-card:focus-visible .rt-card__title,
.rt-card:focus-within .rt-card__title,
.rt-card--no-thumb:hover .rt-card__title,
.rt-card--no-thumb:focus-visible .rt-card__title {
	color: var(--rt-corp-primary-2) !important;
	text-shadow: none !important;
}


/* ------------------------------------------------ Sheet + thumbnail cleanup 1.12.0
   Open only the radio player in the slide-up action sheet: no white wrapper,
   no padding frame, and no top-right close button. Users close by tapping the
   backdrop / outside area, dragging/tapping the grabber, or pressing Escape. */
.rt-sheet {
	align-items: flex-end !important;
	padding: 0 !important;
}
.rt-sheet__panel {
	width: min(100%, 560px) !important;
	max-height: 96vh !important;
	padding: 0 12px max(12px, env(safe-area-inset-bottom, 0px)) !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
}
.rt-sheet__grabber {
	width: 46px !important;
	height: 5px !important;
	margin: 0 auto 8px !important;
	background: rgba(255,255,255,.72) !important;
	box-shadow: 0 1px 8px rgba(15,23,42,.18) !important;
}
.rt-sheet__close { display: none !important; }
.rt-sheet__body {
	padding: 0 !important;
	overflow: visible !important;
}
.rt-sheet__body .rt-player.rt-radio {
	margin: 0 auto !important;
	max-width: 520px !important;
}
.rt-sheet__body .rt-player.rt-radio .rt-np-head { padding-right: 0 !important; }
@media (max-width: 560px) {
	.rt-sheet__panel { width: 100% !important; padding-left: 8px !important; padding-right: 8px !important; }
	.rt-sheet__body .rt-player.rt-radio { max-width: none !important; }
}

/* Thumbnail listings: keep names below the image only, never overlaid on top of
   radio/TV thumbnails. The image area stays clean; the play chip remains. */
.rt-card__thumb::after,
.rt-card__thumb-name {
	display: none !important;
}
.rt-card:hover .rt-card__thumb::after,
.rt-card:focus-visible .rt-card__thumb::after,
.rt-card:focus-within .rt-card__thumb::after,
.rt-card:hover .rt-card__thumb-name,
.rt-card:focus-visible .rt-card__thumb-name,
.rt-card:focus-within .rt-card__thumb-name {
	display: none !important;
}


/* ------------------------------------------------ SEO info panel 1.13.0
   Small bottom-center info icon for single radio/TV pages. The descriptive text
   stays in the page DOM for SEO and is revealed on click. */
.rt-player-info {
	width: 100%;
	margin: 14px auto 0;
	text-align: center;
}
.rt-info-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	min-width: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.16);
	background: rgba(255,255,255,.06);
	color: var(--rt-accent, #f4c14b);
	font: 800 17px/1 Georgia, 'Times New Roman', serif;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0,0,0,.22);
	transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.rt-info-toggle:hover,
.rt-info-toggle:focus-visible,
.rt-info-toggle[aria-expanded="true"] {
	transform: translateY(-1px);
	background: linear-gradient(180deg, var(--rt-accent-2, #ffd873), var(--rt-accent, #f4c14b));
	border-color: transparent;
	color: #201a08;
	outline: none;
}
.rt-info-panel {
	margin: 12px auto 0;
	padding: 16px 18px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 16px;
	background: rgba(255,255,255,.045);
	color: var(--rt-text-2, #a7abb1);
	font-size: 14.5px;
	line-height: 1.65;
	text-align: left;
}
.rt-info-panel p { margin: 0 0 12px; }
.rt-info-panel p:last-child { margin-bottom: 0; }
.rt-tv .rt-player-info {
	padding: 0 16px 16px;
	margin-top: 12px;
}
.rt-tv .rt-info-toggle {
	border-color: rgba(255,255,255,.22);
	background: rgba(0,0,0,.42);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.rt-tv .rt-info-panel {
	max-width: 760px;
	background: #111827;
	border-color: rgba(255,255,255,.12);
	color: rgba(255,255,255,.78);
}


/* ------------------------------------------------ Compact plus info toggle 1.13.1
   User requested a very small transparent + icon with no extra padding/margin. */
.rt-player-info {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0 !important;
	text-align: center !important;
}
.rt-info-toggle {
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	min-height: 18px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--rt-accent, #f4c14b) !important;
	opacity: .5 !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 18px !important;
	transform: none !important;
}
.rt-info-toggle:hover,
.rt-info-toggle:focus-visible,
.rt-info-toggle[aria-expanded="true"] {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: var(--rt-accent, #f4c14b) !important;
	opacity: .75 !important;
	transform: none !important;
	outline: none !important;
}
.rt-info-panel {
	margin: 4px auto 0 !important;
}
.rt-tv .rt-player-info {
	margin: 0 !important;
	padding: 0 0 6px !important;
	line-height: 0 !important;
}
.rt-tv .rt-info-toggle {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}


/* ------------------------------------------------ Related columns + mobile sort 1.14.0 */
@media (max-width: 680px) {
	.rt-list__sort {
		justify-content: center !important;
		width: 100% !important;
		text-align: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	.rt-list__sort-select {
		margin-left: auto !important;
		margin-right: auto !important;
	}
}


/* ------------------------------------------------ Radio player cleanup 1.14.1
   Station name replaces NOW PLAYING, duplicate station chip removed, footer note
   removed in markup, and only one play/pause icon is visible at a time. */
.rt-station-name {
	max-width: 290px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: .08em !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	color: var(--rt-text, #f5f6f8) !important;
}
.rt-station-name .rt-live-dot { flex: 0 0 auto; }
.rt-corner-name { display: none !important; }
.rt-ico-play[hidden],
.rt-ico-pause[hidden],
.rt-btn__spinner[hidden] {
	display: none !important;
}
.rt-btn--play .rt-ico-play,
.rt-btn--play .rt-ico-pause {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
}
.rt-foot-note { display: none !important; }
@media (max-width: 560px) {
	.rt-station-name { max-width: 210px; }
}


/* ------------------------------------------------ Header info toggle + clean thumbnails 1.14.2 */
/* Remove thumbnail play chips from Radio/TV listing cards. */
.rt-card__play {
	display: none !important;
}

/* Put the + icon inline with the Radio station name. */
.rt-station-name {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	max-width: min(320px, 100%) !important;
	color: var(--rt-accent-2, #ffd873) !important;
}
.rt-station-name__text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.rt-station-name .rt-info-toggle,
.rt-live-badge .rt-info-toggle {
	position: static !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 16px !important;
	font-size: 14px !important;
	opacity: .5 !important;
	vertical-align: middle !important;
}
.rt-station-name .rt-info-toggle:hover,
.rt-station-name .rt-info-toggle:focus-visible,
.rt-live-badge .rt-info-toggle:hover,
.rt-live-badge .rt-info-toggle:focus-visible {
	opacity: .8 !important;
}

/* Put TV channel name and + next to the LIVE badge, using the top-left space. */
.rt-live-badge--tv {
	max-width: calc(100% - 28px);
	gap: 7px !important;
}
.rt-tv-channel-name {
	min-width: 0;
	max-width: min(340px, 58vw);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 800;
	letter-spacing: .04em;
	color: rgba(255,255,255,.92);
	text-transform: uppercase;
}

/* Info panel remains below player/video when opened, but the toggle is no longer below. */
.rt-player > .rt-info-panel {
	margin-top: 8px !important;
}
@media (max-width: 560px) {
	.rt-station-name { max-width: 210px !important; }
	.rt-tv-channel-name { max-width: 44vw; }
}


/* ------------------------------------------------ Info panel above + larger play icons 1.14.3 */
/* The info text now opens at the top of the player, above the media controls. */
.rt-player > .rt-info-panel {
	margin: 0 0 14px !important;
}
.rt-tv > .rt-info-panel {
	margin: 0 16px 12px !important;
}
/* Keep the circular play button the same size, but enlarge the play/pause glyphs. */
.rt-btn--play .rt-ico-play,
.rt-btn--play .rt-ico-pause {
	width: 34px !important;
	height: 34px !important;
}
.rt-btn--play .rt-ico-play path,
.rt-btn--play .rt-ico-pause path {
	transform-box: fill-box;
	transform-origin: center;
}
@media (max-width: 560px) {
	.rt-btn--play .rt-ico-play,
	.rt-btn--play .rt-ico-pause {
		width: 32px !important;
		height: 32px !important;
	}
}


/* ------------------------------------------------ Related spacing + header livebar 1.14.4 */
/* Related thumbnails use the same thumbnail-to-title spacing as normal listings. */
.rt-related .rt-card__title {
	padding-top: 13px !important;
}
.rt-related .rt-card__thumb + .rt-card__title {
	margin-top: 0 !important;
}

/* Put station name, + info, live status and listener count on one top row. */
.rt-player.rt-radio .rt-np-head {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto auto !important;
	align-items: center !important;
	gap: 8px !important;
	margin-bottom: 18px !important;
}
.rt-player.rt-radio .rt-np-head__l {
	min-width: 0 !important;
	align-items: flex-start !important;
}
.rt-player.rt-radio .rt-listeners {
	justify-self: end !important;
}
.rt-livebar--head {
	justify-self: center !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 7px !important;
	margin: 0 !important;
	padding: 6px 10px !important;
	border-radius: 999px !important;
	font-size: 12px !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	background: rgba(255,255,255,.045) !important;
	border: 1px solid rgba(255,255,255,.09) !important;
	color: var(--rt-text-2, #a7abb1) !important;
}
.rt-livebar--head .rt-live-dot {
	width: 7px !important;
	height: 7px !important;
}

/* Pause glyph must be black while playing. */
.rt-radio.is-playing .rt-ico-pause,
.rt-radio.is-playing .rt-ico-pause path {
	color: #000000 !important;
	fill: #000000 !important;
}

@media (max-width: 560px) {
	.rt-player.rt-radio .rt-np-head {
		grid-template-columns: 1fr !important;
		justify-items: center !important;
		gap: 8px !important;
	}
	.rt-player.rt-radio .rt-np-head__l,
	.rt-player.rt-radio .rt-listeners,
	.rt-livebar--head {
		justify-self: center !important;
	}
}


/* ------------------------------------------------ Final related/live/pause polish 1.14.5 */
/* Related cards should use the same thumbnail-to-title spacing as the main listing cards. */
.rt-related .rt-card {
	gap: 0 !important;
}
.rt-related .rt-card__thumb {
	margin-bottom: 0 !important;
}
.rt-related .rt-card__title {
	margin-top: 0 !important;
	padding: 15px 16px 16px !important;
}
@media (max-width: 680px) {
	.rt-related .rt-card__title {
		padding: 13px 13px 14px !important;
	}
}
/* Keep the compact header live pill sized for the shorter “Live” label. */
.rt-livebar--head {
	padding-left: 9px !important;
	padding-right: 9px !important;
}
/* Make absolutely sure the pause glyph is black in all playing states. */
.rt-player.rt-radio.is-playing .rt-btn--play,
.rt-player.rt-radio.is-playing .rt-ico-pause,
.rt-player.rt-radio.is-playing .rt-ico-pause path {
	color: #000 !important;
	fill: #000 !important;
}


/* ------------------------------------------------ Radio header alignment 1.14.6 */
/* Keep radio name, + icon, Live pill, and listener count on the exact same visual line. */
.rt-player.rt-radio .rt-np-head {
	align-items: center !important;
	min-height: 30px !important;
}
.rt-player.rt-radio .rt-np-head__l {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	height: 28px !important;
	min-height: 28px !important;
}
.rt-player.rt-radio .rt-station-name {
	display: inline-flex !important;
	align-items: center !important;
	height: 28px !important;
	min-height: 28px !important;
	line-height: 28px !important;
}
.rt-player.rt-radio .rt-station-name .rt-live-dot,
.rt-player.rt-radio .rt-livebar--head .rt-live-dot {
	align-self: center !important;
}
.rt-player.rt-radio .rt-station-name__text {
	line-height: 28px !important;
}
.rt-player.rt-radio .rt-station-name .rt-info-toggle {
	align-self: center !important;
	transform: none !important;
}
.rt-player.rt-radio .rt-livebar--head,
.rt-player.rt-radio .rt-listeners {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	height: 28px !important;
	min-height: 28px !important;
	box-sizing: border-box !important;
	line-height: 1 !important;
}
.rt-player.rt-radio .rt-livebar--head .rt-livebar__text,
.rt-player.rt-radio .rt-listeners__count,
.rt-player.rt-radio .rt-listeners__label {
	line-height: 1 !important;
}


/* ------------------------------------------------ Radio header forced single row 1.14.7 */
/* Keep radio name, Live and listener count in one row on desktop, action sheet and mobile. */
.rt-player.rt-radio .rt-np-head {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 6px !important;
	width: 100% !important;
	min-height: 30px !important;
}
.rt-player.rt-radio .rt-np-head__l {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	max-width: none !important;
	display: flex !important;
	align-items: center !important;
}
.rt-player.rt-radio .rt-station-name {
	max-width: 100% !important;
	min-width: 0 !important;
}
.rt-player.rt-radio .rt-station-name__text {
	min-width: 0 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}
.rt-player.rt-radio .rt-livebar--head,
.rt-player.rt-radio .rt-listeners {
	flex: 0 0 auto !important;
	white-space: nowrap !important;
	margin: 0 !important;
}
.rt-player.rt-radio .rt-livebar--head {
	padding: 5px 8px !important;
	gap: 5px !important;
}
.rt-player.rt-radio .rt-listeners {
	padding: 5px 9px !important;
	gap: 6px !important;
}
@media (max-width: 560px) {
	.rt-player.rt-radio .rt-np-head {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-items: initial !important;
		gap: 5px !important;
	}
	.rt-player.rt-radio .rt-np-head__l,
	.rt-player.rt-radio .rt-livebar--head,
	.rt-player.rt-radio .rt-listeners {
		justify-self: auto !important;
	}
	.rt-player.rt-radio .rt-station-name {
		font-size: 10px !important;
		letter-spacing: .04em !important;
	}
	.rt-player.rt-radio .rt-livebar--head,
	.rt-player.rt-radio .rt-listeners {
		font-size: 10px !important;
	}
}


/* ------------------------------------------------ Related card br cleanup 1.14.8 */
/* Defensive fallback: hide any theme/autop-injected <br> after thumbnail in related cards. */
.rt-related .rt-card__thumb + br,
.rt-related .rt-card br {
	display: none !important;
}


/* ------------------------------------------------ Radio liquid glass revamp 1.15.0 */
.rt-player.rt-radio {
	position: relative !important;
	overflow: hidden !important;
	isolation: isolate !important;
	border-radius: 30px !important;
	border: 1px solid rgba(255,255,255,.18) !important;
	background:
		radial-gradient(circle at 16% 0%, rgba(255,216,115,.18), transparent 34%),
		radial-gradient(circle at 92% 14%, rgba(96,165,250,.14), transparent 38%),
		linear-gradient(145deg, rgba(42,45,48,.82), rgba(13,15,18,.92) 56%, rgba(31,34,38,.86)) !important;
	box-shadow: 0 26px 70px rgba(3,7,18,.34), 0 10px 28px rgba(3,7,18,.24), inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(255,255,255,.06) !important;
	backdrop-filter: blur(24px) saturate(1.18) !important;
	-webkit-backdrop-filter: blur(24px) saturate(1.18) !important;
}
.rt-player.rt-radio::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(120deg, rgba(255,255,255,.18), rgba(255,255,255,0) 27%, rgba(255,255,255,.08) 64%, rgba(255,255,255,0)), radial-gradient(circle at 50% 115%, rgba(255,208,86,.20), transparent 45%);
	mix-blend-mode: screen;
	opacity: .72;
}
.rt-player.rt-radio::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: -1;
	pointer-events: none;
	border-radius: 29px;
	border: 1px solid rgba(255,255,255,.07);
}
.rt-player.rt-radio > * { position: relative; z-index: 1; }

/* Top row: name/+ left, Live center, listener count right. */
.rt-player.rt-radio .rt-np-head {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 8px !important;
	width: 100% !important;
	min-height: 32px !important;
	margin: 0 0 18px !important;
}
.rt-player.rt-radio .rt-np-head__l {
	justify-self: start !important;
	min-width: 0 !important;
	max-width: 100% !important;
	display: flex !important;
	align-items: center !important;
}
.rt-player.rt-radio .rt-station-name {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: 30px !important;
	padding: 0 2px !important;
	color: #ffe28a !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	letter-spacing: .055em !important;
	line-height: 30px !important;
	text-shadow: 0 1px 10px rgba(255,211,94,.18) !important;
}
.rt-player.rt-radio .rt-station-name__text {
	min-width: 0 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}
.rt-player.rt-radio .rt-station-name .rt-info-toggle {
	flex: 0 0 auto !important;
	color: #ffd75d !important;
	opacity: .72 !important;
}
.rt-player.rt-radio .rt-livebar--head {
	justify-self: center !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	height: 30px !important;
	min-height: 30px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	gap: 7px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255,255,255,.16) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 8px 24px rgba(0,0,0,.14) !important;
	backdrop-filter: blur(18px) saturate(1.25) !important;
	-webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
	color: rgba(255,255,255,.86) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
}
.rt-player.rt-radio .rt-livebar--head .rt-live-dot {
	width: 8px !important;
	height: 8px !important;
	border-radius: 999px !important;
	background: #ff5f59 !important;
	box-shadow: 0 0 0 rgba(255,95,89,.46), 0 0 14px rgba(255,95,89,.74) !important;
	animation: rt-live-flash 1.15s ease-in-out infinite !important;
}
@keyframes rt-live-flash {
	0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,95,89,.42), 0 0 14px rgba(255,95,89,.74); }
	50% { opacity: .45; transform: scale(.76); box-shadow: 0 0 0 7px rgba(255,95,89,0), 0 0 5px rgba(255,95,89,.32); }
}
.rt-player.rt-radio .rt-listeners {
	justify-self: end !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	height: 30px !important;
	min-height: 30px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	gap: 7px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255,255,255,.16) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 8px 24px rgba(0,0,0,.14) !important;
	backdrop-filter: blur(18px) saturate(1.25) !important;
	-webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
	color: rgba(255,255,255,.72) !important;
	font-size: 12px !important;
	font-weight: 750 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
}
.rt-player.rt-radio .rt-listeners__count { color: #fff !important; font-weight: 900 !important; font-variant-numeric: tabular-nums !important; }

/* Liquid-glass inner polish. */
.rt-player.rt-radio .rt-info-panel,
.rt-player.rt-radio .rt-livebar:not(.rt-livebar--head) {
	border: 1px solid rgba(255,255,255,.13) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.12) !important;
	backdrop-filter: blur(14px) !important;
	-webkit-backdrop-filter: blur(14px) !important;
}
.rt-player.rt-radio .rt-art {
	border: 1px solid rgba(255,255,255,.15) !important;
	background: linear-gradient(145deg, rgba(102,110,190,.54), rgba(45,49,84,.48)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 16px 34px rgba(0,0,0,.16) !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
}

/* Black pause button while playing. */
.rt-player.rt-radio.is-playing .rt-btn--play {
	background: radial-gradient(circle at 32% 24%, #4b4b4b, #050505 62%, #000 100%) !important;
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.14) !important;
	box-shadow: 0 14px 36px rgba(0,0,0,.42), 0 0 0 10px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.16) !important;
}
.rt-player.rt-radio.is-playing .rt-ico-pause,
.rt-player.rt-radio.is-playing .rt-ico-pause path { color: #fff !important; fill: #fff !important; }

@media (max-width: 560px) {
	.rt-player.rt-radio { border-radius: 24px !important; }
	.rt-player.rt-radio .rt-np-head { grid-template-columns: minmax(0, 1fr) auto auto !important; gap: 5px !important; min-height: 28px !important; }
	.rt-player.rt-radio .rt-station-name { font-size: 10px !important; letter-spacing: .035em !important; height: 28px !important; line-height: 28px !important; }
	.rt-player.rt-radio .rt-livebar--head,
	.rt-player.rt-radio .rt-listeners { height: 28px !important; min-height: 28px !important; padding-left: 8px !important; padding-right: 8px !important; font-size: 10px !important; }
}

/* ------------------------------------------------ Playback liquid animation 1.15.2 */
/* Pinterest-style playback motion: soft liquid waves and glowing rings appear only while radio is playing. */
.rt-player.rt-radio .rt-play-wrap {
	position: relative !important;
	isolation: isolate !important;
}
.rt-player.rt-radio .rt-play-wrap::before,
.rt-player.rt-radio .rt-play-wrap::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	pointer-events: none;
	border-radius: 999px;
	transform: translate(-50%, -50%) scale(.72);
	opacity: 0;
	z-index: 0;
}
.rt-player.rt-radio .rt-play-wrap::before {
	width: 156px;
	height: 156px;
	background:
		conic-gradient(from 0deg, rgba(255,219,112,.05), rgba(255,219,112,.52), rgba(96,165,250,.20), rgba(255,255,255,.10), rgba(255,219,112,.05));
	filter: blur(8px) saturate(1.18);
}
.rt-player.rt-radio .rt-play-wrap::after {
	width: 116px;
	height: 116px;
	border: 1px solid rgba(255, 220, 122, .38);
	box-shadow:
		0 0 0 8px rgba(255, 211, 94, .07),
		0 0 38px rgba(255, 206, 83, .26),
		inset 0 0 24px rgba(255, 215, 93, .11);
}
.rt-player.rt-radio.is-playing .rt-play-wrap::before {
	opacity: .82;
	animation: rt-liquid-orbit 5.6s linear infinite, rt-liquid-breathe 1.9s ease-in-out infinite alternate !important;
}
.rt-player.rt-radio.is-playing .rt-play-wrap::after {
	opacity: 1;
	animation: rt-liquid-pulse 1.55s ease-out infinite !important;
}
.rt-player.rt-radio .rt-btn--play {
	z-index: 2 !important;
}
.rt-player.rt-radio.is-playing .rt-btn--play {
	animation: rt-button-float 2.15s ease-in-out infinite !important;
}
.rt-player.rt-radio.is-playing .rt-btn__glow {
	animation: rt-glass-ripple 1.75s ease-out infinite !important;
	opacity: 1 !important;
}
@keyframes rt-liquid-orbit {
	0% { transform: translate(-50%, -50%) rotate(0deg) scale(.82); border-radius: 42% 58% 54% 46% / 45% 44% 56% 55%; }
	50% { transform: translate(-50%, -50%) rotate(180deg) scale(.96); border-radius: 58% 42% 44% 56% / 54% 62% 38% 46%; }
	100% { transform: translate(-50%, -50%) rotate(360deg) scale(.82); border-radius: 42% 58% 54% 46% / 45% 44% 56% 55%; }
}
@keyframes rt-liquid-breathe {
	from { filter: blur(10px) saturate(1.05); }
	to { filter: blur(6px) saturate(1.35); }
}
@keyframes rt-liquid-pulse {
	0% { transform: translate(-50%, -50%) scale(.72); opacity: .78; }
	68% { transform: translate(-50%, -50%) scale(1.28); opacity: .08; }
	100% { transform: translate(-50%, -50%) scale(1.42); opacity: 0; }
}
@keyframes rt-button-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-2px) scale(1.018); }
}
@keyframes rt-glass-ripple {
	0% { box-shadow: 0 0 0 0 rgba(255, 216, 102, .34), 0 0 0 0 rgba(255,255,255,.08); }
	70% { box-shadow: 0 0 0 18px rgba(255, 216, 102, 0), 0 0 0 34px rgba(255,255,255,0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 216, 102, 0), 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes rt-liquid-bars {
	0% { transform: scaleY(.22) translateY(2px); border-radius: 14px; opacity: .74; }
	45% { transform: scaleY(.72) translateY(-1px); border-radius: 18px 18px 10px 10px; opacity: .94; }
	100% { transform: scaleY(1.08) translateY(-3px); border-radius: 999px 999px 12px 12px; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.rt-player.rt-radio.is-playing .rt-play-wrap::before,
	.rt-player.rt-radio.is-playing .rt-play-wrap::after,
	.rt-player.rt-radio.is-playing .rt-btn--play,
	.rt-player.rt-radio.is-playing .rt-btn__glow,
}


/* ------------------------------------------------ Semi-circle volume gauge 1.15.3 */
.rt-player.rt-radio .rt-controls-row--gauge {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	padding: 4px 0 0 !important;
	gap: 0 !important;
}
.rt-player.rt-radio .rt-volume-gauge {
	--rt-gauge-size: 216px;
	--rt-gauge-seg-w: 9px;
	--rt-gauge-seg-h: 30px;
	position: relative;
	width: var(--rt-gauge-size);
	height: 122px;
	margin: 0 auto;
	isolation: isolate;
}
.rt-player.rt-radio .rt-volume-arc {
	position: absolute;
	left: 50%;
	top: 100px;
	width: 0;
	height: 0;
	transform: translateX(-50%);
}
.rt-player.rt-radio .rt-volume-arc__seg {
	position: absolute;
	left: calc(var(--rt-gauge-seg-w) / -2);
	bottom: 0;
	width: var(--rt-gauge-seg-w);
	height: var(--rt-gauge-seg-h);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.10));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 18px rgba(0,0,0,.12);
	transform-origin: 50% 112px;
	transform: rotate(calc(-90deg + (180deg / 23) * var(--i))) translateY(-112px);
	transition: background .16s ease, box-shadow .16s ease, opacity .16s ease;
	cursor: pointer;
	opacity: .92;
}
.rt-player.rt-radio .rt-volume-arc__seg.is-active {
	background: linear-gradient(180deg, #c9ff2f, #89ff00 64%, #5bd800);
	box-shadow: 0 0 18px rgba(147,255,0,.34), inset 0 1px 0 rgba(255,255,255,.48);
	opacity: 1;
}
.rt-player.rt-radio .rt-volume-gauge__readout {
	position: absolute;
	left: 50%;
	top: 56px;
	transform: translateX(-50%);
	display: grid;
	place-items: center;
	gap: 1px;
	min-width: 86px;
	padding: 8px 10px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
	border: 1px solid rgba(255,255,255,.12);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 14px 32px rgba(0,0,0,.16);
}
.rt-player.rt-radio .rt-volume-gauge .rt-volume__pct {
	min-width: auto !important;
	font-size: 32px !important;
	line-height: .98 !important;
	font-weight: 900 !important;
	letter-spacing: -.06em !important;
	color: #f7f9ff !important;
	text-align: center !important;
	text-shadow: 0 6px 22px rgba(0,0,0,.28);
}
.rt-player.rt-radio .rt-volume-gauge__label {
	font-size: 11px;
	line-height: 1;
	font-weight: 650;
	color: rgba(255,255,255,.62);
	letter-spacing: .02em;
}
.rt-player.rt-radio .rt-volume-gauge__mute {
	position: absolute;
	left: 50%;
	top: 94px;
	transform: translateX(-50%);
	z-index: 3;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.14);
	background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
	color: rgba(255,255,255,.82);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 10px 26px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.14);
}
.rt-player.rt-radio .rt-volume-gauge__mute.is-muted {
	color: #ff6b64;
	border-color: rgba(255,107,100,.35);
}
.rt-player.rt-radio .rt-volume__range--arc {
	position: absolute !important;
	left: 50% !important;
	top: 10px !important;
	z-index: 4 !important;
	width: 196px !important;
	height: 96px !important;
	transform: translateX(-50%) !important;
	opacity: .001 !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	background: transparent !important;
}
.rt-player.rt-radio .rt-volume__range--arc::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 44px;
	height: 96px;
	border: 0;
	background: transparent;
	cursor: pointer;
}
.rt-player.rt-radio .rt-volume__range--arc::-moz-range-thumb {
	width: 44px;
	height: 96px;
	border: 0;
	background: transparent;
	cursor: pointer;
}
@media (max-width: 560px) {
	.rt-player.rt-radio .rt-volume-gauge {
		--rt-gauge-size: 190px;
		--rt-gauge-seg-w: 8px;
		--rt-gauge-seg-h: 25px;
		height: 110px;
	}
	.rt-player.rt-radio .rt-volume-arc { top: 91px; }
	.rt-player.rt-radio .rt-volume-arc__seg { transform-origin: 50% 98px; transform: rotate(calc(-90deg + (180deg / 23) * var(--i))) translateY(-98px); }
	.rt-player.rt-radio .rt-volume-gauge__readout { top: 50px; }
	.rt-player.rt-radio .rt-volume-gauge .rt-volume__pct { font-size: 28px !important; }
	.rt-player.rt-radio .rt-volume-gauge__mute { top: 85px; }
}

/* Volume gauge clearance polish 1.15.3 */
.rt-player.rt-radio .rt-volume-gauge {
	height: 168px !important;
}
.rt-player.rt-radio .rt-controls-row--gauge {
	padding-bottom: 8px !important;
}
@media (max-width: 560px) {
	.rt-player.rt-radio .rt-volume-gauge {
		height: 148px !important;
	}
}


/* ------------------------------------------------ Horizontal volume control 1.15.5 */
/* New horizontal, smooth-scrolling volume UI with dynamic numeric readout. */
.rt-player.rt-radio .rt-controls-row--horizontal {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	padding: 6px 0 2px !important;
	margin: 0 !important;
}
.rt-player.rt-radio .rt-volume-horizontal {
	--rt-vol: 80%;
	--rt-vol-number: 80;
	position: relative;
	display: grid;
	grid-template-columns: 38px minmax(180px, 1fr) 62px;
	align-items: center;
	gap: 12px;
	width: min(100%, 520px);
	min-height: 74px;
	padding: 14px 16px;
	border-radius: 28px;
	border: 1px solid rgba(255,255,255,.13);
	background:
		linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.032)),
		rgba(255,255,255,.03);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 18px 38px rgba(0,0,0,.16);
	backdrop-filter: blur(18px) saturate(1.2);
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	overflow: hidden;
}
.rt-player.rt-radio .rt-volume-horizontal::before {
	content: "";
	position: absolute;
	inset: -40px;
	background: radial-gradient(circle at var(--rt-vol, 80%) 50%, rgba(178,255,31,.22), transparent 28%);
	filter: blur(18px);
	opacity: .75;
	pointer-events: none;
	transition: background-position .28s ease;
}
.rt-player.rt-radio .rt-volume-horizontal > * {
	position: relative;
	z-index: 1;
}
.rt-player.rt-radio .rt-volume-horizontal__mute {
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
	color: rgba(255,255,255,.82);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 10px 22px rgba(0,0,0,.18);
	transition: transform .18s ease, color .18s ease, border-color .18s ease;
}
.rt-player.rt-radio .rt-volume-horizontal__mute:hover,
.rt-player.rt-radio .rt-volume-horizontal__mute:focus-visible {
	transform: translateY(-1px);
	color: #c8ff2b;
}
.rt-player.rt-radio .rt-volume-horizontal__mute.is-muted {
	color: #ff6b64;
	border-color: rgba(255,107,100,.38);
}
.rt-player.rt-radio .rt-volume-horizontal__meter {
	position: relative;
	height: 42px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(255,255,255,.05));
	border: 1px solid rgba(255,255,255,.10);
	box-shadow: inset 0 2px 10px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.10);
	overflow: hidden;
}
.rt-player.rt-radio .rt-volume-horizontal__fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--rt-vol, 80%);
	border-radius: inherit;
	background: linear-gradient(90deg, #7dff00 0%, #cfff2f 56%, #ffe86a 100%);
	box-shadow: 0 0 22px rgba(154,255,0,.36), inset 0 1px 0 rgba(255,255,255,.44);
	transition: width .28s cubic-bezier(.22, .9, .28, 1);
}
.rt-player.rt-radio .rt-volume-horizontal__thumb {
	position: absolute;
	left: var(--rt-vol, 80%);
	top: 50%;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle at 34% 25%, #fff, #eaffb8 38%, #9dff00 72%, #5bd800 100%);
	box-shadow: 0 0 0 7px rgba(157,255,0,.13), 0 8px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.8);
	transition: left .28s cubic-bezier(.22, .9, .28, 1), transform .18s ease;
}
.rt-player.rt-radio .rt-volume-horizontal:hover .rt-volume-horizontal__thumb,
.rt-player.rt-radio .rt-volume-horizontal:focus-within .rt-volume-horizontal__thumb {
	transform: translate(-50%, -50%) scale(1.06);
}
.rt-player.rt-radio .rt-volume-horizontal__steps {
	position: absolute;
	inset: 7px 12px;
	display: grid;
	grid-template-columns: repeat(28, 1fr);
	align-items: center;
	gap: 4px;
	pointer-events: none;
}
.rt-player.rt-radio .rt-volume-step {
	height: 18px;
	border-radius: 999px;
	background: rgba(255,255,255,.20);
	opacity: .74;
	transition: background .18s ease, opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}
.rt-player.rt-radio .rt-volume-step.is-active {
	background: rgba(17, 24, 39, .40);
	opacity: .82;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
	transform: scaleY(1.22);
}
.rt-player.rt-radio .rt-volume-horizontal__value {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	height: 42px;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,.13);
	background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 10px 24px rgba(0,0,0,.14);
}
.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct {
	min-width: auto !important;
	font-size: 22px !important;
	line-height: 1 !important;
	font-weight: 900 !important;
	letter-spacing: -.055em !important;
	text-align: center !important;
	color: #f8fbff !important;
	font-variant-numeric: tabular-nums !important;
	text-shadow: 0 5px 18px rgba(0,0,0,.24);
}
.rt-player.rt-radio .rt-volume__range--horizontal {
	position: absolute !important;
	left: 66px !important;
	right: 88px !important;
	top: 50% !important;
	z-index: 5 !important;
	width: auto !important;
	height: 54px !important;
	transform: translateY(-50%) !important;
	opacity: .001 !important;
	cursor: ew-resize !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	background: transparent !important;
}
.rt-player.rt-radio .rt-volume__range--horizontal::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 44px;
	height: 54px;
	border: 0;
	background: transparent;
	cursor: ew-resize;
}
.rt-player.rt-radio .rt-volume__range--horizontal::-moz-range-thumb {
	width: 44px;
	height: 54px;
	border: 0;
	background: transparent;
	cursor: ew-resize;
}
@media (max-width: 560px) {
	.rt-player.rt-radio .rt-volume-horizontal {
		grid-template-columns: 34px minmax(126px, 1fr) 52px;
		gap: 8px;
		min-height: 64px;
		padding: 12px 12px;
		border-radius: 22px;
	}
	.rt-player.rt-radio .rt-volume-horizontal__mute {
		width: 34px;
		height: 34px;
		border-radius: 14px;
	}
	.rt-player.rt-radio .rt-volume-horizontal__meter {
		height: 36px;
	}
	.rt-player.rt-radio .rt-volume-horizontal__thumb {
		width: 28px;
		height: 28px;
	}
	.rt-player.rt-radio .rt-volume-horizontal__steps {
		inset: 7px 9px;
		gap: 3px;
	}
	.rt-player.rt-radio .rt-volume-step {
		height: 14px;
	}
	.rt-player.rt-radio .rt-volume-horizontal__value {
		min-width: 48px;
		height: 36px;
		border-radius: 15px;
	}
	.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct {
		font-size: 18px !important;
	}
	.rt-player.rt-radio .rt-volume__range--horizontal {
		left: 54px !important;
		right: 70px !important;
	}
}


/* ------------------------------------------------ Volume control reliability 1.15.6 */
/* Exact 0-100 horizontal control: meter handles drag/click; native input remains keyboard-accessible. */
.rt-player.rt-radio .rt-volume-horizontal__meter {
	cursor: ew-resize !important;
	touch-action: none !important;
	user-select: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal__steps {
	pointer-events: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal__fill,
.rt-player.rt-radio .rt-volume-horizontal__thumb {
	will-change: width, left;
}
.rt-player.rt-radio .rt-volume-horizontal.is-zero .rt-volume-horizontal__fill {
	box-shadow: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal.is-zero .rt-volume-horizontal__thumb {
	background: radial-gradient(circle at 34% 25%, #fff, #d1d5db 42%, #737373 100%) !important;
	box-shadow: 0 0 0 7px rgba(255,255,255,.06), 0 8px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.7) !important;
}
.rt-player.rt-radio .rt-volume__range--horizontal:focus-visible + *,
.rt-player.rt-radio .rt-volume-horizontal:focus-within .rt-volume-horizontal__meter {
	outline: 2px solid rgba(190,255,44,.72) !important;
	outline-offset: 3px !important;
}


/* ------------------------------------------------ Reference-style volume slider 1.15.7 */
/* Slim horizontal track, rainbow fill, grey notched remainder, round knob, and dynamic bubble above the knob. */
.rt-player.rt-radio .rt-controls-row--horizontal {
	padding: 34px 0 8px !important;
}
.rt-player.rt-radio .rt-volume-horizontal {
	width: min(100%, 560px) !important;
	min-height: 76px !important;
	padding: 18px 18px 12px !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
}
.rt-player.rt-radio .rt-volume-horizontal::before {
	display: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal__mute {
	display: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal__meter {
	position: relative !important;
	height: 18px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255,255,255,.20) !important;
	background:
		repeating-linear-gradient(135deg, rgba(0,0,0,.18) 0 3px, rgba(255,255,255,.12) 3px 6px),
		linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.10)) !important;
	box-shadow:
		inset 0 2px 6px rgba(0,0,0,.30),
		inset 0 -1px 0 rgba(255,255,255,.18),
		0 10px 24px rgba(0,0,0,.16) !important;
	overflow: visible !important;
}
.rt-player.rt-radio .rt-volume-horizontal__fill {
	position: absolute !important;
	inset: 2px auto 2px 2px !important;
	width: calc(var(--rt-vol, 80%) - 2px) !important;
	border-radius: 999px !important;
	background: linear-gradient(90deg, #57c7ff 0%, #c879ff 26%, #ff82b7 48%, #ffc559 74%, #d7ff4a 100%) !important;
	box-shadow: 0 0 16px rgba(255,132,181,.22), inset 0 1px 0 rgba(255,255,255,.46) !important;
	transition: width .32s cubic-bezier(.2, .88, .25, 1) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__steps {
	position: absolute !important;
	inset: 3px 10px 3px 10px !important;
	display: grid !important;
	grid-template-columns: repeat(28, 1fr) !important;
	gap: 3px !important;
	pointer-events: none !important;
	mix-blend-mode: multiply;
	opacity: .46;
}
.rt-player.rt-radio .rt-volume-step {
	height: 100% !important;
	border-radius: 999px !important;
	background: rgba(20, 20, 22, .24) !important;
	box-shadow: none !important;
	transform: none !important;
	opacity: 1 !important;
}
.rt-player.rt-radio .rt-volume-step.is-active {
	background: rgba(255,255,255,.13) !important;
	transform: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal__thumb {
	position: absolute !important;
	left: var(--rt-vol, 80%) !important;
	top: 50% !important;
	z-index: 4 !important;
	width: 52px !important;
	height: 52px !important;
	border-radius: 50% !important;
	transform: translate(-50%, -50%) !important;
	background: radial-gradient(circle at 35% 25%, #ffffff, #e8e8e8 56%, #c9c9c9 100%) !important;
	border: 1px solid rgba(255,255,255,.74) !important;
	box-shadow:
		0 14px 30px rgba(0,0,0,.26),
		inset 0 1px 0 rgba(255,255,255,.95),
		inset 0 -4px 10px rgba(0,0,0,.12) !important;
	transition: left .32s cubic-bezier(.2, .88, .25, 1), transform .16s ease !important;
}
.rt-player.rt-radio .rt-volume-horizontal:hover .rt-volume-horizontal__thumb,
.rt-player.rt-radio .rt-volume-horizontal:focus-within .rt-volume-horizontal__thumb {
	transform: translate(-50%, -50%) scale(1.04) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__thumb span,
.rt-player.rt-radio .rt-volume-horizontal__thumb::before,
.rt-player.rt-radio .rt-volume-horizontal__thumb::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 3px;
	height: 19px;
	border-radius: 999px;
	background: linear-gradient(180deg, #b9b9b9, #8f8f8f);
	transform: translateY(-50%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.rt-player.rt-radio .rt-volume-horizontal__thumb span { left: 20px; }
.rt-player.rt-radio .rt-volume-horizontal__thumb::before { left: 25px; }
.rt-player.rt-radio .rt-volume-horizontal__thumb::after { left: 30px; }
.rt-player.rt-radio .rt-volume-horizontal__value {
	position: absolute !important;
	left: var(--rt-vol, 80%) !important;
	top: -60px !important;
	z-index: 5 !important;
	min-width: 62px !important;
	height: 38px !important;
	padding: 0 10px !important;
	border-radius: 8px !important;
	border: 1px solid rgba(255,255,255,.84) !important;
	background: rgba(255,255,255,.94) !important;
	box-shadow: 0 12px 26px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.95) !important;
	transform: translateX(-50%) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: left .32s cubic-bezier(.2, .88, .25, 1) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__value::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -8px;
	width: 14px;
	height: 14px;
	background: rgba(255,255,255,.94);
	border-right: 1px solid rgba(255,255,255,.84);
	border-bottom: 1px solid rgba(255,255,255,.84);
	transform: translateX(-50%) rotate(45deg);
}
.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct {
	position: relative;
	z-index: 1;
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 900 !important;
	letter-spacing: -.03em !important;
	color: #e98ab9 !important;
	text-shadow: none !important;
}
.rt-player.rt-radio .rt-volume__range--horizontal {
	left: 18px !important;
	right: 18px !important;
	top: 50% !important;
	height: 58px !important;
	transform: translateY(-50%) !important;
	cursor: ew-resize !important;
}
@media (max-width: 560px) {
	.rt-player.rt-radio .rt-controls-row--horizontal {
		padding-top: 30px !important;
	}
	.rt-player.rt-radio .rt-volume-horizontal {
		padding-left: 10px !important;
		padding-right: 10px !important;
		min-height: 68px !important;
	}
	.rt-player.rt-radio .rt-volume-horizontal__thumb {
		width: 44px !important;
		height: 44px !important;
	}
	.rt-player.rt-radio .rt-volume-horizontal__value {
		top: -54px !important;
		min-width: 56px !important;
		height: 34px !important;
	}
	.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct {
		font-size: 14px !important;
	}
}





/* ------------------------------------------------ Dark grey matte radio skin 1.17.2 */
/* Matte graphite finish inspired by the supplied dark grey fabric/charcoal image.
   This overrides the earlier glossy/liquid gradients for the radio playback UI. */
.rt-player.rt-radio {
	--rt-matte-0: #070808;
	--rt-matte-1: #111313;
	--rt-matte-2: #1a1c1c;
	--rt-matte-3: #242626;
	--rt-matte-line: rgba(255,255,255,.085);
	--rt-matte-line-strong: rgba(255,255,255,.14);
	--rt-matte-text: #f2f3f0;
	--rt-matte-muted: rgba(242,243,240,.68);
	--rt-matte-soft: rgba(242,243,240,.46);
	position: relative !important;
	border-radius: 30px !important;
	border: 1px solid var(--rt-matte-line-strong) !important;
	background:
		repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, rgba(0,0,0,.018) 1px 3px),
		repeating-linear-gradient(90deg, rgba(255,255,255,.014) 0 1px, rgba(0,0,0,.018) 1px 4px),
		linear-gradient(180deg, #2a2c2c 0%, #1a1c1c 43%, #0b0c0c 100%) !important;
	box-shadow:
		0 28px 70px rgba(0,0,0,.44),
		0 10px 28px rgba(0,0,0,.32),
		inset 0 1px 0 rgba(255,255,255,.08),
		inset 0 -18px 38px rgba(0,0,0,.20) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	color: var(--rt-matte-text) !important;
}
.rt-player.rt-radio::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: -1 !important;
	pointer-events: none !important;
	background:
		radial-gradient(circle at 50% -10%, rgba(255,255,255,.085), transparent 34%),
		linear-gradient(180deg, rgba(255,255,255,.035), transparent 40%, rgba(0,0,0,.22)) !important;
	mix-blend-mode: normal !important;
	opacity: 1 !important;
}
.rt-player.rt-radio::after {
	content: "" !important;
	position: absolute !important;
	inset: 1px !important;
	z-index: -1 !important;
	pointer-events: none !important;
	border-radius: 29px !important;
	border: 1px solid rgba(255,255,255,.045) !important;
	background:
		repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 1px, transparent 1px 5px),
		repeating-linear-gradient(-45deg, rgba(0,0,0,.045) 0 1px, transparent 1px 6px) !important;
	opacity: .72 !important;
}
.rt-player.rt-radio .rt-station-name {
	color: #d9d9d3 !important;
	text-shadow: none !important;
}
.rt-player.rt-radio .rt-livebar--head,
.rt-player.rt-radio .rt-listeners,
.rt-player.rt-radio .rt-info-panel,
.rt-player.rt-radio .rt-livebar:not(.rt-livebar--head) {
	border-color: var(--rt-matte-line) !important;
	background:
		repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0 1px, transparent 1px 4px),
		linear-gradient(180deg, rgba(255,255,255,.055), rgba(0,0,0,.15)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 8px 18px rgba(0,0,0,.18) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	color: var(--rt-matte-muted) !important;
}
.rt-player.rt-radio .rt-art {
	border-color: var(--rt-matte-line-strong) !important;
	background:
		repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, rgba(0,0,0,.02) 1px 3px),
		linear-gradient(145deg, #323434, #171919 70%, #0d0e0e) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 28px rgba(0,0,0,.30) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
.rt-player.rt-radio .rt-np-song__link,
.rt-player.rt-radio .rt-np-song__link:hover {
	color: var(--rt-matte-text) !important;
}
.rt-player.rt-radio .rt-np-track,
.rt-player.rt-radio .rt-np-fallback,
.rt-player.rt-radio .rt-status,
.rt-player.rt-radio .rt-foot-note {
	color: var(--rt-matte-soft) !important;
}
.rt-player.rt-radio .rt-volume-horizontal {
	border-color: rgba(255,255,255,.08) !important;
	background:
		repeating-linear-gradient(0deg, rgba(255,255,255,.014) 0 1px, rgba(0,0,0,.018) 1px 3px),
		linear-gradient(180deg, #242626, #111313) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 28px rgba(0,0,0,.22) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal::before {
	background: radial-gradient(circle at var(--rt-vol, 80%) 50%, rgba(255,255,255,.08), transparent 28%) !important;
	opacity: .62 !important;
}
.rt-player.rt-radio .rt-volume-horizontal__meter {
	background: linear-gradient(90deg, #080909, #171919) !important;
	border-color: rgba(255,255,255,.08) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__fill {
	background: linear-gradient(90deg, #a6a69e, #d6d6cc, #8f918b) !important;
	box-shadow: 0 0 14px rgba(255,255,255,.10) !important;
}
.rt-player.rt-radio .rt-volume-step {
	background: rgba(255,255,255,.16) !important;
}
.rt-player.rt-radio .rt-volume-step.is-active {
	background: rgba(245,245,235,.72) !important;
	box-shadow: 0 0 8px rgba(255,255,255,.12) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__thumb {
	background: linear-gradient(180deg, #d4d4cc, #8a8d86) !important;
	box-shadow: 0 8px 16px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.42) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__value {
	background: linear-gradient(180deg, #2b2d2d, #101111) !important;
	border-color: rgba(255,255,255,.09) !important;
	color: #e8e8df !important;
	box-shadow: 0 8px 18px rgba(0,0,0,.28) !important;
}
.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct {
	color: #e8e8df !important;
}
.rt-player.rt-radio .rt-mute,
.rt-player.rt-radio .rt-volume-horizontal__mute,
.rt-player.rt-radio .rt-sleep__opt {
	border-color: rgba(255,255,255,.08) !important;
	background: linear-gradient(180deg, #282a2a, #121414) !important;
	color: var(--rt-matte-muted) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 8px 18px rgba(0,0,0,.20) !important;
}
.rt-player.rt-radio .rt-sleep__opt.is-active {
	background: linear-gradient(180deg, #c9c9bf, #8a8d86) !important;
	color: #111313 !important;
	border-color: rgba(255,255,255,.10) !important;
}
.rt-player.rt-radio .rt-btn--play {
	background: radial-gradient(circle at 32% 24%, #d7d7cf, #a5a79f 58%, #74776f 100%) !important;
	color: #111313 !important;
	box-shadow: 0 18px 34px rgba(0,0,0,.36), 0 0 0 10px rgba(255,255,255,.035), inset 0 1px 0 rgba(255,255,255,.44) !important;
}
.rt-player.rt-radio.is-playing .rt-btn--play {
	background: radial-gradient(circle at 32% 24%, #4a4c4c, #171919 62%, #070808 100%) !important;
	color: #f4f4ec !important;
	box-shadow: 0 18px 34px rgba(0,0,0,.46), 0 0 0 10px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.10) !important;
}
.rt-player.rt-radio .rt-btn__glow {
	box-shadow: 0 0 0 0 rgba(255,255,255,.10) !important;
}
.rt-player.rt-radio .rt-divider {
	border-color: rgba(255,255,255,.075) !important;
}
@media (max-width: 560px) {
	.rt-player.rt-radio { border-radius: 24px !important; }
	.rt-player.rt-radio::after { border-radius: 23px !important; }
}


/* ------------------------------------------------ Purple-blue accent skin 1.17.3 */
/* Accent concept: neon purple to electric blue, as in the supplied UI references,
   layered over the dark matte graphite player. */
.rt-player.rt-radio {
	--rt-accent-purple: #a855f7;
	--rt-accent-pink: #d946ef;
	--rt-accent-blue: #2563eb;
	--rt-accent-cyan: #38bdf8;
	--rt-accent-gradient: linear-gradient(90deg, #d946ef 0%, #a855f7 42%, #2563eb 100%);
}
.rt-player.rt-radio .rt-station-name {
	color: #e9d5ff !important;
	text-shadow: 0 0 18px rgba(168,85,247,.24) !important;
}
.rt-player.rt-radio .rt-livebar--head .rt-live-dot,
.rt-player.rt-radio .rt-station-name .rt-live-dot {
	background: linear-gradient(135deg, #d946ef, #2563eb) !important;
	box-shadow: 0 0 0 0 rgba(168,85,247,.42), 0 0 16px rgba(168,85,247,.74) !important;
}
.rt-player.rt-radio .rt-livebar--head,
.rt-player.rt-radio .rt-listeners {
	border-color: rgba(168,85,247,.22) !important;
	background:
		repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0 1px, transparent 1px 4px),
		linear-gradient(180deg, rgba(168,85,247,.11), rgba(37,99,235,.055) 55%, rgba(0,0,0,.16)) !important;
}
.rt-player.rt-radio .rt-art__icon,
.rt-player.rt-radio .rt-volume__icon svg,
.rt-player.rt-radio .rt-sleep__label svg {
	color: #c084fc !important;
	filter: drop-shadow(0 0 10px rgba(168,85,247,.28));
}
.rt-player.rt-radio .rt-btn--play {
	background: radial-gradient(circle at 32% 24%, #f0abfc, #a855f7 45%, #2563eb 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 18px 34px rgba(0,0,0,.38), 0 0 0 10px rgba(168,85,247,.09), 0 0 30px rgba(37,99,235,.20), inset 0 1px 0 rgba(255,255,255,.38) !important;
}
.rt-player.rt-radio.is-playing .rt-btn--play {
	background: radial-gradient(circle at 32% 24%, #6b21a8, #111827 62%, #06070a 100%) !important;
	border-color: rgba(168,85,247,.35) !important;
	box-shadow: 0 18px 34px rgba(0,0,0,.50), 0 0 0 10px rgba(88,28,135,.18), 0 0 26px rgba(168,85,247,.18), inset 0 1px 0 rgba(255,255,255,.11) !important;
}
.rt-player.rt-radio.is-playing .rt-btn__glow {
	box-shadow: 0 0 0 0 rgba(168,85,247,.35) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__fill {
	background: var(--rt-accent-gradient) !important;
	box-shadow: 0 0 18px rgba(168,85,247,.28), 0 0 24px rgba(37,99,235,.16) !important;
}
.rt-player.rt-radio .rt-volume-step.is-active {
	background: linear-gradient(180deg, #e9d5ff, #a855f7 55%, #2563eb) !important;
	box-shadow: 0 0 10px rgba(168,85,247,.34) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__thumb {
	background: radial-gradient(circle at 35% 24%, #f5d0fe, #a855f7 58%, #2563eb 100%) !important;
	box-shadow: 0 8px 18px rgba(0,0,0,.40), 0 0 18px rgba(168,85,247,.32), inset 0 1px 0 rgba(255,255,255,.42) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__value,
.rt-player.rt-radio .rt-sleep__opt.is-active {
	background: var(--rt-accent-gradient) !important;
	border-color: rgba(216,180,254,.24) !important;
	color: #ffffff !important;
	box-shadow: 0 10px 22px rgba(88,28,135,.28), 0 0 18px rgba(37,99,235,.16) !important;
}
.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct,
.rt-player.rt-radio .rt-sleep__opt.is-active {
	color: #ffffff !important;
}
.rt-player.rt-radio .rt-mute:hover,
.rt-player.rt-radio .rt-volume-horizontal__mute:hover,
.rt-player.rt-radio .rt-volume-horizontal__mute:focus-visible,
.rt-player.rt-radio .rt-sleep__opt:hover {
	border-color: rgba(168,85,247,.28) !important;
	color: #e9d5ff !important;
}


/* ------------------------------------------------ Corporate dark radio revamp 1.18.0 */
/* Full radio-player visual refresh: sleek professional dark corporate skin while
   preserving existing markup and features (Now Playing, listeners, info toggle,
   play/pause, status, volume/mute, sleep timer, autoplay/HLS behavior). */
.rt-player.rt-radio {
	--rt-corp-bg-0: #070a0f;
	--rt-corp-bg-1: #0d1118;
	--rt-corp-bg-2: #131922;
	--rt-corp-panel: rgba(255,255,255,.055);
	--rt-corp-panel-2: rgba(255,255,255,.035);
	--rt-corp-border: rgba(255,255,255,.10);
	--rt-corp-border-strong: rgba(255,255,255,.16);
	--rt-corp-text: #f7f8fb;
	--rt-corp-muted: rgba(247,248,251,.68);
	--rt-corp-soft: rgba(247,248,251,.45);
	--rt-corp-purple: #8b5cf6;
	--rt-corp-violet: #a855f7;
	--rt-corp-blue: #2563eb;
	--rt-corp-cyan: #38bdf8;
	--rt-corp-accent: linear-gradient(135deg, #a855f7 0%, #7c3aed 42%, #2563eb 100%);
	position: relative !important;
	isolation: isolate !important;
	overflow: hidden !important;
	max-width: 560px !important;
	padding: 22px !important;
	border-radius: 28px !important;
	border: 1px solid var(--rt-corp-border) !important;
	background:
		radial-gradient(circle at 18% -8%, rgba(168,85,247,.20), transparent 34%),
		radial-gradient(circle at 95% 12%, rgba(37,99,235,.20), transparent 36%),
		radial-gradient(circle at 50% 115%, rgba(56,189,248,.08), transparent 42%),
		linear-gradient(180deg, #171c25 0%, #0d1118 58%, #070a0f 100%) !important;
	box-shadow:
		0 34px 90px rgba(0,0,0,.48),
		0 14px 34px rgba(0,0,0,.34),
		inset 0 1px 0 rgba(255,255,255,.09),
		inset 0 -1px 0 rgba(255,255,255,.04) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	color: var(--rt-corp-text) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}
.rt-player.rt-radio::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: -1 !important;
	pointer-events: none !important;
	background:
		repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 4px),
		repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0 1px, transparent 1px 5px),
		linear-gradient(120deg, rgba(255,255,255,.07), transparent 32%, rgba(255,255,255,.025) 72%, transparent) !important;
	mix-blend-mode: normal !important;
	opacity: .92 !important;
}
.rt-player.rt-radio::after {
	content: "" !important;
	position: absolute !important;
	inset: 1px !important;
	z-index: -1 !important;
	pointer-events: none !important;
	border-radius: 27px !important;
	border: 1px solid rgba(255,255,255,.055) !important;
	background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 42%) !important;
	opacity: 1 !important;
}
.rt-player.rt-radio > * { position: relative !important; z-index: 1 !important; }

/* Header row */
.rt-player.rt-radio .rt-np-head {
	display: grid !important;
	grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) !important;
	align-items: center !important;
	gap: 10px !important;
	min-height: 34px !important;
	margin: 0 0 18px !important;
}
.rt-player.rt-radio .rt-np-head__l { justify-self: start !important; min-width: 0 !important; }
.rt-player.rt-radio .rt-station-name {
	display: inline-flex !important;
	align-items: center !important;
	gap: 7px !important;
	max-width: 100% !important;
	height: 30px !important;
	padding: 0 !important;
	color: #e9d5ff !important;
	font-size: 11px !important;
	font-weight: 850 !important;
	letter-spacing: .075em !important;
	text-transform: uppercase !important;
	line-height: 30px !important;
	text-shadow: none !important;
}
.rt-player.rt-radio .rt-station-name__text { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.rt-player.rt-radio .rt-station-name .rt-info-toggle { color: #c4b5fd !important; opacity: .78 !important; }
.rt-player.rt-radio .rt-livebar--head,
.rt-player.rt-radio .rt-listeners {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	height: 32px !important;
	min-height: 32px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	gap: 7px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255,255,255,.10) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.075), 0 10px 24px rgba(0,0,0,.20) !important;
	color: rgba(247,248,251,.78) !important;
	font-size: 12px !important;
	font-weight: 750 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
.rt-player.rt-radio .rt-livebar--head { justify-self: center !important; }
.rt-player.rt-radio .rt-listeners { justify-self: end !important; }
.rt-player.rt-radio .rt-live-dot,
.rt-player.rt-radio .rt-livebar--head .rt-live-dot,
.rt-player.rt-radio .rt-station-name .rt-live-dot {
	width: 8px !important;
	height: 8px !important;
	border-radius: 999px !important;
	background: var(--rt-corp-accent) !important;
	box-shadow: 0 0 0 0 rgba(168,85,247,.36), 0 0 16px rgba(168,85,247,.62) !important;
	animation: rt-corp-live-pulse 1.6s ease-in-out infinite !important;
}
@keyframes rt-corp-live-pulse {
	0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(168,85,247,.34), 0 0 16px rgba(168,85,247,.62); }
	50% { opacity: .55; transform: scale(.78); box-shadow: 0 0 0 7px rgba(168,85,247,0), 0 0 7px rgba(37,99,235,.32); }
}

/* Now playing */
.rt-player.rt-radio .rt-np-main {
	display: grid !important;
	grid-template-columns: 82px minmax(0,1fr) !important;
	align-items: center !important;
	gap: 16px !important;
	min-height: 88px !important;
	padding: 14px !important;
	border-radius: 22px !important;
	border: 1px solid rgba(255,255,255,.085) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.026)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 34px rgba(0,0,0,.18) !important;
}
.rt-player.rt-radio .rt-art {
	width: 82px !important;
	height: 82px !important;
	border-radius: 20px !important;
	border: 1px solid rgba(255,255,255,.12) !important;
	background:
		radial-gradient(circle at 30% 20%, rgba(168,85,247,.25), transparent 40%),
		linear-gradient(145deg, #242b38, #111722 72%, #0a0d13) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 34px rgba(0,0,0,.28) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
.rt-player.rt-radio .rt-art img { border-radius: inherit !important; }
.rt-player.rt-radio .rt-art__icon { color: #c4b5fd !important; filter: drop-shadow(0 0 12px rgba(168,85,247,.28)); }
.rt-player.rt-radio .rt-np-info { min-width: 0 !important; }
.rt-player.rt-radio .rt-np-song { margin: 0 0 6px !important; font-size: 18px !important; line-height: 1.25 !important; font-weight: 800 !important; letter-spacing: -.02em !important; }
.rt-player.rt-radio .rt-np-song__link,
.rt-player.rt-radio .rt-np-song__link:hover { color: var(--rt-corp-text) !important; text-decoration: none !important; }
.rt-player.rt-radio .rt-np-track,
.rt-player.rt-radio .rt-np-fallback { color: var(--rt-corp-muted) !important; font-size: 13px !important; line-height: 1.4 !important; }
.rt-player.rt-radio .rt-meta + .rt-meta:not(:empty)::before { color: var(--rt-corp-soft) !important; }

/* Play control */
.rt-player.rt-radio .rt-play-wrap { padding: 22px 0 12px !important; position: relative !important; isolation: isolate !important; }
.rt-player.rt-radio .rt-play-wrap::before,
.rt-player.rt-radio .rt-play-wrap::after { display: none !important; }
.rt-player.rt-radio .rt-btn--play {
	width: 78px !important;
	height: 78px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255,255,255,.16) !important;
	background: var(--rt-corp-accent) !important;
	color: #fff !important;
	box-shadow: 0 18px 42px rgba(37,99,235,.28), 0 12px 28px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.34) !important;
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}
.rt-player.rt-radio .rt-btn--play:hover { transform: translateY(-2px) scale(1.035) !important; filter: saturate(1.08) brightness(1.04) !important; }
.rt-player.rt-radio .rt-btn--play:active { transform: scale(.96) !important; }
.rt-player.rt-radio.is-playing .rt-btn--play {
	background: linear-gradient(180deg, #1f2937, #0b0f16) !important;
	border-color: rgba(168,85,247,.34) !important;
	box-shadow: 0 18px 42px rgba(0,0,0,.48), 0 0 0 10px rgba(168,85,247,.08), 0 0 26px rgba(37,99,235,.20), inset 0 1px 0 rgba(255,255,255,.12) !important;
	animation: none !important;
}
.rt-player.rt-radio.is-playing .rt-ico-pause,
.rt-player.rt-radio.is-playing .rt-ico-pause path { color: #fff !important; fill: #fff !important; }
.rt-player.rt-radio .rt-btn__glow { opacity: 0 !important; animation: none !important; }
.rt-player.rt-radio .rt-btn__spinner { border-color: rgba(255,255,255,.38) !important; border-top-color: #fff !important; }

/* Volume / mute */
.rt-player.rt-radio .rt-controls-row--horizontal { padding: 4px 0 4px !important; margin: 0 !important; }
.rt-player.rt-radio .rt-volume-horizontal {
	width: min(100%, 500px) !important;
	min-height: 72px !important;
	padding: 14px 16px !important;
	border-radius: 22px !important;
	border: 1px solid rgba(255,255,255,.085) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 14px 32px rgba(0,0,0,.20) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal::before { background: radial-gradient(circle at var(--rt-vol,80%) 50%, rgba(168,85,247,.18), transparent 30%) !important; opacity: .9 !important; }
.rt-player.rt-radio .rt-volume-horizontal__mute,
.rt-player.rt-radio .rt-mute {
	width: 42px !important;
	height: 42px !important;
	border-radius: 14px !important;
	border: 1px solid rgba(255,255,255,.09) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)) !important;
	color: rgba(247,248,251,.78) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 18px rgba(0,0,0,.18) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__mute:hover,
.rt-player.rt-radio .rt-volume-horizontal__mute:focus-visible,
.rt-player.rt-radio .rt-mute:hover { border-color: rgba(168,85,247,.38) !important; color: #e9d5ff !important; }
.rt-player.rt-radio .rt-volume-horizontal__mute.is-muted,
.rt-player.rt-radio .rt-mute.is-muted { color: #f472b6 !important; }
.rt-player.rt-radio .rt-volume-horizontal__meter {
	height: 12px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255,255,255,.085) !important;
	background: #070a0f !important;
	box-shadow: inset 0 1px 4px rgba(0,0,0,.58) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__fill {
	background: var(--rt-corp-accent) !important;
	box-shadow: 0 0 20px rgba(168,85,247,.28), 0 0 26px rgba(37,99,235,.18) !important;
}
.rt-player.rt-radio .rt-volume-step { background: rgba(255,255,255,.18) !important; }
.rt-player.rt-radio .rt-volume-step.is-active { background: #d8b4fe !important; box-shadow: 0 0 10px rgba(168,85,247,.36) !important; }
.rt-player.rt-radio .rt-volume-horizontal__thumb {
	background: radial-gradient(circle at 35% 25%, #f5d0fe, #a855f7 55%, #2563eb 100%) !important;
	box-shadow: 0 10px 20px rgba(0,0,0,.44), 0 0 18px rgba(168,85,247,.30), inset 0 1px 0 rgba(255,255,255,.46) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__value {
	background: var(--rt-corp-accent) !important;
	border: 1px solid rgba(255,255,255,.12) !important;
	color: #fff !important;
	box-shadow: 0 10px 22px rgba(0,0,0,.32), 0 0 20px rgba(37,99,235,.18) !important;
}
.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct { color: #fff !important; font-weight: 800 !important; }

/* Status, divider, sleep timer */
.rt-player.rt-radio .rt-status { min-height: 18px !important; margin: 8px 0 0 !important; color: var(--rt-corp-soft) !important; font-size: 12.5px !important; }
.rt-player.rt-radio .rt-status.is-error { color: #fb7185 !important; }
.rt-player.rt-radio .rt-status.is-warn { color: #c4b5fd !important; }
.rt-player.rt-radio .rt-divider { border: 0 !important; border-top: 1px solid rgba(255,255,255,.08) !important; margin: 18px 0 !important; }
.rt-player.rt-radio .rt-sleep {
	gap: 12px !important;
	padding: 14px !important;
	border-radius: 22px !important;
	border: 1px solid rgba(255,255,255,.075) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)) !important;
}
.rt-player.rt-radio .rt-sleep__label { color: var(--rt-corp-text) !important; font-size: 14px !important; font-weight: 750 !important; }
.rt-player.rt-radio .rt-sleep__label svg { color: #c4b5fd !important; filter: drop-shadow(0 0 10px rgba(168,85,247,.24)); }
.rt-player.rt-radio .rt-sleep__remaining { color: var(--rt-corp-muted) !important; }
.rt-player.rt-radio .rt-sleep__opt {
	height: 40px !important;
	border-radius: 14px !important;
	border: 1px solid rgba(255,255,255,.08) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)) !important;
	color: rgba(247,248,251,.72) !important;
	font-weight: 750 !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 8px 18px rgba(0,0,0,.16) !important;
}
.rt-player.rt-radio .rt-sleep__opt:hover { border-color: rgba(168,85,247,.32) !important; color: #e9d5ff !important; }
.rt-player.rt-radio .rt-sleep__opt.is-active {
	background: var(--rt-corp-accent) !important;
	border-color: rgba(255,255,255,.12) !important;
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(37,99,235,.22), inset 0 1px 0 rgba(255,255,255,.24) !important;
}

/* Info panel */
.rt-player.rt-radio .rt-info-panel {
	border-radius: 18px !important;
	border: 1px solid rgba(255,255,255,.085) !important;
	background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)) !important;
	color: var(--rt-corp-muted) !important;
}

@media (max-width: 560px) {
	.rt-player.rt-radio { padding: 16px !important; border-radius: 24px !important; }
	.rt-player.rt-radio::after { border-radius: 23px !important; }
	.rt-player.rt-radio .rt-np-head { grid-template-columns: minmax(0,1fr) auto auto !important; gap: 6px !important; }
	.rt-player.rt-radio .rt-station-name { font-size: 10px !important; }
	.rt-player.rt-radio .rt-livebar--head,
	.rt-player.rt-radio .rt-listeners { height: 28px !important; min-height: 28px !important; padding: 0 9px !important; font-size: 10px !important; }
	.rt-player.rt-radio .rt-np-main { grid-template-columns: 66px minmax(0,1fr) !important; gap: 12px !important; padding: 12px !important; min-height: 72px !important; }
	.rt-player.rt-radio .rt-art { width: 66px !important; height: 66px !important; border-radius: 16px !important; }
	.rt-player.rt-radio .rt-np-song { font-size: 16px !important; }
	.rt-player.rt-radio .rt-btn--play { width: 70px !important; height: 70px !important; }
	.rt-player.rt-radio .rt-volume-horizontal { grid-template-columns: 38px minmax(130px,1fr) 54px !important; padding: 12px !important; border-radius: 18px !important; }
	.rt-player.rt-radio .rt-sleep { flex-direction: column !important; align-items: stretch !important; }
	.rt-player.rt-radio .rt-sleep__head { justify-content: space-between !important; }
}


/* ------------------------------------------------ Sleek volume + playback wave rings 1.18.1 */
/* Polishes the corporate dark player with a slimmer premium volume control and
   animated expanding round waves emitted from the play button while playing. */
.rt-player.rt-radio .rt-play-wrap {
	padding: 24px 0 14px !important;
	position: relative !important;
	isolation: isolate !important;
	overflow: visible !important;
}
.rt-player.rt-radio .rt-play-wrap::before,
.rt-player.rt-radio .rt-play-wrap::after {
	content: "" !important;
	display: block !important;
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
	width: 92px !important;
	height: 92px !important;
	border-radius: 999px !important;
	pointer-events: none !important;
	z-index: 0 !important;
	transform: translate(-50%, -50%) scale(.72) !important;
	opacity: 0 !important;
	border: 1px solid rgba(168,85,247,.36) !important;
	box-shadow: 0 0 0 0 rgba(168,85,247,.18), inset 0 0 22px rgba(37,99,235,.10) !important;
}
.rt-player.rt-radio.is-playing .rt-play-wrap::before {
	opacity: .9 !important;
	animation: rt-corp-wave-ring 1.85s ease-out infinite !important;
}
.rt-player.rt-radio.is-playing .rt-play-wrap::after {
	opacity: .72 !important;
	animation: rt-corp-wave-ring 1.85s ease-out .62s infinite !important;
}
.rt-player.rt-radio .rt-btn--play {
	position: relative !important;
	z-index: 2 !important;
	width: 76px !important;
	height: 76px !important;
	background: radial-gradient(circle at 32% 24%, #f0abfc, #8b5cf6 45%, #2563eb 100%) !important;
	box-shadow: 0 18px 42px rgba(37,99,235,.28), 0 12px 28px rgba(0,0,0,.40), 0 0 0 9px rgba(168,85,247,.08), inset 0 1px 0 rgba(255,255,255,.36) !important;
}
.rt-player.rt-radio.is-playing .rt-btn--play {
	animation: rt-corp-button-breathe 2.2s ease-in-out infinite !important;
}
.rt-player.rt-radio.is-playing .rt-btn__glow {
	opacity: 1 !important;
	animation: rt-corp-inner-glow 1.85s ease-out infinite !important;
}
@keyframes rt-corp-wave-ring {
	0% { transform: translate(-50%, -50%) scale(.70) !important; opacity: .78; border-color: rgba(168,85,247,.46); box-shadow: 0 0 0 0 rgba(168,85,247,.20), inset 0 0 20px rgba(37,99,235,.10); }
	62% { opacity: .18; border-color: rgba(37,99,235,.22); box-shadow: 0 0 0 22px rgba(168,85,247,0), inset 0 0 28px rgba(37,99,235,.04); }
	100% { transform: translate(-50%, -50%) scale(1.72) !important; opacity: 0; border-color: rgba(37,99,235,0); box-shadow: 0 0 0 34px rgba(37,99,235,0), inset 0 0 0 rgba(37,99,235,0); }
}
@keyframes rt-corp-button-breathe {
	0%,100% { transform: translateY(0) scale(1); filter: saturate(1) brightness(1); }
	50% { transform: translateY(-1px) scale(1.025); filter: saturate(1.12) brightness(1.06); }
}
@keyframes rt-corp-inner-glow {
	0% { box-shadow: 0 0 0 0 rgba(168,85,247,.32), 0 0 0 0 rgba(37,99,235,.18); }
	70% { box-shadow: 0 0 0 18px rgba(168,85,247,0), 0 0 0 31px rgba(37,99,235,0); }
	100% { box-shadow: 0 0 0 0 rgba(168,85,247,0), 0 0 0 0 rgba(37,99,235,0); }
}

.rt-player.rt-radio .rt-controls-row--horizontal {
	padding: 2px 0 4px !important;
}
.rt-player.rt-radio .rt-volume-horizontal {
	min-height: 58px !important;
	grid-template-columns: 40px minmax(0,1fr) 54px !important;
	gap: 12px !important;
	padding: 10px 12px !important;
	border-radius: 18px !important;
	background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.020)) !important;
	border-color: rgba(255,255,255,.075) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 10px 24px rgba(0,0,0,.18) !important;
}
.rt-player.rt-radio .rt-volume-horizontal::before {
	background: radial-gradient(circle at var(--rt-vol,80%) 50%, rgba(168,85,247,.16), transparent 24%) !important;
	filter: blur(12px) !important;
	opacity: .75 !important;
}
.rt-player.rt-radio .rt-volume-horizontal__mute,
.rt-player.rt-radio .rt-mute {
	width: 38px !important;
	height: 38px !important;
	border-radius: 12px !important;
}
.rt-player.rt-radio .rt-volume-horizontal__meter {
	height: 8px !important;
	border: 0 !important;
	background: linear-gradient(180deg, rgba(0,0,0,.74), rgba(255,255,255,.055)) !important;
	box-shadow: inset 0 1px 4px rgba(0,0,0,.72), 0 1px 0 rgba(255,255,255,.045) !important;
	overflow: visible !important;
}
.rt-player.rt-radio .rt-volume-horizontal__fill {
	height: 8px !important;
	border-radius: 999px !important;
	background: linear-gradient(90deg, #d946ef 0%, #8b5cf6 50%, #2563eb 100%) !important;
	box-shadow: 0 0 14px rgba(168,85,247,.30), 0 0 22px rgba(37,99,235,.16) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__steps {
	display: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal__thumb {
	width: 24px !important;
	height: 24px !important;
	top: 50% !important;
	transform: translate(-50%, -50%) !important;
	border: 2px solid rgba(255,255,255,.78) !important;
	background: linear-gradient(135deg, #ffffff 0%, #d8b4fe 36%, #8b5cf6 100%) !important;
	box-shadow: 0 8px 18px rgba(0,0,0,.38), 0 0 16px rgba(168,85,247,.38), inset 0 1px 0 rgba(255,255,255,.55) !important;
}
.rt-player.rt-radio .rt-volume-horizontal:hover .rt-volume-horizontal__thumb,
.rt-player.rt-radio .rt-volume-horizontal:focus-within .rt-volume-horizontal__thumb {
	transform: translate(-50%, -50%) scale(1.08) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__thumb span,
.rt-player.rt-radio .rt-volume-horizontal__thumb::before,
.rt-player.rt-radio .rt-volume-horizontal__thumb::after {
	display: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal__value {
	position: static !important;
	transform: none !important;
	width: 46px !important;
	height: 34px !important;
	border-radius: 12px !important;
	background: linear-gradient(135deg, #a855f7 0%, #2563eb 100%) !important;
	box-shadow: 0 8px 20px rgba(0,0,0,.26), 0 0 16px rgba(168,85,247,.18) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__value::after {
	display: none !important;
}
.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct {
	font-size: 12px !important;
	font-weight: 850 !important;
}
.rt-player.rt-radio .rt-volume__range--horizontal {
	height: 44px !important;
}
@media (max-width: 560px) {
	.rt-player.rt-radio .rt-volume-horizontal {
		grid-template-columns: 36px minmax(0,1fr) 48px !important;
		min-height: 54px !important;
		padding: 9px 10px !important;
	}
	.rt-player.rt-radio .rt-volume-horizontal__mute,
	.rt-player.rt-radio .rt-mute { width: 34px !important; height: 34px !important; }
	.rt-player.rt-radio .rt-volume-horizontal__value { width: 42px !important; height: 32px !important; }
}
@media (prefers-reduced-motion: reduce) {
	.rt-player.rt-radio.is-playing .rt-play-wrap::before,
	.rt-player.rt-radio.is-playing .rt-play-wrap::after,
	.rt-player.rt-radio.is-playing .rt-btn--play,
	.rt-player.rt-radio.is-playing .rt-btn__glow {
		animation: none !important;
	}
}


/* ------------------------------------------------ Sleek volume final polish 1.18.2 */
/* Keeps the volume compact and premium: thin track, gradient fill, floating value
   badge above the thumb, and no visual clutter. */
.rt-player.rt-radio .rt-volume-horizontal {
	min-height: 64px !important;
	grid-template-columns: 40px minmax(0,1fr) !important;
	gap: 12px !important;
	padding: 12px 14px !important;
}
.rt-player.rt-radio .rt-volume-horizontal__meter {
	position: relative !important;
	height: 10px !important;
	min-height: 10px !important;
	overflow: visible !important;
	border-radius: 999px !important;
	background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(255,255,255,.055)) !important;
	box-shadow: inset 0 1px 5px rgba(0,0,0,.72), 0 1px 0 rgba(255,255,255,.045) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__fill {
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	height: 10px !important;
	width: var(--rt-vol, 80%) !important;
	border-radius: 999px !important;
	background: linear-gradient(90deg, #d946ef 0%, #8b5cf6 48%, #2563eb 100%) !important;
	box-shadow: 0 0 14px rgba(168,85,247,.32), 0 0 22px rgba(37,99,235,.18) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__steps { display: none !important; }
.rt-player.rt-radio .rt-volume-horizontal__thumb {
	position: absolute !important;
	left: var(--rt-vol, 80%) !important;
	top: 50% !important;
	z-index: 4 !important;
	width: 24px !important;
	height: 24px !important;
	border-radius: 999px !important;
	border: 2px solid rgba(255,255,255,.82) !important;
	background: radial-gradient(circle at 34% 24%, #ffffff 0%, #d8b4fe 38%, #8b5cf6 100%) !important;
	transform: translate(-50%, -50%) !important;
	box-shadow: 0 8px 18px rgba(0,0,0,.42), 0 0 18px rgba(168,85,247,.36), inset 0 1px 0 rgba(255,255,255,.58) !important;
	transition: left .18s ease, transform .15s ease !important;
}
.rt-player.rt-radio .rt-volume-horizontal:hover .rt-volume-horizontal__thumb,
.rt-player.rt-radio .rt-volume-horizontal:focus-within .rt-volume-horizontal__thumb {
	transform: translate(-50%, -50%) scale(1.08) !important;
}
.rt-player.rt-radio .rt-volume-horizontal__thumb span,
.rt-player.rt-radio .rt-volume-horizontal__thumb::before,
.rt-player.rt-radio .rt-volume-horizontal__thumb::after { display: none !important; }
.rt-player.rt-radio .rt-volume-horizontal__value {
	position: absolute !important;
	left: var(--rt-vol, 80%) !important;
	top: -44px !important;
	z-index: 5 !important;
	width: auto !important;
	min-width: 46px !important;
	height: 32px !important;
	padding: 0 10px !important;
	border-radius: 12px !important;
	border: 1px solid rgba(255,255,255,.14) !important;
	background: linear-gradient(135deg, #a855f7 0%, #2563eb 100%) !important;
	box-shadow: 0 10px 22px rgba(0,0,0,.32), 0 0 18px rgba(168,85,247,.20) !important;
	transform: translateX(-50%) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: left .18s ease !important;
}
.rt-player.rt-radio .rt-volume-horizontal__value::after {
	content: "" !important;
	position: absolute !important;
	left: 50% !important;
	bottom: -5px !important;
	width: 10px !important;
	height: 10px !important;
	border: 0 !important;
	background: linear-gradient(135deg, #8b5cf6 0%, #2563eb 100%) !important;
	transform: translateX(-50%) rotate(45deg) !important;
}
.rt-player.rt-radio .rt-volume-horizontal .rt-volume__pct {
	position: relative !important;
	z-index: 1 !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	line-height: 1 !important;
	color: #fff !important;
}
.rt-player.rt-radio .rt-volume__range--horizontal {
	position: absolute !important;
	inset: -18px 0 !important;
	height: 46px !important;
	z-index: 8 !important;
	opacity: 0 !important;
	cursor: pointer !important;
}
@media (max-width: 560px) {
	.rt-player.rt-radio .rt-volume-horizontal { grid-template-columns: 36px minmax(0,1fr) !important; min-height: 58px !important; }
	.rt-player.rt-radio .rt-volume-horizontal__value { min-width: 42px !important; height: 30px !important; top: -40px !important; }
}

/* =======================================================================
 * Howler.js radio player — complete radio-player replacement (v1.18.5)
 * ======================================================================= */
.rt-player.rt-radio.rt-howler-player {
	--rt-h-bg: #eeeeec !important;
	--rt-h-surface: #f8f8f6 !important;
	--rt-h-card: #ffffff !important;
	--rt-h-line: #d7d7d2 !important;
	--rt-h-strong: #4b4b47 !important;
	--rt-h-text: #242424 !important;
	--rt-h-muted: #70706b !important;
	--rt-h-soft: #93938e !important;
	--rt-h-live: #d84a3a !important;
	width: min(100%, 430px) !important;
	max-width: 430px !important;
	margin: 0 auto 14px !important;
	padding: 12px !important;
	border: 1px solid var(--rt-h-line) !important;
	border-radius: 18px !important;
	background: var(--rt-h-bg) !important;
	box-shadow: none !important;
	color: var(--rt-h-text) !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	animation: none !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
}
.rt-player.rt-radio.rt-howler-player *,
.rt-player.rt-radio.rt-howler-player *::before,
.rt-player.rt-radio.rt-howler-player *::after { box-sizing: border-box !important; }
.rt-player.rt-radio.rt-howler-player::before,
.rt-player.rt-radio.rt-howler-player::after { display: none !important; content: none !important; }
.rt-player.rt-radio.rt-howler-player button { font: inherit !important; -webkit-tap-highlight-color: transparent !important; }
.rt-howler-player__top {
	display: grid !important;
	grid-template-columns: 48px minmax(0, 1fr) !important;
	gap: 10px !important;
	align-items: center !important;
	min-height: 54px !important;
}
.rt-howler-play {
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	min-height: 48px !important;
	padding: 0 !important;
	border: 1px solid #3f3f3c !important;
	border-radius: 14px !important;
	background: var(--rt-h-strong) !important;
	color: #fff !important;
	box-shadow: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: background .16s ease, transform .12s ease !important;
}
.rt-howler-play:hover,
.rt-howler-play:focus-visible { background: #383835 !important; outline: 2px solid rgba(75,75,71,.24) !important; outline-offset: 2px !important; }
.rt-howler-play:active { transform: scale(.97) !important; }
.rt-howler-player.is-playing .rt-howler-play { background: #2f2f2c !important; }
.rt-howler-play svg,
.rt-howler-play path { color: #fff !important; fill: #fff !important; }
.rt-howler-spinner {
	width: 20px !important;
	height: 20px !important;
	border: 2px solid rgba(255,255,255,.38) !important;
	border-top-color: #fff !important;
	border-radius: 50% !important;
	animation: rt-spin .8s linear infinite !important;
}
.rt-howler-meta { min-width: 0 !important; }
.rt-howler-kicker {
	display: flex !important;
	align-items: center !important;
	gap: 5px !important;
	min-width: 0 !important;
	margin: 0 0 3px !important;
	color: var(--rt-h-muted) !important;
	font-size: 11px !important;
	font-weight: 750 !important;
	line-height: 1.2 !important;
	letter-spacing: .04em !important;
	text-transform: uppercase !important;
}
.rt-howler-kicker .rt-live-dot {
	width: 6px !important;
	height: 6px !important;
	min-width: 6px !important;
	border-radius: 50% !important;
	background: var(--rt-h-live) !important;
	box-shadow: none !important;
	animation: none !important;
}
.rt-howler-kicker .rt-station-name__text { min-width: 0 !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.rt-howler-live {
	margin-left: auto !important;
	padding: 4px 7px !important;
	border: 1px solid var(--rt-h-line) !important;
	border-radius: 999px !important;
	background: var(--rt-h-surface) !important;
	color: var(--rt-h-muted) !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
}
.rt-howler-title,
.rt-howler-title .rt-np-song__link {
	display: block !important;
	max-width: 100% !important;
	margin: 0 !important;
	color: var(--rt-h-text) !important;
	font-size: 15px !important;
	font-weight: 780 !important;
	line-height: 1.25 !important;
	letter-spacing: -.01em !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	text-decoration: none !important;
}
.rt-howler-track,
.rt-howler-fallback {
	margin-top: 2px !important;
	color: var(--rt-h-soft) !important;
	font-size: 12px !important;
	line-height: 1.25 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}
.rt-howler-volume {
	position: relative !important;
	display: grid !important;
	grid-template-columns: 40px minmax(0, 1fr) 42px !important;
	align-items: center !important;
	gap: 8px !important;
	min-height: 40px !important;
	margin: 10px 0 0 !important;
	padding: 7px 8px !important;
	border: 1px solid var(--rt-h-line) !important;
	border-radius: 14px !important;
	background: var(--rt-h-surface) !important;
	overflow: hidden !important;
}
.rt-howler-mute {
	position: relative !important;
	z-index: 2 !important;
	width: 36px !important;
	height: 36px !important;
	padding: 0 !important;
	border: 1px solid var(--rt-h-line) !important;
	border-radius: 12px !important;
	background: var(--rt-h-card) !important;
	color: var(--rt-h-muted) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
}
.rt-howler-mute.is-muted { color: var(--rt-h-live) !important; }
.rt-howler-volume__bar {
	position: relative !important;
	z-index: 2 !important;
	height: 6px !important;
	border-radius: 999px !important;
	background: #d4d4d0 !important;
	cursor: pointer !important;
}
.rt-howler-volume__fill {
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	width: var(--rt-vol, 80%) !important;
	border-radius: inherit !important;
	background: #555552 !important;
}
.rt-howler-volume__thumb {
	position: absolute !important;
	left: var(--rt-vol, 80%) !important;
	top: 50% !important;
	width: 16px !important;
	height: 16px !important;
	margin: -8px 0 0 -8px !important;
	border: 2px solid #fff !important;
	border-radius: 50% !important;
	background: var(--rt-h-strong) !important;
	box-shadow: 0 1px 4px rgba(0,0,0,.18) !important;
}
.rt-howler-volume__value {
	justify-self: end !important;
	color: var(--rt-h-muted) !important;
	font-size: 12px !important;
	font-weight: 750 !important;
	font-variant-numeric: tabular-nums !important;
}
.rt-howler-volume__range {
	position: absolute !important;
	z-index: 4 !important;
	left: 52px !important;
	right: 50px !important;
	top: 0 !important;
	bottom: 0 !important;
	width: auto !important;
	height: 100% !important;
	margin: 0 !important;
	opacity: 0 !important;
	cursor: pointer !important;
}
.rt-howler-status { min-height: 0 !important; margin: 6px 2px 0 !important; color: var(--rt-h-soft) !important; font-size: 11.5px !important; font-weight: 650 !important; line-height: 1.25 !important; text-align: left !important; }
.rt-howler-status:empty { display: none !important; }
.rt-howler-status.is-error { color: var(--rt-h-live) !important; }
.rt-howler-status.is-warn { color: #755f00 !important; }
.rt-howler-sleep {
	display: grid !important;
	grid-template-columns: auto minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 8px !important;
	margin: 10px 0 0 !important;
}
.rt-howler-sleep .rt-sleep__head { display: inline-flex !important; align-items: center !important; gap: 5px !important; min-width: max-content !important; margin: 0 !important; }
.rt-howler-sleep .rt-sleep__label { display: inline-flex !important; align-items: center !important; gap: 4px !important; color: var(--rt-h-muted) !important; font-size: 12px !important; font-weight: 750 !important; line-height: 1 !important; }
.rt-howler-sleep .rt-sleep__label svg { color: var(--rt-h-muted) !important; filter: none !important; }
.rt-howler-sleep .rt-sleep__remaining { color: var(--rt-h-soft) !important; font-size: 11px !important; font-weight: 750 !important; line-height: 1 !important; }
.rt-howler-sleep .rt-sleep__opts { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 5px !important; min-width: 0 !important; }
.rt-howler-sleep .rt-sleep__opt {
	height: 32px !important;
	min-height: 32px !important;
	padding: 0 4px !important;
	border: 1px solid var(--rt-h-line) !important;
	border-radius: 10px !important;
	background: var(--rt-h-surface) !important;
	box-shadow: none !important;
	color: var(--rt-h-muted) !important;
	font-size: 12px !important;
	font-weight: 780 !important;
	line-height: 1 !important;
}
.rt-howler-sleep .rt-sleep__opt.is-active { border-color: var(--rt-h-strong) !important; background: var(--rt-h-strong) !important; color: #fff !important; }
.rt-howler-listeners {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 5px !important;
	width: 100% !important;
	margin: 8px 0 0 !important;
	padding: 5px 8px !important;
	border: 1px solid var(--rt-h-line) !important;
	border-radius: 12px !important;
	background: var(--rt-h-surface) !important;
	color: var(--rt-h-muted) !important;
	font-size: 11px !important;
	font-weight: 650 !important;
	line-height: 1.2 !important;
}
.rt-howler-listeners .rt-listeners__count { color: var(--rt-h-text) !important; font-weight: 850 !important; font-variant-numeric: tabular-nums !important; }
.rt-howler-listeners .rt-listeners__count:empty::after { content: "–" !important; color: var(--rt-h-soft) !important; }
.rt-howler-player .rt-info-toggle {
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	border: 1px solid var(--rt-h-line) !important;
	border-radius: 50% !important;
	background: var(--rt-h-surface) !important;
	color: var(--rt-h-muted) !important;
	font-size: 13px !important;
	line-height: 18px !important;
	box-shadow: none !important;
}
.rt-howler-player .rt-info-toggle:hover,
.rt-howler-player .rt-info-toggle:focus-visible,
.rt-howler-player .rt-info-toggle[aria-expanded="true"] { background: var(--rt-h-strong) !important; border-color: var(--rt-h-strong) !important; color: #fff !important; outline: 0 !important; }
.rt-howler-player > .rt-info-panel { margin: 0 0 10px !important; padding: 10px !important; border: 1px solid var(--rt-h-line) !important; border-radius: 12px !important; background: var(--rt-h-surface) !important; box-shadow: none !important; color: var(--rt-h-muted) !important; font-size: 13px !important; line-height: 1.45 !important; }
.rt-sheet__body .rt-player.rt-radio.rt-howler-player { width: 100% !important; max-width: none !important; margin: 0 !important; }
@media (max-width: 390px) {
	.rt-player.rt-radio.rt-howler-player { width: 100% !important; padding: 10px !important; border-radius: 16px !important; }
	.rt-howler-player__top { grid-template-columns: 46px minmax(0, 1fr) !important; gap: 9px !important; }
	.rt-howler-play { width: 46px !important; height: 46px !important; min-width: 46px !important; min-height: 46px !important; border-radius: 13px !important; }
	.rt-howler-title,
	.rt-howler-title .rt-np-song__link { font-size: 14px !important; }
	.rt-howler-live { display: none !important; }
	.rt-howler-volume { grid-template-columns: 38px minmax(0, 1fr) 38px !important; gap: 7px !important; }
	.rt-howler-volume__range { left: 50px !important; right: 46px !important; }
	.rt-howler-sleep { grid-template-columns: 1fr !important; gap: 6px !important; }
	.rt-howler-sleep .rt-sleep__head { display: flex !important; justify-content: space-between !important; width: 100% !important; }
	.rt-howler-sleep .rt-sleep__opt { height: 30px !important; min-height: 30px !important; font-size: 11.5px !important; }
}
