.conv-visor {
	background: #0f172a;
	border-radius: 16px;
	padding: 15px;
	margin-top: 20px;
	border: 2px solid #334155;
	display: none;
}
.conv-screen {
	width: 100%;
	aspect-ratio: 16/9;
	background: #1e293b;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #334155;
}
.conv-screen img { width: 100%; height: 100%; object-fit: cover; }

.risk-panel {
	margin-top: 15px;
	padding: 15px;
	border-radius: 10px;
	background: #1e293b;
	display: none;
}
.risk-score {
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 4px;
	margin-bottom: 10px;
	display: inline-block;
}
.safe { background: #16a34a; color: white; }
.danger { background: #dc2626; color: white; }
.warning { background: #d97706; color: white; }

.domain-tag {
	font-family: 'JetBrains Mono', monospace;
	color: var(--conv-primary);
	background: rgba(168, 29, 58, 0.1);
	padding: 2px 6px;
	border-radius: 4px;
}