		:root {
			--bg-0: #050008;
			--bg-1: #0a0015;
			--panel-a: rgba(16, 18, 22, 0.84);
			--panel-b: rgba(8, 10, 14, 0.84);
			--panel-border: rgba(255,255,255,0.07);
			--soft-border: rgba(255,255,255,0.05);
			--text-main: #f3f7fb;
			--text-soft: #c8d4de;
			--text-dim: #8eb8d8;
			--accent: #62c7ff;
			--accent-soft: rgba(98,199,255,0.20);
			--good: #41f38f;
			--warn: #ffd54f;
			--bad: #ff6969;
			--idle: #8d8d8d;
		}

		* { box-sizing: border-box; }

		html {
			background: url(/radio/bg.jpg) no-repeat center center fixed;
			background-size: cover;
		}

		body::before {
			content: "";
			position: fixed;
			inset: 0;
			background: rgba(0, 0, 0, 0.55);
			pointer-events: none;
			z-index: 0;
		}

		body {
			margin: 0;
			font-family: Arial, Helvetica, sans-serif;
			color: var(--text-main);
			padding: 12px 12px 28px;
		}

		.page-shell {
			position: relative;
			z-index: 1;
			width: 100%;
			max-width: 1220px;
			margin: 0 auto;
		}

		.panel {
			position: relative;
			border-radius: 18px;
			border: 1px solid var(--panel-border);
			background: linear-gradient(180deg, var(--panel-a), var(--panel-b));
			box-shadow: 0 18px 42px rgba(0,0,0,0.34), inset 0 0 0 1px rgba(255,255,255,0.02);
			backdrop-filter: blur(5px);
			-webkit-backdrop-filter: blur(5px);
			overflow: hidden;
		}

		.player-panel {
			position: relative;
			min-height: 320px;
			margin-bottom: 14px;
		}

		.player-bg {
			position: absolute;
			inset: 0;
			z-index: 0;
			overflow: hidden;
			border-radius: 18px;
		}

		#equalizer-canvas {
			position: absolute;
			inset: 0;
			width: 100%;
			height: 100%;
			display: block;
			background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
			opacity: 0.56;
			z-index: 0;
		}

		.eq-frequency-scale-overlay {
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			height: 46px;
			padding: 6px 10px 0;
			z-index: 4;
			background: linear-gradient(
				to top,
				rgba(8,10,14,0.96) 0%,
				rgba(8,10,14,0.78) 26%,
				rgba(8,10,14,0.34) 62%,
				rgba(8,10,14,0.0) 100%
			);
			pointer-events: none;
		}

		.eq-frequency-scale {
			position: relative;
			width: 100%;
			height: 100%;
		}

		.eq-frequency-scale span {
			position: absolute;
			bottom: 2px;
			transform: translateX(-50%);
			font-size: 10px;
			font-weight: 600;
			letter-spacing: 0.3px;
			color: rgba(220,240,255,0.88);
			text-shadow:
				0 1px 2px rgba(0,0,0,0.8),
				0 0 6px rgba(98,199,255,0.15);
			white-space: nowrap;
		}

		.eq-frequency-scale span::before {
			content: "";
			position: absolute;
			left: 50%;
			transform: translateX(-50%);
			bottom: 14px;
			width: 2px;
			height: 9px;
			background: linear-gradient(
				180deg,
				rgba(225,245,255,0.95),
				rgba(140,220,255,0.30)
			);
			box-shadow:
				0 0 8px rgba(120,220,255,0.34),
				0 0 14px rgba(120,220,255,0.16);
		}

		.eq-frequency-scale span:nth-child(8)::before {
			height: 14px;
			background: linear-gradient(
				180deg,
				rgba(160,235,255,1.0),
				rgba(98,199,255,0.30)
			);
			box-shadow:
				0 0 10px rgba(160,235,255,0.45),
				0 0 18px rgba(98,199,255,0.24);
		}

		@media (max-width: 760px) {
			.eq-frequency-scale-overlay {
				height: 38px;
				padding-left: 8px;
				padding-right: 8px;
			}
			.eq-frequency-scale span {
				font-size: 9px;
			}
		}

		@media (max-width: 560px) {
			.eq-frequency-scale-overlay {
				height: 34px;
				padding-left: 6px;
				padding-right: 6px;
			}
			.eq-frequency-scale span {
				font-size: 8px;
			}
		}

		.player-blur {
			position: absolute;
			inset: 0;
			background: rgba(0, 0, 0, 0.34);
			backdrop-filter: blur(6px);
			-webkit-backdrop-filter: blur(6px);
			z-index: 1;
		}

		.player-content {
			position: relative;
			z-index: 2;
			padding: 14px;
		}

		.main-card {
			position: relative;
			border-radius: 16px;
			border: 1px solid rgba(255,255,255,0.06);
			background:
				radial-gradient(circle at top right, rgba(64,180,255,0.06), transparent 36%),
				linear-gradient(180deg,
					rgba(18,22,26,0.55) 0%,
					rgba(12,16,20,0.45) 60%,
					rgba(8,10,14,0.15) 85%,
					rgba(8,10,14,0.00) 100%
				);
			box-shadow:
				0 12px 32px rgba(0,0,0,0.28),
				inset 0 0 0 1px rgba(255,255,255,0.02);
			padding: 14px 14px 60px;
			overflow: hidden;
		}

		.main-card::after {
			content: "";
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			height: 110px;
			background: linear-gradient(
				to bottom,
				rgba(8,10,14,0.0) 0%,
				rgba(8,10,14,0.18) 40%,
				rgba(8,10,14,0.45) 75%,
				rgba(8,10,14,0.85) 100%
			);
			border-bottom-left-radius: 16px;
			border-bottom-right-radius: 16px;
			pointer-events: none;
			z-index: 0;
		}

		.now-playing-layout {
			position: relative;
			z-index: 1;
			display: flex;
			gap: 22px;
			align-items: center;
			min-width: 0;
		}

		.track-art-frame {
			position: relative;
			flex: 0 0 auto;
			width: 150px;
			height: 150px;
			overflow: visible;
		}

		.track-art-frame::after {
			content: "";
			position: absolute;
			inset: -12px;
			border-radius: 22px;
			background: radial-gradient(circle, rgba(0,170,255,0.20), transparent 70%);
			filter: blur(10px);
			pointer-events: none;
			z-index: 0;
		}

		.track-art {
			position: relative;
			z-index: 1;
			width: 150px;
			height: 150px;
			border-radius: 18px;
			object-fit: cover;
			background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
			border: 1px solid rgba(255,255,255,0.10);
			box-shadow: 0 0 34px rgba(0,150,255,0.24), 0 18px 36px rgba(0,0,0,0.40), inset 0 0 0 1px rgba(255,255,255,0.05);
			transition: opacity 0.25s ease, box-shadow 0.25s ease;
			will-change: auto;
		}

		.track-art:hover {
			z-index: 2;
			cursor: zoom-in;
		}

		.track-text-wrap {
			flex: 1 1 auto;
			width: 0;
			min-width: 0;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			overflow: hidden;
		}

		.track-kicker {
			position: relative;
			display: block;
			width: 100%;
			height: 28px;
			margin-bottom: 10px;
			border-radius: 999px;
			border: 1px solid rgba(255,255,255,0.08);
			background: rgba(255,255,255,0.04);
			overflow: hidden;
			box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 4px 10px rgba(0,0,0,0.18);
		}

		.track-kicker-track {
			position: absolute;
			top: 50%;
			left: 0;
			transform: translateY(-50%);
			white-space: nowrap;
			font-size: 15px;
			letter-spacing: 1.2px;
			font-weight: 700;
			text-transform: none;
			padding-left: 100%;
			animation: marqueeScroll var(--ticker-duration, 30s) linear infinite;
			color: #d8ecff;
			text-shadow: 0 1px 1px rgba(0,0,0,0.65);
			will-change: transform;
			pointer-events: none;
		}

		.track-kicker:hover .track-kicker-track { animation-play-state: paused; }

		.track-kicker,
		.track-kicker-track {
			pointer-events: auto;
		}

		.track-kicker-track {
			color: #cfdbe6;
		}

		.track-kicker-track a {
			color: #8fd8ff;
			font-weight: 700;
			text-decoration: none;
			padding: 2px 6px;
			border-radius: 6px;
			position: relative;
			pointer-events: auto;
			cursor: pointer;
			transition:
				color 0.2s ease,
				background 0.2s ease,
				box-shadow 0.25s ease,
				transform 0.15s ease;
			animation: tickerLinkPulse 3.5s ease-in-out infinite;
		}

		.track-kicker-track a:hover {
			color: #ffffff;
			background: rgba(98, 199, 255, 0.18);
			box-shadow:
				0 0 10px rgba(98, 199, 255, 0.45),
				0 0 20px rgba(98, 199, 255, 0.25);
			transform: translateY(-1px);
		}

		.track-kicker-track a:active {
			transform: translateY(0px) scale(0.96);
			box-shadow: 0 0 6px rgba(98, 199, 255, 0.35);
		}

		.track-kicker-track a::after {
			content: "";
			position: absolute;
			left: 8%;
			bottom: 2px;
			width: 0%;
			height: 2px;
			background: linear-gradient(
				90deg,
				rgba(98,199,255,0.0),
				rgba(98,199,255,0.9),
				rgba(98,199,255,0.0)
			);
			transition: width 0.25s ease;
		}

		.track-kicker-track a:hover::after {
			width: 84%;
		}

		@keyframes tickerLinkPulse {
			0%, 100% {
				text-shadow: 0 0 0px rgba(98,199,255,0.0);
			}
			50% {
				text-shadow: 0 0 8px rgba(98,199,255,0.35);
			}
		}


		.track-kicker-track span.highlight {
			font-weight: 900;
			color: #ffffff;
			text-shadow: 0 0 10px rgba(143, 215, 255, 0.18);
		}

		.track-kicker-track span.accent {
			color: #8fd8ff;
			font-weight: 800;
		}

		.track-kicker-track span.subtle {
			opacity: 0.82;
		}

		.track-kicker-track span.urgent {
			color: #ffd479;
			font-weight: 900;
			text-shadow: 0 0 12px rgba(255, 212, 121, 0.18);
		}

		.track-kicker.idle { background: rgba(255,255,255,0.035); }
		.track-kicker.idle .track-kicker-track { color: #b3bfcb; }
		.track-kicker.online { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 0 10px rgba(65,243,143,0.12); }
		.track-kicker.online .track-kicker-track { color: #d7ffea; }
		.track-kicker.warn { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 0 10px rgba(255,213,79,0.12); }
		.track-kicker.warn .track-kicker-track { color: #fff2c6; }
		.track-kicker.bad { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 0 10px rgba(255,105,105,0.12); }
		.track-kicker.bad .track-kicker-track { color: #d7ffea; }

		@keyframes marqueeScroll {
			0%   { transform: translateY(-50%) translateX(0); }
			100% { transform: translateY(-50%) translateX(-100%); }
		}

		.track-title {
			--progress-pct: 0%;
			text-align: center;
			position: relative;
			padding: 12px 14px;
			border-radius: 12px;
			font-size: 28px;
			font-weight: 700;
			line-height: 1.15;
			font-variant: small-caps;
			letter-spacing: 0.8px;
			color: #f2f7ff;
			text-shadow: 0 1px 2px rgba(0,0,0,0.9);
			border: 1px solid rgba(255,255,255,0.06);
			background: rgba(10, 14, 18, 0.90);
			box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 6px 14px rgba(0,0,0,0.35);
			overflow: hidden;
			white-space: nowrap;
			width: 100%;
		}

		.track-title::before {
			content: "";
			position: absolute;
			inset: 0;
			width: var(--progress-pct);
			background: linear-gradient(90deg, rgba(0, 120, 255, 0.12), rgba(0, 180, 255, 0.16));
			z-index: 0;
			transition: width 1s linear;
		}

		.track-title::after {
			content: "";
			position: absolute;
			top: 0;
			bottom: 0;
			left: var(--progress-pct);
			width: 3px;
			background: rgba(120, 200, 255, 0.58);
			box-shadow: 0 0 6px rgba(120, 200, 255, 0.58);
			transform: translateX(-1px);
			z-index: 1;
		}

		.track-title-text {
			position: relative;
			z-index: 2;
			display: block;
			overflow: hidden;
			white-space: nowrap;
			padding-right: 28px;
			mask-image: linear-gradient(90deg, #000 0%, #000 84%, rgba(0,0,0,0.78) 91%, transparent 100%);
			-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 84%, rgba(0,0,0,0.78) 91%, transparent 100%);
		}

		.track-meta {
			margin-top: 12px;
			font-size: 20px;
			line-height: 1.3;
			color: #d9ebff;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			min-height: 30px;
			text-align: center;
			align-self: center;
			width: 100%;
			text-shadow: 0 1px 2px rgba(0,0,0,0.72), 0 0 12px rgba(98,199,255,0.14);
		}

		.track-meta strong {
			font-weight: 900;
			color: #ffffff;
			letter-spacing: 0.2px;
			text-shadow: 0 1px 2px rgba(0,0,0,0.78), 0 0 18px rgba(98,199,255,0.28);
		}

		.controls-row {
			position: relative;
			z-index: 1;
			display: flex;
			flex-wrap: nowrap;
			align-items: center;
			justify-content: flex-start;
			gap: 0;
			margin-top: 14px;
			padding: 0;
			border-radius: 18px;
			border: 1px solid rgba(255,255,255,0.07);
			background: rgba(255,255,255,0.03);
			box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
			overflow: visible;
			isolation: isolate;
		}

		.controls-row::before {
			content: "";
			position: absolute;
			inset: 0;
			border-radius: 18px;
			border: 1px solid rgba(255,255,255,0.07);
			background: rgba(255,255,255,0.03);
			box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
			pointer-events: none;
			z-index: 0;
		}

		.control-pill,
		.eq-toggle-btn,
		.decay-group,
		.eq-opacity-group,
		.volume-group {
			height: 48px;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 12px;
			padding: 0 16px;
			box-sizing: border-box;
			border-radius: 0;
			border: 0;
			border-right: 1px solid rgba(110,190,255,0.16);
			background: linear-gradient(180deg, rgba(22,36,48,0.88), rgba(9,12,16,0.88));
			color: #d8f3ff;
			font-size: 13px;
			line-height: 1;
			text-align: center;
			vertical-align: middle;
			box-shadow: none;
			transition: all 0.22s ease;
			min-width: 0;
			flex: 0 1 auto;
			position: relative;
			z-index: 1;
		}

		.controls-row > :first-child { border-top-left-radius: 18px; border-bottom-left-radius: 18px; }
		.controls-row > :last-child { border-right: 0; border-top-right-radius: 18px; border-bottom-right-radius: 18px; }

		.control-pill:hover,
		.eq-toggle-btn:hover,
		.decay-group:hover,
		.eq-opacity-group:hover,
		.volume-group:hover {
			transform: none;
			background: linear-gradient(180deg, rgba(28,44,58,0.92), rgba(11,15,20,0.92));
			box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
		}

		#stream-toggle-btn {
			min-width: 128px;
			cursor: pointer;
			white-space: nowrap;
			flex: 0 0 128px;
			padding-left: 18px;
			padding-right: 18px;
		}
		#stream-toggle-btn.health-idle,
		#stream-toggle-btn.health-stopped { box-shadow: 0 0 8px rgba(0,160,255,0.18), inset 0 0 6px rgba(255,255,255,0.04); }
		#stream-toggle-btn.health-checking,
		#stream-toggle-btn.health-connecting,
		#stream-toggle-btn.health-buffering,
		#stream-toggle-btn.health-reconnecting { border-color: rgba(255,213,79,0.45); box-shadow: 0 0 14px rgba(255,213,79,0.60), 0 0 26px rgba(255,170,0,0.30), inset 0 0 6px rgba(255,255,255,0.05); }
		#stream-toggle-btn.health-online { border-color: rgba(65,243,143,0.45); box-shadow: 0 0 14px rgba(65,243,143,0.72), 0 0 28px rgba(65,243,143,0.36), inset 0 0 6px rgba(255,255,255,0.05); }
		#stream-toggle-btn.health-error,
		#stream-toggle-btn.health-offline { border-color: rgba(255,105,105,0.45); box-shadow: 0 0 14px rgba(255,105,105,0.72), 0 0 28px rgba(255,60,60,0.36), inset 0 0 6px rgba(255,255,255,0.05); }

		.decay-group,
		.eq-opacity-group,
		.volume-group {
			justify-content: center;
			white-space: nowrap;
			gap: 16px;
		}

		.decay-group { flex: 1.25 1 0; }
		.eq-opacity-group { flex: 1.25 1 0; }
		.volume-group { flex: 1 1 0; }

		.stream-icon {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 22px;
			height: 22px;
			position: relative;
			flex: 0 0 auto;
		}

		.stream-icon.play::before {
			content: "";
			display: block;
			width: 0;
			height: 0;
			border-top: 9px solid transparent;
			border-bottom: 9px solid transparent;
			border-left: 14px solid #ffffff;
			margin-left: 3px;
			filter: drop-shadow(0 0 4px rgba(255,255,255,0.45));
		}

		.stream-icon.stop::before,
		.stream-icon.stop::after {
			content: "";
			position: absolute;
			width: 6px;
			height: 18px;
			background: #ffffff;
			border-radius: 2px;
			box-shadow: 0 0 5px rgba(255,255,255,0.30);
		}

		.stream-icon.stop::before { left: 4px; }
		.stream-icon.stop::after { right: 4px; }

		.stream-icon.connecting::before,
		.stream-icon.connecting::after,
		.stream-icon.connecting span {
			content: "";
			position: absolute;
			width: 6px;
			height: 6px;
			background: #ffffff;
			border-radius: 50%;
			box-shadow: 0 0 4px rgba(255,255,255,0.35);
			animation: pulseDots 1s infinite ease-in-out;
		}

		.stream-icon.connecting::before { left: 1px; animation-delay: 0s; }
		.stream-icon.connecting span { left: 8px; animation-delay: 0.15s; }
		.stream-icon.connecting::after { right: 1px; animation-delay: 0.3s; }

		@keyframes pulseDots {
			0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
			40% { transform: scale(1.1); opacity: 1; }
		}

		.eq-toggle-btn {
			cursor: pointer;
			opacity: 0.78;
			min-width: 96px;
			white-space: nowrap;
			flex: 0 0 96px;
			padding-left: 18px;
			padding-right: 18px;
		}
		.eq-toggle-btn.eq-active { opacity: 1; }
		.eq-toggle-btn.eq-active .eq-led {
			background: var(--good);
			box-shadow: 0 0 10px rgba(65,243,143,0.95), 0 0 18px rgba(65,243,143,0.75), 0 0 26px rgba(65,243,143,0.42);
			animation: eqLedPulse 2.5s infinite ease-in-out;
		}

		#eq-color-toggle-btn,
		#eq-color-toggle-btn.eq-color-rainbow,
		#eq-color-toggle-btn.eq-color-indiglo {
			min-width: 116px;
			width: 116px;
			justify-content: center;
			border-color: rgba(110,190,255,0.16);
			box-shadow: none;
			filter: none;
			background: linear-gradient(180deg, rgba(22,36,48,0.88), rgba(9,12,16,0.88));
			color: #d8f3ff;
		}

		#eq-color-toggle-btn.eq-color-rainbow .eq-led {
			background: #41f38f;
			box-shadow: 0 0 4px rgba(65,243,143,0.55);
		}

		#eq-color-toggle-btn.eq-color-indiglo .eq-led {
			background: #8be8ff;
			box-shadow: 0 0 4px rgba(139,232,255,0.55);
		}

		@keyframes eqLedPulse {
			0%   { box-shadow: 0 0 5px rgba(65,243,143,0.65); }
			50%  { box-shadow: 0 0 14px rgba(65,243,143,1); }
			100% { box-shadow: 0 0 5px rgba(65,243,143,0.65); }
		}

		.eq-led {
			width: 8px;
			height: 8px;
			border-radius: 50%;
			background: #4b4b4b;
			box-shadow: 0 0 2px rgba(0,0,0,0.6), inset 0 0 2px rgba(255,255,255,0.1);
			transition: all 0.2s ease;
			flex: 0 0 auto;
		}

		.eq-label { letter-spacing: 0.3px; font-weight: 600; }
		.decay-group label,
		.eq-opacity-group label,
		.volume-group label { white-space: nowrap; font-weight: 600; }
		.decay-group input[type="range"],
		.eq-opacity-group input[type="range"],
		.volume-group input[type="range"] {
			width: 120px;
			flex: 0 0 120px;
			margin: 0;
		}

		#decay-value,
		#eq-opacity-value,
		#volume-value {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			min-width: 42px;
			font-variant-numeric: tabular-nums;
		}

		.info-grid {
			position: relative;
			z-index: 1;
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 8px;
			align-items: stretch;
			margin-top: 14px;
		}

		.info-card {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			text-align: center;
			height: 58px;
			padding: 6px 10px;
			border-radius: 10px;
			background: rgba(10, 14, 18, 0.68);
			border: 1px solid rgba(255,255,255,0.06);
			box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 6px 14px rgba(0,0,0,0.35);
			overflow: hidden;
			backdrop-filter: blur(5px);
			-webkit-backdrop-filter: blur(5px);
			transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
		}

		.info-card:hover {
			transform: translateY(-1px);
			border-color: rgba(110,190,255,0.18);
			box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 10px 18px rgba(0,0,0,0.32);
		}

		/* Live DJ active highlight */
		.info-card.live-active {
			border-color: rgba(65,243,143,0.55);
			box-shadow:
				0 0 12px rgba(65,243,143,0.55),
				0 0 26px rgba(65,243,143,0.28),
				inset 0 0 0 1px rgba(255,255,255,0.04);
			animation: liveDjPulse 2.2s ease-in-out infinite;
		}

		.track-kicker.live-active {
			box-shadow:
				inset 0 0 0 1px rgba(255,255,255,0.02),
				0 0 12px rgba(65,243,143,0.35),
				0 0 24px rgba(65,243,143,0.18);
		}

		.track-kicker.live-active .track-kicker-track {
			color: #d7ffea;
			text-shadow:
				0 0 6px rgba(65,243,143,0.55),
				0 0 12px rgba(65,243,143,0.30);
		}

		#stream-toggle-btn.live-active {
			border-color: rgba(65,243,143,0.55);
			box-shadow:
				0 0 16px rgba(65,243,143,0.75),
				0 0 32px rgba(65,243,143,0.35),
				inset 0 0 6px rgba(255,255,255,0.05);
			animation: liveButtonPulse 2.2s ease-in-out infinite;
		}

		@keyframes liveDjPulse {
			0% {
				box-shadow:
					0 0 10px rgba(65,243,143,0.45),
					0 0 20px rgba(65,243,143,0.20),
					inset 0 0 0 1px rgba(255,255,255,0.03);
			}
			50% {
				box-shadow:
					0 0 18px rgba(65,243,143,0.95),
					0 0 40px rgba(65,243,143,0.45),
					inset 0 0 0 1px rgba(255,255,255,0.05);
			}
			100% {
				box-shadow:
					0 0 10px rgba(65,243,143,0.45),
					0 0 20px rgba(65,243,143,0.20),
					inset 0 0 0 1px rgba(255,255,255,0.03);
			}
		}

		@keyframes liveButtonPulse {
			0% {
				box-shadow:
					0 0 10px rgba(65,243,143,0.45),
					0 0 22px rgba(65,243,143,0.22);
			}
			50% {
				box-shadow:
					0 0 22px rgba(65,243,143,1.0),
					0 0 46px rgba(65,243,143,0.50);
			}
			100% {
				box-shadow:
					0 0 10px rgba(65,243,143,0.45),
					0 0 22px rgba(65,243,143,0.22);
			}
		}

		.info-label {
			font-size: 9px;
			letter-spacing: 1.2px;
			text-transform: uppercase;
			opacity: 0.62;
			color: var(--text-dim);
			margin-bottom: 2px;
			white-space: nowrap;
		}

		.info-value {
			font-size: 15px;
			font-weight: 600;
			line-height: 1.1;
			max-width: 100%;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			font-variant-numeric: tabular-nums;
		}

		.info-value.good { color: var(--good); }
		.info-value.warn { color: var(--warn); }
		.info-value.bad  { color: var(--bad); }

		.info-card .health-badge { transform: scale(0.88); }
		.status-card.status-online { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 0 18px rgba(65,243,143,0.10), 0 6px 14px rgba(0,0,0,0.35); }
		.status-card.status-buffering,
		.status-card.status-connecting,
		.status-card.status-reconnecting,
		.status-card.status-checking { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 0 18px rgba(255,213,79,0.10), 0 6px 14px rgba(0,0,0,0.35); }
		.status-card.status-error,
		.status-card.status-offline { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 0 18px rgba(255,105,105,0.10), 0 6px 14px rgba(0,0,0,0.35); }

		.health-badge {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			padding: 8px 12px;
			border-radius: 999px;
			border: 1px solid rgba(255,255,255,0.12);
			background: rgba(255,255,255,0.04);
			font-size: 14px;
			font-weight: 700;
			letter-spacing: 0.2px;
			color: var(--text-main);
		}

		.health-dot {
			width: 10px;
			height: 10px;
			border-radius: 50%;
			background: var(--idle);
			box-shadow: 0 0 8px rgba(255,255,255,0.15);
			flex: 0 0 auto;
		}

		.health-badge.status-idle .health-dot,
		.health-badge.status-stopped .health-dot { background: var(--idle); }
		.health-badge.status-checking .health-dot,
		.health-badge.status-connecting .health-dot,
		.health-badge.status-buffering .health-dot,
		.health-badge.status-reconnecting .health-dot { background: var(--warn); box-shadow: 0 0 10px rgba(255,213,79,0.8); }
		.health-badge.status-online .health-dot { background: var(--good); box-shadow: 0 0 10px rgba(65,243,143,0.85); }
		.health-badge.status-offline .health-dot,
		.health-badge.status-error .health-dot { background: var(--bad); box-shadow: 0 0 10px rgba(255,105,105,0.85); }

		.section-block { margin-top: 14px; text-align: center; }
		.section-heading {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			margin: 0 0 10px;
			height: 42px;
			font-size: 15px;
			font-weight: 800;
			color: #e0e0e0;
			letter-spacing: 1.3px;
			text-align: center;
			text-transform: uppercase;
			border-radius: 12px;
			border-top: 1px solid rgba(255,255,255,0.08);
			border-right: 1px solid rgba(0,0,0,0.6);
			border-bottom: 1px solid rgba(0,0,0,0.8);
			border-left: 1px solid rgba(255,255,255,0.05);
			background:
				linear-gradient(
					to bottom,
					rgba(255,255,255,0.06) 0%,
					rgba(255,255,255,0.02) 8%,
					rgba(0,0,0,0.0) 20%
				),
				linear-gradient(
					to bottom,
					#2a2a2a 0%,
					#1e1e1e 35%,
					#141414 60%,
					#0f0f0f 100%
				);
			box-shadow:
				0 10px 22px rgba(0,0,0,0.28),
				inset 0 1px 0 rgba(255,255,255,0.05),
				inset 0 -1px 0 rgba(0,0,0,0.6);
		}

		.section-heading-embedded {
			position: relative;
			z-index: 1;
			width: 100%;
			margin: 0 0 12px;
		}


		.recent-tracks-panel {
			width: 100%;
			margin: 0;
			padding: 12px 16px;
			border-radius: 14px;
			background: linear-gradient(180deg, rgba(15,16,20,0.88), rgba(8,8,10,0.88));
			border: 1px solid rgba(255,255,255,0.08);
			box-shadow: 0 0 18px rgba(0,160,255,0.10), inset 0 0 0 1px rgba(255,255,255,0.02);
		}

		.recent-tracks-panel::before,
		.recent-tracks-panel::after {
			content: "";
			position: sticky;
			left: 0;
			right: 0;
			display: block;
			height: 14px;
			pointer-events: none;
			z-index: 1;
		}

		.recent-tracks-panel::before {
			top: 0;
			margin-bottom: -14px;
			background: linear-gradient(to bottom, rgba(10,12,16,0.95), rgba(10,12,16,0));
		}

		.recent-tracks-panel::after {
			bottom: 0;
			margin-top: -14px;
			background: linear-gradient(to top, rgba(10,12,16,0.95), rgba(10,12,16,0));
		}

		.recent-tracks-panel::-webkit-scrollbar {
			width: 6px;
		}

		.recent-tracks-panel::-webkit-scrollbar-track {
			background: transparent;
		}

		.recent-tracks-panel::-webkit-scrollbar-thumb {
			background: rgba(98,199,255,0.25);
			border-radius: 6px;
		}

		.recent-tracks-panel::-webkit-scrollbar-thumb:hover {
			background: rgba(98,199,255,0.45);
		}

		.recent-tracks-empty { font-size: 14px; color: var(--text-soft); padding: 12px 10px; text-align: center; }
		.recent-tracks-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
		.recent-track-item { padding: 11px 12px; border-radius: 12px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02); transition: transform 0.18s ease, box-shadow 0.18s ease; }
		.recent-track-item:hover { transform: translateY(-1px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 8px 16px rgba(0,0,0,0.25); }
		.recent-track-title { font-size: 13px; font-weight: 700; line-height: 1.35; color: #f0f6ff; word-break: break-word; }
		.recent-track-meta { margin-top: 5px; font-size: 12px; color: #b8c6d1; line-height: 1.4; }



		.menu-pages-panel {
			width: 100%;
			margin: 0;
			padding: 12px 16px;
			border-radius: 14px;
			background: linear-gradient(180deg, rgba(15,16,20,0.88), rgba(8,8,10,0.88));
			border: 1px solid rgba(255,255,255,0.08);
			box-shadow: 0 0 18px rgba(0,160,255,0.10), inset 0 0 0 1px rgba(255,255,255,0.02);
		}

		.menu-button-bar {
			position: relative;
			z-index: 1;
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 10px;
			margin-bottom: 12px;
		}

		.menu-page-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			min-height: 50px;
			height: 50px;
			padding: 0 16px;
			border-radius: 12px;
			border: 1px solid rgba(110,190,255,0.26);
			background:
				radial-gradient(circle at 50% 0%, rgba(98,199,255,0.12), transparent 55%),
				linear-gradient(180deg, rgba(24,40,54,0.94), rgba(9,12,16,0.92));
			color: #e6f7ff;
			font-size: 13px;
			font-weight: 800;
			letter-spacing: 0.45px;
			line-height: 1;
			text-decoration: none;
			text-align: center;
			box-shadow:
				0 0 14px rgba(0,160,255,0.18),
				0 8px 18px rgba(0,0,0,0.22),
				inset 0 0 8px rgba(255,255,255,0.05);
			transition: all 0.22s ease;
			cursor: pointer;
		}

		.menu-page-btn:hover {
			transform: translateY(-2px);
			border-color: rgba(110,190,255,0.40);
			box-shadow:
				0 0 18px rgba(0,160,255,0.30),
				0 10px 22px rgba(0,0,0,0.26),
				inset 0 0 10px rgba(255,255,255,0.08);
		}

		.menu-page-btn.active {
			border-color: rgba(65,243,143,0.58);
			background:
				radial-gradient(circle at 50% 0%, rgba(65,243,143,0.16), transparent 58%),
				linear-gradient(180deg, rgba(18,44,32,0.94), rgba(9,16,14,0.94));
			box-shadow:
				0 0 16px rgba(65,243,143,0.34),
				0 0 34px rgba(65,243,143,0.14),
				0 10px 22px rgba(0,0,0,0.24),
				inset 0 0 10px rgba(255,255,255,0.05);
			color: #effff6;
		}

		.menu-page-viewport {
			position: relative;
			z-index: 1;
			min-height: 0;
			height: auto;
			overflow: hidden;
			padding: 0;
			border-radius: 12px;
			background: transparent;
			border: 0;
			box-shadow: none;
			transition: height 0.32s ease;
			will-change: height;
		}

		.menu-page {
			display: none;
			height: auto;
		}

		.menu-page.active {
			display: block;
		}

		.menu-page-card {
			height: auto;
			min-height: 0;
			padding: 20px;
			border-radius: 12px;
			border: 1px solid rgba(255,255,255,0.06);
			background:
				radial-gradient(circle at top right, rgba(64,180,255,0.06), transparent 36%),
				linear-gradient(180deg, rgba(18,22,26,0.70), rgba(8,10,14,0.70));
			box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
			text-align: left;
		}

		.menu-page-viewport > .menu-page {
			position: relative;
		}

		.menu-page-title {
			margin: 0 0 10px;
			font-size: 22px;
			font-weight: 800;
			letter-spacing: 0.4px;
			color: #f2f7ff;
			text-shadow: 0 1px 2px rgba(0,0,0,0.9);
		}

		.menu-page-copy {
			margin: 0;
			font-size: 15px;
			line-height: 1.6;
			color: #d9ebff;
		}

		/* === INTERNAL PAGE LINKS === */
		.menu-page-copy a {
			color: #8fd8ff;
			font-weight: 700;
			text-decoration: none;
			padding: 2px 6px;
			border-radius: 6px;
			position: relative;
			transition:
				color 0.2s ease,
				background 0.2s ease,
				box-shadow 0.25s ease,
				transform 0.15s ease;
		}

		.menu-page-copy a:hover {
			color: #ffffff;
			background: rgba(98, 199, 255, 0.18);
			box-shadow:
				0 0 10px rgba(98, 199, 255, 0.45),
				0 0 20px rgba(98, 199, 255, 0.25);
			transform: translateY(-1px);
		}

		.menu-page-copy a:active {
			transform: translateY(0px) scale(0.96);
			box-shadow: 0 0 6px rgba(98, 199, 255, 0.35);
		}

		.menu-page-copy a::after {
			content: "";
			position: absolute;
			left: 8%;
			bottom: 2px;
			width: 0%;
			height: 2px;
			background: linear-gradient(
				90deg,
				rgba(98,199,255,0.0),
				rgba(98,199,255,0.9),
				rgba(98,199,255,0.0)
			);
			transition: width 0.25s ease;
		}

		.menu-page-copy a:hover::after {
			width: 84%;
		}

		.footer-strip { margin-top: 14px; padding: 14px; text-align: center; }
		.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; }
		.logo-row img { transition: filter 0.5s, transform 0.25s ease; transform: scale(1); position: relative; z-index: 1; }
		.logo-row img:hover { transform: scale(1.02); filter: drop-shadow(0 0 5px rgb(255, 166, 0)) drop-shadow(0 0 25px rgb(255,166,0)) drop-shadow(0 0 50px rgb(255,166,0)); }
		.upcoming-text { font-size: 26px; font-weight: 700; color: yellow; line-height: 1.35; }

		.sr-only {
			position: absolute !important;
			width: 1px;
			height: 1px;
			padding: 0;
			margin: -1px;
			overflow: hidden;
			clip: rect(0, 0, 0, 0);
			white-space: nowrap;
			border: 0;
		}

		.album-lightbox {
			position: fixed !important;
			inset: 0;
			display: flex;
			align-items: center;
			justify-content: center;
			background: rgba(0, 0, 0, 0.94);
			backdrop-filter: blur(10px);
			-webkit-backdrop-filter: blur(10px);
			opacity: 0;
			pointer-events: none;
			transition: opacity 0.25s ease;
			z-index: 2147483647;
		}

		.album-lightbox::before {
			content: "";
			position: absolute;
			inset: 0;
			background: radial-gradient(circle, transparent 38%, rgba(0,0,0,0.50) 100%);
			pointer-events: none;
		}

		.album-lightbox.active {
			opacity: 1;
			pointer-events: auto;
		}

		.lightbox-inner {
			position: relative;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 50vw;
			height: 50vh;
			max-width: 50vw;
			max-height: 50vh;
			flex: 0 0 auto;
			transition:
				width 0.25s ease,
				height 0.25s ease,
				max-width 0.25s ease,
				max-height 0.25s ease;
			z-index: 1;
		}

		.album-lightbox img {
			display: block;
			width: 100%;
			height: 100%;
			max-width: 100%;
			max-height: 100%;
			object-fit: contain;
			border-radius: 12px;
			opacity: 0;
			transform: scale(0.96);
			transition: transform 0.25s ease, opacity 0.25s ease, border-radius 0.25s ease;
			cursor: zoom-in;
			background: transparent;
			box-shadow: 0 16px 40px rgba(0,0,0,0.45);
		}

		.album-lightbox.active img {
			opacity: 1;
			transform: scale(1);
		}

		.lightbox-close {
			position: absolute;
			top: -14px;
			right: -14px;
			width: 42px;
			height: 42px;
			border-radius: 50%;
			border: 1px solid rgba(255,255,255,0.35);
			background: rgba(0,0,0,0.75);
			color: #fff;
			font-size: 24px;
			line-height: 1;
			font-weight: 700;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			z-index: 3;
			backdrop-filter: blur(6px);
			-webkit-backdrop-filter: blur(6px);
			box-shadow:
				0 0 12px rgba(0,0,0,0.6),
				0 0 18px rgba(98,199,255,0.25);
			transition: all 0.2s ease;
		}

		.lightbox-close:hover {
			background: rgba(20,20,20,0.82);
			transform: scale(1.08);
			box-shadow:
				0 0 14px rgba(98,199,255,0.6),
				0 0 28px rgba(98,199,255,0.3);
		}

		.lightbox-close:active {
			transform: scale(0.95);
		}

		.album-lightbox.zoom-75 .lightbox-inner {
			width: 75vw;
			height: 75vh;
			max-width: 75vw;
			max-height: 75vh;
		}

		.album-lightbox.zoom-full .lightbox-inner {
			width: 100vw;
			height: 100vh;
			max-width: 100vw;
			max-height: 100vh;
		}

		.album-lightbox.zoom-full img {
			border-radius: 0;
			cursor: zoom-out;
		}

		.album-lightbox.zoom-full .lightbox-close {
			top: 18px;
			right: 22px;
		}

		@media (max-width: 560px) {
			.album-lightbox {
				padding: 0;
			}

			.lightbox-inner {
				width: 78vw;
				height: 78vh;
				max-width: 78vw;
				max-height: 78vh;
			}

			.album-lightbox.zoom-75 .lightbox-inner,
			.album-lightbox.zoom-full .lightbox-inner {
				width: 100vw;
				height: 100vh;
				max-width: 100vw;
				max-height: 100vh;
			}

			.album-lightbox img {
				border-radius: 10px;
			}

			.album-lightbox.zoom-full img {
				border-radius: 0;
			}

			.lightbox-close {
				top: 10px;
				right: 10px;
			}
		}

		@media (max-width: 900px) {
			.now-playing-layout {
			position: relative;
			z-index: 1; gap: 18px; }
			.track-title { font-size: 24px; }
			.info-grid {
			position: relative;
			z-index: 1; grid-template-columns: repeat(3, minmax(0, 1fr)); }
		}

		@media (max-width: 760px) {
			.info-grid {
			position: relative;
			z-index: 1; grid-template-columns: repeat(3, minmax(0, 1fr)); }
			.menu-button-bar { grid-template-columns: repeat(2, 1fr); }
			body { padding-left: 8px; padding-right: 8px; }
			.player-content { padding: 10px; }
			.main-card { padding: 12px; }
			.now-playing-layout {
			position: relative;
			z-index: 1; align-items: flex-start; gap: 14px; }
			.track-art-frame { width: 110px; height: 110px; }
			.track-art { width: 110px; height: 110px; border-radius: 14px; }
			.track-title { font-size: 21px; }
			.track-meta { font-size: 17px; }
			.decay-group input[type="range"], .eq-opacity-group input[type="range"], .volume-group input[type="range"] { width: 90px; }
			.recent-tracks-panel {
				position: relative;
				max-height: 320px;
				overflow-y: auto;
				-webkit-overflow-scrolling: touch;
				scrollbar-gutter: stable;
				mask-image: linear-gradient(to bottom, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
				-webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
			}
			.recent-tracks-list {
				grid-template-columns: 1fr;
				gap: 8px;
			}
			.recent-track-item {
				scroll-snap-align: start;
			}
		}

		@media (max-width: 560px) {
			.now-playing-layout {
			position: relative;
			z-index: 1; flex-direction: column; align-items: center; text-align: center; }
			.menu-button-bar { grid-template-columns: 1fr; }
			.menu-page-viewport { min-height: 0; height: auto; }
			.track-text-wrap { width: 100%; }
			.track-title, .track-meta { text-align: center; }
			.controls-row {
			position: relative;
			z-index: 1;
			flex-wrap: wrap;
			gap: 8px;
			padding: 10px 12px;
			border-radius: 16px;
			overflow: visible; }
			.control-pill, .eq-toggle-btn, .decay-group, .eq-opacity-group, .volume-group { min-width: 100%; border-radius: 10px; border: 1px solid rgba(110,190,255,0.16); box-shadow: 0 0 10px rgba(0,160,255,0.16), inset 0 0 6px rgba(255,255,255,0.04); }
			.controls-row > :first-child,
			.controls-row > :last-child { border-radius: 10px; }
			.controls-row > :last-child { border-right: 1px solid rgba(110,190,255,0.16); }
			.info-grid {
			position: relative;
			z-index: 1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
			.info-card { height: 60px; }
		}
	

.contact-page-body {
	min-height: 100vh;
}

.contact-panel-shell {
	padding: 18px;
}

.contact-page-grid {
	display: grid;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.contact-info-card,
.contact-form-card {
	min-height: 100%;
}

.contact-intro {
	margin-top: 0;
	color: var(--text-soft);
	line-height: 1.6;
}

.contact-info-list {
	display: grid;
	gap: 12px;
	margin: 18px 0 22px;
}

.contact-info-item {
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
}

.contact-info-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-dim);
	margin-bottom: 6px;
}

.contact-info-value {
	color: var(--text-main);
	word-break: break-word;
}

.contact-actions {
	margin-top: 18px;
}

.contact-alert {
	display: grid;
	gap: 6px;
	padding: 14px 16px;
	border-radius: 14px;
	margin-bottom: 16px;
	border: 1px solid rgba(255,255,255,0.08);
}

.contact-alert-success {
	background: rgba(65, 243, 143, 0.12);
	border-color: rgba(65, 243, 143, 0.35);
}

.contact-alert-error {
	background: rgba(255, 105, 105, 0.10);
	border-color: rgba(255, 105, 105, 0.30);
}

.contact-form {
	display: grid;
	gap: 16px;
}

.form-grid.two-col {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.field-wrap {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.field-wrap label {
	font-weight: 700;
	color: var(--text-soft);
}

.field-wrap input,
.field-wrap textarea {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 12px;
	background: rgba(5, 8, 12, 0.75);
	color: var(--text-main);
	padding: 12px 14px;
	margin: 0;
	font: inherit;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	transform: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field-wrap input:focus,
.field-wrap textarea:focus {
	border-color: rgba(98,199,255,0.65);
	box-shadow: 0 0 0 3px rgba(98,199,255,0.16);
	background: rgba(5, 8, 12, 0.9);
	transform: none;
	margin: 0;
}

.field-wrap textarea {
	resize: vertical;
	min-height: 220px;
}

.field-error {
	font-size: 13px;
	color: #ffb0b0;
}

.honeypot-wrap {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.contact-form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.contact-submit-btn {
	min-width: 180px;
	justify-content: center;
}

.contact-form-note {
	margin: 0;
	color: var(--text-dim);
	font-size: 13px;
}

.secondary-link-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

@media (max-width: 860px) {
	.contact-page-grid,
	.form-grid.two-col {
		grid-template-columns: 1fr;
	}
}


.contact-page-shell {
	max-width: 980px;
}

.contact-page-single {
	max-width: 760px;
	margin: 0 auto;
}

.contact-actions-bottom {
	justify-content: flex-start;
}

.is-hidden {
	display: none !important;
}

.contact-submit-btn[disabled] {
	opacity: 0.72;
	cursor: wait;
}

.contact-submit-btn.is-submitting {
	filter: saturate(0.9);
}


/* Contact form containment and extension-overlay suppression */
.menu-page-card.contact-form-card,
.menu-page-card .contact-form {
	position: relative;
	overflow: hidden;
}

.menu-page-card .contact-form,
.menu-page-card .contact-form .form-grid,
.menu-page-card .contact-form .field-wrap {
	position: relative;
}

.menu-page-card .contact-form [data-lastpass-icon],
.menu-page-card .contact-form [data-lastpass-root],
.menu-page-card .contact-form [data-testid="infield-icon"],
.menu-page-card .contact-form .lpfield-icon,
.menu-page-card .contact-form .lastpass-icon,
.menu-page-card .contact-form [data-com-onepassword-filled],
.menu-page-card .contact-form [data-1p-ignore],
.menu-page-card .contact-form [data-bitwarden-watching],
.menu-page-card .contact-form [data-dashlanecreated] {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}


/* Broader password-manager overlay suppression and control protection */
[data-lastpass-icon],
[data-lastpass-root],
[data-testid="infield-icon"],
.lpfield-icon,
.lastpass-icon,
iframe[src*='lastpass'],
iframe[name*='lastpass'],
[data-com-onepassword-filled],
[data-1p-ignore],
[data-bitwarden-watching],
[data-dashlanecreated] {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.eq-opacity-wrap,
.eq-opacity-wrap *,
#eq-opacity,
.eq-controls,
.eq-control-row {
	position: relative;
	z-index: 5;
}

		#stream-toggle-btn { position: relative; z-index: 6; }


/* Cosmetic refresh: section heading panel treatment and no always-on glow on EQ color mode button */
#eq-color-toggle-btn,
#eq-color-toggle-btn:hover,
#eq-color-toggle-btn:focus-visible,
#eq-color-toggle-btn.eq-color-rainbow,
#eq-color-toggle-btn.eq-color-indiglo,
#eq-color-toggle-btn.eq-active,
#eq-color-toggle-btn.eq-active:hover {
	box-shadow: none !important;
	filter: none !important;
}



/* === Contact form focus stability fix === */
.contact-form .form-grid.two-col {
    align-items: start !important;
}

.contact-form .field-wrap {
    align-self: start !important;
    min-width: 0;
}

.contact-form input,
.contact-form textarea {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    margin: 0 !important;
    transform: none !important;
    vertical-align: top;
}

.contact-form input:focus,
.contact-form textarea:focus {
    margin: 0 !important;
    transform: none !important;
    outline: none;
}

/* Keep focus visual without changing geometry */
.contact-form input,
.contact-form textarea {
    border-width: 1px !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-width: 1px !important;
    box-shadow: 0 0 0 2px rgba(80,170,255,0.22) !important;
}

/* Hide injected password-manager in-field overlays inside the contact form */
.contact-form [data-lastpass-icon],
.contact-form [data-testid="infield-icon"],
.contact-form [data-lastpass-root],
.contact-form .lpfield-icon,
.contact-form .lastpass-icon {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* Controls row final alignment patch: remove slider value readouts and center slider groups */
.controls-row {
	align-items: center;
}

.decay-group,
.eq-opacity-group,
.volume-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-align: center;
}

.decay-group,
.eq-opacity-group,
.volume-group {
	flex: 1 1 0;
}

.decay-group label,
.eq-opacity-group label,
.volume-group label {
	flex: 0 0 auto;
	margin: 0;
	text-align: right;
}

.decay-group input[type="range"],
.eq-opacity-group input[type="range"],
.volume-group input[type="range"] {
	flex: 0 1 120px;
	width: 120px;
	max-width: 120px;
	margin: 0;
}

#decay-value,
#eq-opacity-value,
#volume-value {
	display: none !important;
}

@media (max-width: 760px) {
	.decay-group input[type="range"],
	.eq-opacity-group input[type="range"],
	.volume-group input[type="range"] {
		flex-basis: 90px;
		width: 90px;
		max-width: 90px;
	}
}

/* === iPhone/mobile control button uniform sizing patch ===
   Makes Play/Pause, EQ, and Rainbow/Indiglo controls match the full-width
   visual treatment of the slider rows on narrow screens. */
@media (max-width: 560px) {
	.controls-row {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 10px;
		padding: 10px 12px;
	}

	.control-pill,
	.eq-toggle-btn,
	#stream-toggle-btn,
	#eq-color-toggle-btn,
	#eq-color-toggle-btn.eq-color-rainbow,
	#eq-color-toggle-btn.eq-color-indiglo,
	.decay-group,
	.eq-opacity-group,
	.volume-group {
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
		height: 56px;
		min-height: 56px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		border-radius: 10px !important;
	}

	#stream-toggle-btn,
	.eq-toggle-btn,
	#eq-color-toggle-btn {
		padding-left: 18px;
		padding-right: 18px;
	}

	.stream-icon,
	.eq-led {
		flex: 0 0 auto;
	}

	.eq-label,
	#stream-toggle-btn span:not(.stream-icon) {
		flex: 0 0 auto;
		text-align: center;
	}

	.decay-group,
	.eq-opacity-group,
	.volume-group {
		gap: 14px;
	}

	.decay-group label,
	.eq-opacity-group label,
	.volume-group label {
		min-width: 104px;
		text-align: right;
	}

	.decay-group input[type="range"],
	.eq-opacity-group input[type="range"],
	.volume-group input[type="range"] {
		flex: 0 1 180px;
		width: min(180px, 46vw);
		max-width: 46vw;
	}
}
