div .pell {
	font-size: 16px;
	border: 1px solid var(--black);
}
.pell ul {
	padding-left: 20px;
	list-style-type: disc;
}
.pell .pell-button-custom-name:hover {
	opacity: 0.9;
	cursor: pointer;
	background: #ccc;
	border-radius: 2px;
}
.pell p {
	margin-top: 0;
	margin-bottom: 10px;
}
.pell blockquote {
	margin: 4px 0;
	padding: 4px 8px;
	background: #ededee;
	border-left: 3px solid #cbd5e1;
	border-radius: 4px;
	color: #303640;
	font-size: 0.95em;
	line-height: 1.5;
	overflow-wrap: anywhere;
}
.pell-content-custom-name {
	min-height: 180px;
	padding: 5px 10px;
}
.pell-actionbar-custom-name {
	padding: 5px;
	border-bottom: 1px solid #ccc;
}
.security-report-professional {
	margin: 2rem 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.security-status-header {
	background: #ffffff;
	border: 1px solid #e1e5e9;
	border-radius: 8px;
	padding: 2rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.security-status-header .header-content {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.security-status-header .status-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.security-status-header .status-icon.safe {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
	border: 2px solid #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1), 0 8px 25px rgba(16, 185, 129, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	position: relative;
	overflow: hidden;
	animation: safePulse 3s ease-in-out infinite;
}

.security-status-header .status-icon.safe::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	animation: safeShimmer 4s ease-in-out infinite;
}

.security-status-header .status-icon.safe::after {
	content: "";
	position: absolute;
	inset: 3px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 60%);
	border-radius: 50%;
	pointer-events: none;
}

@keyframes safePulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1), 0 8px 25px rgba(16, 185, 129, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
		transform: scale(1);
	}

	50% {
		box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15), 0 12px 35px rgba(16, 185, 129, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
		transform: scale(1.02);
	}
}

@keyframes safeShimmer {
	0% {
		transform: translateX(-200%) translateY(-200%) rotate(45deg);
	}

	50% {
		transform: translateX(-200%) translateY(-200%) rotate(45deg);
	}

	100% {
		transform: translateX(200%) translateY(200%) rotate(45deg);
	}
}

.security-status-header .status-icon.risk {
	background: linear-gradient(135deg, #fef2f2 0%, #fecaca 50%, #fca5a5 100%);
	border: 2px solid #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1), 0 8px 25px rgba(239, 68, 68, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	position: relative;
	overflow: hidden;
	animation: riskPulse 2s ease-in-out infinite;
}

.security-status-header .status-icon.risk::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	animation: riskShimmer 3s ease-in-out infinite;
}

.security-status-header .status-icon.risk::after {
	content: "";
	position: absolute;
	inset: 3px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 60%);
	border-radius: 50%;
	pointer-events: none;
}

@keyframes riskPulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1), 0 8px 25px rgba(239, 68, 68, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
		transform: scale(1);
	}

	50% {
		box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.2), 0 12px 35px rgba(239, 68, 68, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6);
		transform: scale(1.03);
	}
}

@keyframes riskShimmer {
	0% {
		transform: translateX(-200%) translateY(-200%) rotate(45deg);
	}

	50% {
		transform: translateX(-200%) translateY(-200%) rotate(45deg);
	}

	100% {
		transform: translateX(200%) translateY(200%) rotate(45deg);
	}
}

.security-status-header .status-info {
	flex: 1;
}

