/**
 * Ferguson portable TV skin.
 */

.retro-tv--ferguson {
	position: relative;
	width: 100%;
	filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.5));
}

.retro-tv--ferguson .retro-tv__antenna {
	position: absolute;
	top: -38px;
	left: 50%;
	width: 110px;
	height: 110px;
	margin-left: -55px;
	border: 3px solid #444;
	border-radius: 50%;
	background: transparent;
	z-index: 0;
}

.retro-tv--ferguson .retro-tv__antenna::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 8px;
	height: 12px;
	margin-left: -4px;
	background: #111;
}

.retro-tv--ferguson .retro-tv__body {
	position: relative;
	background: #111;
	border-radius: 12px;
	padding: 12px;
	z-index: 1;
}

.retro-tv--ferguson .retro-tv__face {
	display: grid;
	grid-template-columns: 1fr 88px;
	gap: 10px;
}

.retro-tv--ferguson .retro-tv__bezel {
	padding: 10px;
	border-radius: 20px;
	background: #e0e0e0;
	box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6), inset 0 -2px 4px rgba(0, 0, 0, 0.15);
}

.retro-tv--ferguson .retro-tv__screen {
	border-radius: 16px;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15);
}

.retro-tv--ferguson .retro-tv__side {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding-top: 4px;
}

.retro-tv--ferguson .retro-tv__power-light {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: radial-gradient(circle, #ff6666, #990000);
	box-shadow: 0 0 6px #ff0000;
}

.retro-tv--ferguson .retro-tv__badge {
	width: 100%;
	padding: 3px 4px;
	background: linear-gradient(180deg, #eee, #ccc);
	border-radius: 2px;
	font-family: Arial, sans-serif;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
	color: #111;
}

.retro-tv--ferguson .retro-tv__speaker {
	flex: 1;
	width: 100%;
	min-height: 80px;
	border-radius: 4px;
	background: repeating-linear-gradient(
		0deg,
		#1a1a1a 0,
		#1a1a1a 3px,
		#333 3px,
		#333 5px
	);
}

.retro-tv--ferguson .retro-tv__dial {
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #444, #111);
	border: 3px solid #aaa;
	box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.retro-tv--ferguson .retro-tv__dial::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 22px;
	margin: -22px 0 0 -2px;
	background: #ccc;
	border-radius: 2px;
	transform-origin: bottom center;
	transform: rotate(20deg);
}

.retro-tv--ferguson .retro-tv__dial-mark {
	position: absolute;
	font-size: 6px;
	color: #ccc;
	font-family: Arial, sans-serif;
}

.retro-tv--ferguson .retro-tv__dial-mark:nth-child(1) { top: 6px; left: 50%; transform: translateX(-50%); }
.retro-tv--ferguson .retro-tv__dial-mark:nth-child(2) { right: 4px; top: 50%; transform: translateY(-50%); }
.retro-tv--ferguson .retro-tv__dial-mark:nth-child(3) { bottom: 6px; left: 50%; transform: translateX(-50%); }

.retro-tv--ferguson .retro-tv__jack {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #222;
	border: 1px solid #555;
}

.retro-tv--ferguson .retro-tv__stand {
	height: 8px;
	margin: 0 20px;
	background: #0a0a0a;
	border-radius: 0 0 6px 6px;
}
