/**
 * Philips teletext-era TV skin.
 */

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

.retro-tv--phillips .retro-tv__top-cap {
	height: 14px;
	border-radius: 8px 8px 0 0;
	background: linear-gradient(180deg, #d8d8d8, #a8a8a8);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.retro-tv--phillips .retro-tv__body {
	background: linear-gradient(180deg, #b0b0b0, #888);
	padding: 0 10px 10px;
	border-radius: 0 0 8px 8px;
}

.retro-tv--phillips .retro-tv__face {
	display: grid;
	grid-template-columns: 1fr 72px;
	gap: 8px;
	background: #2a2a2a;
	border-radius: 6px;
	padding: 10px;
}

.retro-tv--phillips .retro-tv__bezel {
	padding: 8px;
	border-radius: 8px;
	background: #1a1a1a;
	box-shadow: inset 0 0 0 2px #444;
}

.retro-tv--phillips .retro-tv__screen {
	border-radius: 6px;
	box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.3);
}

.retro-tv--phillips .retro-tv__side {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.retro-tv--phillips .retro-tv__display {
	height: 14px;
	border-radius: 2px;
	background: linear-gradient(180deg, #3a1010, #1a0808);
	border: 1px solid #555;
	box-shadow: inset 0 0 6px rgba(255, 0, 0, 0.3);
}

.retro-tv--phillips .retro-tv__btn-row,
.retro-tv--phillips .retro-tv__bottom-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3px;
}

.retro-tv--phillips .retro-tv__btn {
	display: block;
	height: 12px;
	border-radius: 2px;
	background: linear-gradient(180deg, #444, #222);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.retro-tv--phillips .retro-tv__brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
}

.retro-tv--phillips .retro-tv__brand {
	font-family: Arial, sans-serif;
	font-size: 8px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.06em;
}

.retro-tv--phillips .retro-tv__rgb {
	display: flex;
	gap: 2px;
}

.retro-tv--phillips .retro-tv__rgb i {
	display: block;
	width: 6px;
	height: 6px;
}

.retro-tv--phillips .retro-tv__rgb .r { background: #f00; }
.retro-tv--phillips .retro-tv__rgb .g { background: #0f0; }
.retro-tv--phillips .retro-tv__rgb .b { background: #00f; }

.retro-tv--phillips .retro-tv__speaker {
	flex: 1;
	min-height: 70px;
	border-radius: 3px;
	background: repeating-linear-gradient(0deg, #111 0, #111 2px, #333 2px, #333 4px);
}

.retro-tv--phillips .retro-tv__teletext {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 12px;
	font-family: Arial, sans-serif;
	font-size: 8px;
	font-weight: 700;
	color: #fff;
	border: 1px solid #666;
	border-radius: 1px;
}

.retro-tv--phillips .retro-tv__feet {
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
	margin-top: 4px;
}

.retro-tv--phillips .retro-tv__feet span {
	width: 28px;
	height: 6px;
	background: #aaa;
	border-radius: 0 0 3px 3px;
}