.security-status-header .status-title-row {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.security-status-header .status-title {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 700;
	color: #111827;
}

.security-status-header .status-badge {
	padding: 0.25rem 0.75rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.security-status-header .status-badge.verified {
	background: #f0f9f4;
	color: #16a34a;
}

.security-status-header .status-badge.trusted {
	background: #fefbf3;
	color: #d97706;
}

.security-status-header .status-badge.risk {
	background: #fef2f2;
	color: #dc2626;
}

.security-status-header .status-metrics {
	display: flex;
	align-items: center;
	gap: 2rem;
	color: #6b7280;
	font-size: 0.9rem;
}

.security-status-header .trust-score {
	font-weight: 600;
	color: #111827;
	font-size: 1.5rem;
}

.security-advisory {
	margin-top: 1.5rem;
	padding: 1rem;
	background: #fefbf3;
	border-left: 3px solid #f59e0b;
	border-radius: 4px;
}

.security-advisory.risk {
	border-left-color: #f59e0b;
}

.security-advisory.trust {
	border-left-color: #d97706;
}

.security-advisory p {
	margin: 0;
	color: #92400e;
	font-size: 0.9rem;
	line-height: 1.5;
}

.domain-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.info-panel {
	background: #ffffff;
	border: 1px solid #e1e5e9;
	border-radius: 8px;
	padding: 1.5rem;
}

.info-panel h3 {
	margin: 0 0 1.25rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.detail-grid {
	display: grid;
	gap: 1rem;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f3f4f6;
}

.detail-item:last-child {
	border-bottom: none;
}

.detail-item .label {
	color: #6b7280;
	font-size: 0.9rem;
}

.detail-item .value {
	font-weight: 500;
	color: #111827;
	text-align: right;
}

.detail-item .value.mono {
	font-family: "SF Mono", "Monaco", "Consolas", monospace;
	font-size: 0.85rem;
}

.detail-item .sub-value {
	font-size: 0.8rem;
	color: #6b7280;
}

.status-tag {
	background: #fef3c7;
	color: #92400e;
	padding: 0.125rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 500;
	margin-top: 0.25rem;
	display: inline-block;
}

.status-tag.private {
	background: #f3f4f6;
	color: #6b7280;
}

.content-analysis {
	background: #ffffff;
	border: 1px solid #e1e5e9;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.content-analysis h3 {
	margin: 0 0 1rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.content-box {
	border-radius: 6px;
	padding: 1rem;
}

.content-box h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
}

.content-box p {
	margin: 0;
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.6;
}

.original-content-note {
	margin-bottom: 0.75rem;
	padding: 0.5rem 0.75rem;
	background: #f1f5f9;
	border-radius: 4px;
	border-left: 3px solid #3b82f6;
}

.original-content-note small {
	color: #475569;
	font-weight: 500;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.source-content {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 1rem;
	margin: 0;
	font-style: normal;
	position: relative;
}

.source-content h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
	font-style: normal;
}

.source-content p {
	margin: 0;
	color: #374151;
	font-size: 0.9rem;
	line-height: 1.6;
	font-style: normal;
}

.content-classifications {
	background: #ffffff;
	border: 1px solid #e1e5e9;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.content-classifications h3 {
	margin: 0 0 1rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tags-container {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tag {
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid;
}

.tag.content {
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	color: #475569;
	border-color: #cbd5e1;
	font-weight: 500;
}

.tag.content:nth-child(2n) {
	background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
	color: #7c3aed;
	border-color: #c4b5fd;
}

.tag.content:nth-child(3n) {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	color: #0369a1;
	border-color: #7dd3fc;
}

.tag.content:nth-child(4n) {
	background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
	color: #a16207;
	border-color: #fde047;
}

.tag.content:nth-child(5n) {
	background: linear-gradient(135deg, #fff1f2 0%, #fce7e7 100%);
	color: #be185d;
	border-color: #f9a8d4;
}

.tag.content:nth-child(6n) {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	color: #15803d;
	border-color: #86efac;
}

.tag.security-risk {
	background: #fef2f2;
	color: #dc2626;
	border-color: #fecaca;
}

.tag.security-neutral {
	background: #f8fafc;
	color: #475569;
	border-color: #e2e8f0;
}

.security-analysis {
	background: #ffffff;
	border: 1px solid #e1e5e9;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.security-analysis h3 {
	margin: 0 0 1rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.detection-signatures {
	margin-bottom: 1.5rem;
}

.detection-signatures.no-bottom {
	margin-bottom: 0;
}

.detection-signatures h4 {
	margin: 0 0 0.75rem 0;
	font-size: 0.95rem;
	font-weight: 500;
	color: #374151;
}

.signatures-container {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.signature-tag {
	padding: 0.375rem 0.75rem;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid;
}

.signature-explanation {
	margin: 0.75rem 0 0 0;
	font-size: 0.8rem;
	color: #6b7280;
	font-style: italic;
}

.fingerprint-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.fingerprint-card {
	background: #f9fafb;
	border-radius: 6px;
	padding: 1rem;
	border: 1px solid #f3f4f6;
}

.fingerprint-card .card-label {
	color: #6b7280;
	font-size: 0.8rem;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.fingerprint-card .fingerprint-link {
	font-family: "SF Mono", "Monaco", "Consolas", monospace;
	font-size: 0.8rem;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
	display: block;
	word-break: break-all;
}

.fingerprint-card .card-description {
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: #6b7280;
}

.trust-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.report-footer {
	padding: 1rem;
	border-radius: 6px;
	text-align: center;
}

.report-footer p {
	margin: 0;
	font-size: 0.8rem;
	color: #6b7280;
}

.description-note {
	background: #f8fafc;
	border-radius: 6px;
	padding: 1.5rem;
	margin-top: 1.5rem;
	border-left: 3px solid #6b7280;
}

.description-note div {
	color: #374151;
	line-height: 1.6;
	font-size: 0.95rem;
}

.company-information {
	background: #ffffff;
	border-radius: 8px;
	padding: 2rem;
	margin-top: 1.5rem;
	border: 1px solid #e1e5e9;
}

.company-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.company-icon {
	background: #f3f4f6;
	color: #6b7280;
	padding: 0.75rem;
	border-radius: 8px;
}

.company-title {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
	color: #111827;
}

.company-description {
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.company-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
}

.company-item {
	background: #f9fafb;
	border-radius: 6px;
	padding: 1rem;
	border: 1px solid #f3f4f6;
}

.company-item h4 {
	margin: 0 0 0.5rem 0;
	font-weight: 600;
	color: #111827;
	font-size: 0.95rem;
}

.company-item p {
	margin: 0;
	color: #6b7280;
	font-size: 0.85rem;
	line-height: 1.5;
}

/* Modern Screenshot Viewer 2025 - Compact Version */
.screenshot-viewer {
	background: #ffffff;
	border-radius: 12px;
	padding: 0;
	margin: 2rem 0;
	border: 1px solid #e1e5e9;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-viewer:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.screenshot-header {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 1.5rem 2rem;
	border-bottom: 1px solid #e2e8f0;
}

.screenshot-header h3 {
	margin: 0 0 0.75rem 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: #0f172a;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.screenshot-meta {
	display: flex;
	align-items: center;
	gap: 2rem;
	color: #64748b;
	font-size: 0.875rem;
	flex-wrap: wrap;
}

.screenshot-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.screenshot-content {
	display: flex;
	align-items: stretch;
	min-height: 180px;
}

.screenshot-image-section {
	flex: 0 0 50%;
	position: relative;
	background: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.screenshot-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: zoom-in;
}

.screenshot-image:hover {
	transform: scale(1.05);
}

.screenshot-info-section {
	flex: 1;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.screenshot-main-info {
	margin-bottom: 2rem;
}

.screenshot-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.screenshot-description {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.screenshot-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.screenshot-trust-badge.verified {
	color: #00cedf;
	border: 1px solid #00cedf;
}

.screenshot-trust-badge.trusted {
	color: #00cedf;
	border: 1px solid #00cedf;
}

.screenshot-trust-badge.suspicious {
	color: #d97706;
	border: 1px solid #d97706;
}

.screenshot-trust-badge.risky {
	color: #cc2565;
	border: 1px solid #cc2565;
}
.screenshot-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1.5rem;
}

.screenshot-metric {
	text-align: center;
}

.screenshot-metric-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.25rem;
}

.screenshot-metric-label {
	font-size: 0.75rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
}

.screenshot-actions-compact {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: flex;
	gap: 0.5rem;
	opacity: 0;
	transform: translateY(-4px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10;
}

.screenshot-image-section:hover .screenshot-actions-compact {
	opacity: 1;
	transform: translateY(0);
}

.screenshot-action-btn-compact {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 6px;
	padding: 0.375rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.screenshot-action-btn-compact:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
	.screenshot-content {
		flex-direction: column;
		min-height: auto;
	}

	.screenshot-image-section {
		flex: 0 0 200px;
	}

	.screenshot-info-section {
		padding: 1.5rem;
	}

	.screenshot-header {
		padding: 1rem 1.5rem;
	}

	.screenshot-meta {
		gap: 1rem;
	}

	.screenshot-metrics {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.screenshot-actions-compact {
		top: 0.75rem;
		right: 0.75rem;
	}
}

/* Remove old styles that are no longer needed */
.screenshot-device-frame,
.screenshot-device-header,
.screenshot-device-dots,
.screenshot-device-dot,
.screenshot-device-url,
.screenshot-image-wrapper,
.screenshot-overlay,
.screenshot-container,
.screenshot-trust-indicator,
.screenshot-actions,
.screenshot-action-btn,
.screenshot-loading,
.screenshot-skeleton,
.screenshot-info-panel,
.screenshot-info-grid,
.screenshot-info-item {
	display: none !important;
}

/* Fullscreen Modal */
.screenshot-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
}

.screenshot-modal.active {
	opacity: 1;
	visibility: visible;
}

.screenshot-modal-content {
	max-width: 95vw;
	max-height: 95vh;
	position: relative;
	transform: scale(0.9);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-modal.active .screenshot-modal-content {
	transform: scale(1);
}

.screenshot-modal-image {
	max-width: 100%;
	max-height: 100%;
	border-radius: 8px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.screenshot-modal-close {
	position: absolute;
	top: -3rem;
	right: 0;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.screenshot-modal-close:hover {
	background: rgba(255, 255, 255, 1);
	transform: scale(1.1);
}

.security-status-header .status-icon {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.security-status-header .status-icon:hover {
	transform: translateY(-2px) scale(1.05);
	filter: brightness(1.1);
}

.security-status-header .status-icon.safe:hover {
	animation-play-state: paused;
	box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2), 0 15px 40px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.security-status-header .status-icon.risk:hover {
	animation-play-state: paused;
	box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.25), 0 15px 40px rgba(239, 68, 68, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Enhanced SVG icon styling within status icons */
.security-status-header .status-icon svg {
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
	transition: all 0.3s ease;
}

.security-status-header .status-icon:hover svg {
	transform: scale(1.1);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Responsive improvements */
@media (max-width: 768px) {
	.security-status-header .status-icon.safe,
	.security-status-header .status-icon.risk {
		width: 56px;
		height: 56px;
		animation-duration: 4s;
	}

	.security-status-header .status-icon svg {
		width: 28px;
		height: 28px;
	}
}

@media (max-width: 480px) {
	.security-status-header .status-icon.safe,
	.security-status-header .status-icon.risk {
		width: 48px;
		height: 48px;
	}

	.security-status-header .status-icon svg {
		width: 24px;
		height: 24px;
	}
}

/* Mobile-specific improvements for security status header */
@media (max-width: 768px) {
	.security-report-professional {
		margin: 1rem 0;
	}

	.security-status-header {
		padding: 1.5rem;
		margin-bottom: 1rem;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
		border: 1px solid #f0f0f0;
	}

	.security-status-header .header-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(10px);
		border-radius: 12px;
		padding: 1rem;
	}

	.security-status-header .status-icon.safe,
	.security-status-header .status-icon.risk {
		width: 56px;
		height: 56px;
		animation-duration: 4s;
		margin: 0 auto;
	}

	.security-status-header .status-icon svg {
		width: 28px;
		height: 28px;
	}

	.security-status-header .status-info {
		text-align: center;
	}

	.security-status-header .status-title-row {
		flex-direction: column;
		gap: 0.5rem;
		margin-bottom: 1rem;
		align-items: center;
	}

	.security-status-header .status-title {
		font-size: 1.5rem;
		line-height: 1.3;
	}

	.security-status-header .status-badge {
		font-size: 0.7rem;
		padding: 0.375rem 0.875rem;
	}

	.security-status-header .status-metrics {
		flex-direction: column;
		gap: 0.75rem;
		align-items: center;
	}

	.security-status-header .trust-score {
		font-size: 1.25rem;
	}

	.security-advisory {
		margin-top: 1rem;
		padding: 1rem;
		border-radius: 8px;
	}

	.security-advisory p {
		font-size: 0.85rem;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.security-status-header {
		padding: 1rem;
		border-radius: 12px;
	}

	.security-status-header .status-icon.safe,
	.security-status-header .status-icon.risk {
		width: 48px;
		height: 48px;
	}

	.security-status-header .status-icon svg {
		width: 24px;
		height: 24px;
	}

	.security-status-header .status-title {
		font-size: 1.25rem;
	}

	.security-status-header .status-badge {
		font-size: 0.65rem;
		padding: 0.25rem 0.75rem;
	}

	.security-status-header .trust-score {
		font-size: 1.125rem;
	}

	.security-status-header .status-metrics {
		font-size: 0.8rem;
	}

	.security-advisory {
		padding: 0.875rem;
		margin-top: 0.875rem;
	}

	.security-advisory p {
		font-size: 0.8rem;
	}
}

/* Enhanced mobile card styling */
@media (max-width: 768px) {
	.security-report-professional {
		margin: 1rem 0;
	}

	.security-status-header {
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
		border: 1px solid #f0f0f0;
	}

	.security-status-header .header-content {
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(10px);
		border-radius: 12px;
		padding: 1rem;
	}
}

/* Modern WHOIS Styles */
.whois-modern-container {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e1e5e9;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	margin: 2rem 0;
}

.whois-header {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 1.5rem 2rem;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.whois-header-content {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.whois-icon {
	background: #ffffff;
	border-radius: 8px;
	padding: 0.75rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.whois-header-text h3 {
	margin: 0 0 0.25rem 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
}

.whois-header-text p {
	margin: 0;
	color: #64748b;
	font-size: 0.9rem;
}

.whois-actions {
	display: flex;
	gap: 0.5rem;
}

.whois-action-btn {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 0.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #64748b;
}

.whois-action-btn:hover {
	background: #f8fafc;
	color: #3b82f6;
	border-color: #3b82f6;
}

.whois-action-btn:active {
	transform: scale(0.95);
}

.whois-toggle-view-btn:hover {
	background: #f0f9ff;
	color: #2563eb;
	border-color: #2563eb;
}

.whois-content {
	padding: 0;
}

.whois-view-toggle {
	display: flex;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}

.whois-toggle-btn {
	flex: 1;
	background: transparent;
	border: none;
	padding: 1rem 1.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #64748b;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.whois-toggle-btn.active {
	background: #ffffff;
	color: #3b82f6;
	border-bottom: 2px solid #3b82f6;
}

.whois-toggle-btn:hover:not(.active) {
	background: #f1f5f9;
	color: #475569;
}

.whois-structured {
	padding: 2rem;
}

.whois-sections {
	display: grid;
	gap: 1.5rem;
}

.whois-section {
	background: #f9fafb;
	border-radius: 8px;
	border: 1px solid #f3f4f6;
	overflow: hidden;
}

.whois-section-header {
	background: #ffffff;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #f3f4f6;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.whois-section-header h4 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
}

.whois-section-content {
	padding: 1.5rem;
}

.whois-data-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f3f4f6;
}

.whois-data-item:last-child {
	border-bottom: none;
}

.whois-key {
	color: #6b7280;
	font-size: 0.9rem;
	font-weight: 500;
	flex: 0 0 40%;
	text-transform: capitalize;
}

.whois-value {
	color: #111827;
	font-weight: 500;
	text-align: right;
	flex: 1;
	word-break: break-word;
}

.whois-email {
	color: #3b82f6;
	text-decoration: none;
}

.whois-email:hover {
	text-decoration: underline;
}

.whois-url {
	color: #3b82f6;
	text-decoration: none;
}

.whois-url:hover {
	text-decoration: underline;
}

.whois-date {
	color: #059669;
	font-family: "SF Mono", "Monaco", "Consolas", monospace;
	font-size: 0.85rem;
}

.whois-raw {
	padding: 0;
}

.whois-raw-container {
	background: #1e293b;
	color: #e2e8f0;
	padding: 2rem;
	overflow-x: auto;
}

.whois-raw-text {
	font-family: "SF Mono", "Monaco", "Consolas", monospace;
	font-size: 0.85rem;
	line-height: 1.6;
	margin: 0;
	white-space: pre-wrap;
	word-break: break-word;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.whois-header {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}

	.whois-header-content {
		flex-direction: column;
		text-align: center;
		gap: 0.75rem;
	}

	.whois-structured {
		padding: 1rem;
	}

	.whois-data-item {
		flex-direction: column;
		gap: 0.5rem;
		align-items: flex-start;
	}

	.whois-key {
		flex: none;
	}

	.whois-value {
		text-align: left;
	}

	.whois-toggle-btn {
		padding: 0.75rem 1rem;
		font-size: 0.85rem;
	}

	.whois-raw-container {
		padding: 1rem;
	}

	.whois-raw-text {
		font-size: 0.8rem;
	}
}

/* Featured Comments Preview Styles */
.featured-comments-preview {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e1e5e9;
	margin: 3rem 0;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.featured-comments-header {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 1.5rem 2rem;
	border-bottom: 1px solid #e2e8f0;
}

.featured-comments-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.featured-comments-title h3 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
}

.featured-comments-info {
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.featured-comments-info:hover {
	opacity: 1;
}

.featured-comments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 0;
}

.featured-comment-card {
	padding: 2rem;
	border-right: 1px solid #f3f4f6;
	transition: background-color 0.2s ease;
}

.featured-comment-card:last-child {
	border-right: none;
}

.featured-comment-card:hover {
	background: #f9fafb;
}

.featured-comment-header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.featured-comment-meta {
	flex: 1;
}

.featured-comment-name {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.25rem;
}

.featured-comment-name .flag-icon {
	font-size: 1rem;
}

.featured-comment-date {
	color: #6b7280;
	font-size: 0.875rem;
}

.featured-comment-rating {
	flex-shrink: 0;
}

.featured-comment-text {
	color: #374151;
	line-height: 1.6;
	font-size: 0.95rem;
}

.featured-comment-see-more {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
	margin-left: 0.5rem;
}

.featured-comment-see-more:hover {
	text-decoration: underline;
}

.featured-comments-footer {
	background: #f8fafc;
	padding: 1.5rem 2rem;
	text-align: center;
	border-top: 1px solid #f3f4f6;
}

/* Mobile responsive for featured comments */
@media (max-width: 768px) {
	.featured-comments-preview {
		margin: 2rem 0;
	}

	.featured-comments-header {
		padding: 1rem 1.5rem;
	}

	.featured-comments-title h3 {
		font-size: 1.25rem;
	}

	.featured-comments-grid {
		grid-template-columns: 1fr;
	}

	.featured-comment-card {
		padding: 1.5rem;
		border-right: none;
		border-bottom: 1px solid #f3f4f6;
	}

	.featured-comment-card:last-child {
		border-bottom: none;
	}

	.featured-comment-header {
		gap: 0.75rem;
	}

	.featured-comments-footer {
		padding: 1rem 1.5rem;
	}
}

/* Review Content Styles */
.review {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e1e5e9;
	padding: 2rem;
	margin: 2rem 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.7;
}

.review h2 {
	color: #0f172a;
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1.5rem 0;
	line-height: 1.3;
	border-bottom: 2px solid #f1f5f9;
	padding-bottom: 1rem;
}

.review h3 {
	color: #111827;
	font-size: 1.25rem;
	font-weight: 600;
	margin: 2rem 0 1rem 0;
	line-height: 1.4;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.review h3:first-child {
	margin-top: 0;
}

.review p {
	color: #374151;
	font-size: 0.95rem;
	margin: 0 0 1.25rem 0;
	line-height: 1.7;
}

.review p:last-child {
	margin-bottom: 0;
}

.review table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review table th {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	color: #0f172a;
	font-weight: 600;
	padding: 1rem 1.5rem;
	text-align: left;
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.9rem;
}

.review table td {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #f3f4f6;
	color: #374151;
	font-size: 0.9rem;
}

.review table tr:last-child td {
	border-bottom: none;
}

.review table tr:hover {
	background: #f9fafb;
}

.review ul,
.review ol {
	margin: 1.25rem 0;
	padding-left: 0;
	list-style: none;
}

.review ul li,
.review ol li {
	position: relative;
	padding: 0.5rem 0 0.5rem 2rem;
	color: #374151;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.review ul li:last-child,
.review ol li:last-child {
	margin-bottom: 0;
}

.review ul li::before {
	content: "";
	position: absolute;
	left: 0.5rem;
	top: 1rem;
	width: 6px;
	height: 6px;
	background: #3b82f6;
	border-radius: 50%;
}

.review ol {
	counter-reset: review-counter;
}

.review ol li {
	counter-increment: review-counter;
}

.review ol li::before {
	content: counter(review-counter);
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 1.5rem;
	height: 1.5rem;
	background: #e4e4e4;
	color: #414141;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 600;
}

.review ul ul,
.review ol ul,
.review ul ol,
.review ol ol {
	margin: 0.5rem 0;
	padding-left: 1.5rem;
}

.review ul ul li::before {
	background: #6b7280;
	width: 4px;
	height: 4px;
}

.review ol ol li::before {
	background: #6b7280;
	font-size: 0.7rem;
}

.review strong {
	color: #111827;
	font-weight: 600;
}

.review em {
	color: #6b7280;
	font-style: italic;
}

.review a {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
}

.review a:hover {
	text-decoration: underline;
	color: #2563eb;
}

.review code {
	background: #f1f5f9;
	color: #374151;
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	font-family: "SF Mono", "Monaco", "Consolas", monospace;
	font-size: 0.85rem;
}

.review blockquote {
	background: #f8fafc;
	border-left: 4px solid #3b82f6;
	margin: 1.5rem 0;
	padding: 1rem 1.5rem;
	border-radius: 0 8px 8px 0;
}

.review blockquote p {
	margin: 0;
	color: #475569;
	font-style: italic;
}

/* Mobile responsive for review content */
@media (max-width: 768px) {
	.review {
		padding: 1.5rem;
		margin: 1rem 0;
	}

	.review h2 {
		font-size: 1.5rem;
	}

	.review h3 {
		font-size: 1.125rem;
	}

	.review table {
		margin: 1rem 0;
	}

	.review table th,
	.review table td {
		padding: 0.75rem 1rem;
		font-size: 0.85rem;
	}

	.review ul li,
	.review ol li {
		padding-left: 1.5rem;
		font-size: 0.9rem;
	}

	.review ol li::before {
		width: 1.25rem;
		height: 1.25rem;
		font-size: 0.7rem;
	}
}
