/* ============================================================
   ScamCheckr Warning theme — main stylesheet
   Palette: high-contrast amber yellow + jet black (warning sign identity)
   Verdict-first consumer-protection layout.
   Mobile-first, no jQuery, no frameworks.
   ============================================================ */

:root {
	--bg:        #0a0a0a;   /* near-black header — warning-sign contrast */
	--bg-alt:    #1c1c1c;
	--surface:   #ffffff;
	--surface-2: #fffbeb;   /* warm caution-tape cream */
	--border:    #f3e8c2;
	--text:      #111111;
	--muted:     #6b6256;
	--primary:   #f59e0b;   /* amber/yellow — warning CTA */
	--primary-d: #b45309;
	--safe:      #16a34a;
	--suspicious:#f59e0b;
	--malicious: #b91c1c;
	--unknown:   #6b6256;
	--radius:    6px;       /* hard edges — warning feel */
	--shadow:    0 1px 2px rgba(0,0,0,.08), 0 4px 14px rgba(0,0,0,.12);
	--maxw:      1120px;
}

/* ------ reset / base ------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--surface-2);
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-d); text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.dct-container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.dct-muted { color: var(--muted); }
.dct-muted-sm { font-size: .9rem; }
.dct-link { font-weight: 500; }

/* ------ header ------ */
.dct-header {
	background: var(--bg);
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 50;
}
.dct-header-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 16px;
	flex-wrap: wrap;
}
.dct-logo { color: #fff; font-size: 1.1rem; }
.dct-logo:hover { text-decoration: none; color: #fff; opacity: .9; }
.dct-nav { flex: 1; }
.dct-menu {
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}
.dct-menu a {
	color: #cbd5e1;
	font-size: .95rem;
}
.dct-menu a:hover { color: #fff; text-decoration: none; }

/* ------ mini search (header) ------ */
.dct-mini-search {
	display: flex;
	align-items: stretch;
	background: rgba(255,255,255,.08);
	border-radius: 8px;
	overflow: hidden;
}
.dct-mini-search input {
	border: 0;
	padding: 8px 12px;
	background: transparent;
	color: #fff;
	font-size: .95rem;
	min-width: 180px;
	outline: none;
}
.dct-mini-search input::placeholder { color: #94a3b8; }
.dct-mini-search button {
	border: 0;
	background: var(--primary);
	color: #fff;
	padding: 0 14px;
	cursor: pointer;
	font-size: 1rem;
}
.dct-mini-search button:hover { background: var(--primary-d); }
.dct-mini-search-lg {
	background: var(--surface);
	border: 1px solid var(--border);
	max-width: 480px;
	margin-top: 14px;
}
.dct-mini-search-lg input {
	color: var(--text);
	font-size: 1rem;
	padding: 12px 14px;
}
.dct-mini-search-lg input::placeholder { color: var(--muted); }

/* ------ hero ------ */
.dct-hero {
	background: linear-gradient(135deg, #0a0a0a 0%, #f59e0b 200%);
	background-image:
		linear-gradient(135deg, rgba(10,10,10,.95) 0%, rgba(28,28,28,.92) 100%),
		repeating-linear-gradient(45deg, #f59e0b 0 24px, #0a0a0a 24px 48px);
	color: #fff;
	padding: 64px 0 48px;
}
.dct-hero-title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	margin-bottom: 14px;
	max-width: 800px;
}
.dct-hero-sub {
	color: #cbd5e1;
	font-size: 1.05rem;
	max-width: 720px;
	margin-bottom: 28px;
}
.dct-hero-search {
	display: flex;
	gap: 8px;
	max-width: 580px;
	background: var(--surface);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.dct-hero-search input {
	flex: 1;
	border: 0;
	padding: 16px 18px;
	font-size: 1.05rem;
	color: var(--text);
	outline: none;
}
.dct-hero-search button {
	border: 0;
	background: var(--primary);
	color: #fff;
	padding: 0 22px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
}
.dct-hero-search button:hover { background: var(--primary-d); }

.dct-notice {
	display: inline-block;
	margin-top: 14px;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: .95rem;
}
.dct-notice-info {
	background: rgba(37,99,235,.15);
	color: #bfdbfe;
	border: 1px solid rgba(37,99,235,.3);
}

.dct-hero-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 36px;
	max-width: 720px;
}
.dct-hero-stats > div {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--radius);
	padding: 16px;
}
.dct-hero-stats strong {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
}
.dct-hero-stats span {
	display: block;
	font-size: .85rem;
	color: #94a3b8;
	margin-top: 2px;
}
.dct-hero-stats .dct-stat-safe strong       { color: #4ade80; }
.dct-hero-stats .dct-stat-suspicious strong { color: #fbbf24; }
.dct-hero-stats .dct-stat-malicious strong  { color: #f87171; }

/* ------ sections ------ */
.dct-section { padding: 56px 0; }
.dct-section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dct-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 14px;
	flex-wrap: wrap;
}
.dct-section-head h2 { margin: 0; }

/* ------ cards ------ */
.dct-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.dct-card {
	display: block;
	background: var(--surface);
	border: 1px solid var(--border);
	border-left: 4px solid var(--unknown);
	border-radius: var(--radius);
	padding: 18px;
	color: var(--text);
	box-shadow: var(--shadow);
	transition: transform .15s ease, box-shadow .15s ease;
}
.dct-card:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(15,23,42,.08);
}
.dct-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}
.dct-card-head h3 {
	font-size: 1.05rem;
	margin: 0;
	word-break: break-all;
}
.dct-card-score {
	font-weight: 700;
	margin-bottom: 8px;
}
.dct-card-score .dct-score-num { font-size: 1.5rem; }
.dct-card-score .dct-score-out { color: var(--muted); font-weight: 400; font-size: .9rem; }
.dct-card-meta {
	display: flex;
	gap: 12px;
	font-size: .85rem;
	color: var(--muted);
	flex-wrap: wrap;
}
.dct-verdict-safe       { border-left-color: var(--safe); }
.dct-verdict-suspicious { border-left-color: var(--suspicious); }
.dct-verdict-malicious  { border-left-color: var(--malicious); }
.dct-verdict-unknown    { border-left-color: var(--unknown); }

.dct-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 600;
	background: var(--surface-2);
	color: var(--muted);
	border: 1px solid var(--border);
	white-space: nowrap;
}
.dct-card.dct-verdict-safe       .dct-badge { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.dct-card.dct-verdict-suspicious .dct-badge { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.dct-card.dct-verdict-malicious  .dct-badge { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.dct-badge-lg { padding: 6px 16px; font-size: .9rem; }

.dct-pill {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 999px;
	font-size: .8rem;
	font-weight: 600;
	margin-right: 6px;
}
.dct-pill.dct-verdict-safe       { background: #dcfce7; color: #166534; }
.dct-pill.dct-verdict-suspicious { background: #fef3c7; color: #92400e; }
.dct-pill.dct-verdict-malicious  { background: #fee2e2; color: #991b1b; }

/* ------ verdict tiles ------ */
.dct-verdict-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.dct-verdict-tile {
	display: block;
	background: var(--surface);
	border: 1px solid var(--border);
	border-top: 4px solid var(--unknown);
	border-radius: var(--radius);
	padding: 22px;
	color: var(--text);
	box-shadow: var(--shadow);
}
.dct-verdict-tile:hover { text-decoration: none; transform: translateY(-2px); }
.dct-verdict-tile h3 { margin: 0 0 6px; font-size: 1.25rem; }
.dct-verdict-tile p  { margin: 0 0 6px; font-weight: 600; font-size: 1.5rem; }
.dct-verdict-tile span { color: var(--muted); font-size: .9rem; }
.dct-verdict-tile.dct-verdict-safe       { border-top-color: var(--safe); }
.dct-verdict-tile.dct-verdict-suspicious { border-top-color: var(--suspicious); }
.dct-verdict-tile.dct-verdict-malicious  { border-top-color: var(--malicious); }

/* ------ check list ------ */
.dct-info-cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
.dct-check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.dct-check-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
}
.dct-check-list li:last-child { border-bottom: 0; }

/* ------ archive head ------ */
.dct-archive-head {
	background: var(--bg);
	color: #fff;
	padding: 40px 0 32px;
}
.dct-archive-head h1 { color: #fff; margin-bottom: 8px; }
.dct-archive-head .dct-muted { color: #cbd5e1; }

/* ------ pagination ------ */
.dct-pagination {
	margin-top: 36px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}
.dct-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--surface);
	color: var(--text);
	font-size: .95rem;
}
.dct-pagination .page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }
.dct-pagination .page-numbers:hover { text-decoration: none; border-color: var(--primary); }

/* ------ single report ------ */
.dct-report-hero {
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	padding: 28px 0;
}
.dct-breadcrumb {
	font-size: .85rem;
	color: var(--muted);
	margin-bottom: 14px;
}
.dct-breadcrumb a { color: var(--muted); }
.dct-breadcrumb span { margin: 0 4px; }
.dct-report-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	align-items: center;
}
.dct-report-hero-main h1 {
	font-size: clamp(1.4rem, 3.5vw, 2.1rem);
	line-height: 1.25;
	overflow-wrap: anywhere; /* break only long tokens, keep word boundaries intact */
	margin-bottom: 6px;
	letter-spacing: -0.01em;
}
.dct-report-hero-main .dct-report-h1 {
	/* Slightly tighter when title is the new combined "{domain} — {scraped}" form */
	font-size: clamp(1.3rem, 3.2vw, 1.95rem);
}
.dct-report-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 14px;
}
.dct-btn {
	display: inline-block;
	padding: 9px 16px;
	background: var(--primary);
	color: #fff;
	border-radius: 8px;
	font-weight: 500;
	font-size: .95rem;
	border: 1px solid var(--primary);
}
.dct-btn:hover { background: var(--primary-d); color: #fff; text-decoration: none; }
.dct-btn-ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
}
.dct-btn-ghost:hover { background: var(--surface-2); color: var(--text); }

.dct-report-hero-score {
	display: flex;
	align-items: center;
	gap: 18px;
}
.dct-score-ring {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--surface-2);
	border: 6px solid var(--unknown);
	flex-shrink: 0;
}
.dct-report.dct-verdict-safe       .dct-score-ring { border-color: var(--safe); }
.dct-report.dct-verdict-suspicious .dct-score-ring { border-color: var(--suspicious); }
.dct-report.dct-verdict-malicious  .dct-score-ring { border-color: var(--malicious); }
.dct-score-ring .dct-score-num { font-size: 2rem; font-weight: 700; line-height: 1; }
.dct-score-ring .dct-score-out { font-size: .8rem; color: var(--muted); }

.dct-report-body { padding: 32px 16px 56px; }
.dct-report-summary {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	margin-bottom: 28px;
	box-shadow: var(--shadow);
}
.dct-report-summary h2 { font-size: 1.2rem; }
.dct-report-disclaimer {
	margin-top: 32px;
	padding: 16px;
	background: var(--surface-2);
	border-left: 3px solid var(--muted);
	border-radius: 6px;
	font-size: .9rem;
	color: var(--muted);
}

/* ------ footer ------ */
.dct-footer {
	background: var(--bg);
	color: #cbd5e1;
	padding: 44px 0 24px;
	margin-top: 40px;
}
.dct-footer h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.dct-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 28px;
}
.dct-foot-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.dct-foot-links li { padding: 4px 0; }
.dct-foot-links a { color: #cbd5e1; font-size: .9rem; }
.dct-foot-links a:hover { color: #fff; }
.dct-copy {
	border-top: 1px solid rgba(255,255,255,.08);
	padding-top: 18px;
	font-size: .85rem;
	color: #94a3b8;
}

/* ------ misc ------ */
.dct-404 { text-align: center; padding: 40px 16px; }
.dct-404 h1 { font-size: 2rem; }
.dct-404 .dct-mini-search-lg { margin-left: auto; margin-right: auto; }
.dct-post-list { display: flex; flex-direction: column; gap: 22px; }
.dct-post-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
}

/* ------ logo tagline ------ */
.dct-logo .dct-logo-tag {
	display: block;
	font-size: .7rem;
	color: #94a3b8;
	font-weight: 400;
	letter-spacing: .03em;
	margin-top: -2px;
}

/* ------ quick facts strip (single report) ------ */
.dct-quickfacts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
}
.dct-qf {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 12px 14px;
}
.dct-qf-label {
	display: block;
	font-size: .72rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 600;
	margin-bottom: 4px;
}
.dct-qf-value {
	display: block;
	font-size: .95rem;
	font-weight: 600;
	color: var(--text);
	word-break: break-word;
}
.dct-qf-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .85rem; }

/* ------ trust signals row ------ */
.dct-signals {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
.dct-signal {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-left: 4px solid var(--unknown);
	border-radius: var(--radius);
	padding: 12px 14px;
}
.dct-signal-dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--unknown);
	flex-shrink: 0;
}
.dct-signal-label {
	display: block;
	font-size: .8rem;
	color: var(--muted);
}
.dct-signal-value {
	display: block;
	font-size: .95rem;
	font-weight: 600;
}
.dct-signal-good { border-left-color: var(--safe); }
.dct-signal-good .dct-signal-dot { background: var(--safe); }
.dct-signal-warn { border-left-color: var(--suspicious); }
.dct-signal-warn .dct-signal-dot { background: var(--suspicious); }
.dct-signal-bad  { border-left-color: var(--malicious); }
.dct-signal-bad  .dct-signal-dot { background: var(--malicious); }

/* ------ report sections (single page) ------ */
.dct-rep-block {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	margin-bottom: 22px;
	box-shadow: var(--shadow);
}
.dct-rep-section-head {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border);
}
.dct-rep-section-head h2 {
	margin: 0;
	font-size: 1.15rem;
}
.dct-rep-section-head p { margin: 4px 0 0; font-size: .9rem; }
.dct-rep-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 8px;
	background: var(--surface-2);
	border: 1px solid var(--border);
	position: relative;
}
.dct-rep-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	opacity: .8;
}
.dct-rep-icon-overview::before {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M9 12l2 2 4-4'/></svg>");
}
.dct-rep-icon-shield::before {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2l8 4v6c0 5-3.5 9-8 10-4.5-1-8-5-8-10V6l8-4z'/></svg>");
}
.dct-rep-icon-doc::before {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/><line x1='8' y1='13' x2='16' y2='13'/><line x1='8' y1='17' x2='16' y2='17'/></svg>");
}
.dct-rep-icon-pulse::before {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 12 7 12 10 5 14 19 17 12 21 12'/></svg>");
}

/* ============================================================
   Live status block (real-time up/down) — "Is X down?" hero
   ============================================================ */
.dct-rep-block-live { padding-top: 8px; }

.ds-live {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin: 0;
}

/* Headline H2 — "Is example.com down?" */
.ds-live-h2 {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 16px;
	color: var(--text, #0f172a);
	letter-spacing: -0.01em;
}
@media (min-width: 640px) { .ds-live-h2 { font-size: 40px; } }

/* Big green/red answer banner */
.ds-live-answer {
	display: flex; align-items: center; gap: 16px;
	padding: 22px 24px;
	border-radius: 14px;
	border: 1.5px solid;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.ds-live-answer-good   { border-color: #86efac; background: #f0fdf4; }
.ds-live-answer-warn   { border-color: #fcd34d; background: #fffbeb; }
.ds-live-answer-danger { border-color: #fca5a5; background: #fef2f2; }
.ds-live-answer-mute   { border-color: #d1d5db; background: #f9fafb; }

.ds-live-answer-icon {
	flex: 0 0 auto;
	width: 44px; height: 44px;
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 24px; font-weight: 700;
	color: #fff;
}
.ds-live-answer-good   .ds-live-answer-icon { background: #16a34a; }
.ds-live-answer-warn   .ds-live-answer-icon { background: #d97706; }
.ds-live-answer-danger .ds-live-answer-icon { background: #dc2626; }
.ds-live-answer-mute   .ds-live-answer-icon { background: #6b7280; }

.ds-live-answer-text { flex: 1 1 auto; min-width: 0; }
.ds-live-answer-line {
	margin: 0;
	font-size: 19px; line-height: 1.4;
	color: var(--text, #0f172a);
	font-weight: 500;
}
.ds-live-answer-good   .ds-live-answer-line { color: #14532d; }
.ds-live-answer-warn   .ds-live-answer-line { color: #78350f; }
.ds-live-answer-danger .ds-live-answer-line { color: #7f1d1d; }
.ds-live-answer-line strong { font-weight: 700; }
.ds-live-answer-line a { color: inherit; text-decoration: underline; }
.ds-live-answer-line a:hover { text-decoration: none; }

.ds-live-answer-meta {
	margin: 6px 0 0;
	font-size: 13px; color: var(--muted, #64748b);
}
.ds-live-answer-meta em { font-style: italic; }

/* Sub stats grid below */
.ds-live-sub { margin: 0; color: var(--muted, #64748b); font-size: 13px; }

.ds-live-pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 12px; border-radius: 999px;
	font-size: 13px; font-weight: 600;
	border: 1px solid transparent;
}
.ds-live-pill-good   { background: #dcfce7; color: #166534; border-color: #86efac; }
.ds-live-pill-warn   { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.ds-live-pill-danger { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.ds-live-pill-mute   { background: #f3f4f6; color: #374151; border-color: #d1d5db; }
.ds-live-dot {
	width: 8px; height: 8px; border-radius: 50%; background: currentColor;
	box-shadow: 0 0 0 0 currentColor;
	animation: ds-live-pulse 1.6s ease-out infinite;
}
@keyframes ds-live-pulse {
	0%   { box-shadow: 0 0 0 0 currentColor; opacity: .9; }
	70%  { box-shadow: 0 0 0 8px transparent; opacity: .4; }
	100% { box-shadow: 0 0 0 0 transparent; opacity: .9; }
}

.ds-live-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
	margin-bottom: 16px;
}
@media (min-width: 640px) { .ds-live-grid { grid-template-columns: repeat(4, 1fr); } }

.ds-live-stat {
	background: #fff; border: 1px solid var(--border, #e5e7eb);
	border-radius: 10px; padding: 12px 14px;
	display: flex; flex-direction: column; gap: 4px;
}
.ds-live-stat-label {
	font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
	color: var(--muted, #64748b); font-weight: 600;
}
.ds-live-stat-val {
	font-size: 22px; font-weight: 700; color: var(--text, #0f172a);
	line-height: 1.1;
}
.ds-live-stat-sub {
	font-size: 12px; color: var(--muted, #64748b);
	display: flex; align-items: center; justify-content: space-between; gap: 6px;
}

.ds-live-refresh {
	background: transparent; border: 1px solid var(--border, #e5e7eb);
	border-radius: 6px; padding: 3px 8px; font-size: 12px;
	cursor: pointer; color: var(--text, #0f172a);
	transition: background .15s;
}
.ds-live-refresh:hover { background: #f3f4f6; }
.ds-live-refresh:disabled { opacity: .5; cursor: wait; }

.ds-live-regions {
	border-top: 1px dashed var(--border, #e5e7eb);
	padding-top: 16px;
}
.ds-live-regions-head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 12px; flex-wrap: wrap;
}
.ds-live-regions-btn {
	background: var(--text, #0f172a); color: #fff;
	border: 0; border-radius: 8px; padding: 8px 16px;
	font-size: 13px; font-weight: 600; cursor: pointer;
	transition: opacity .15s;
}
.ds-live-regions-btn:hover { opacity: .85; }
.ds-live-regions-btn:disabled { opacity: .5; cursor: wait; }

.ds-live-regions-list {
	margin-top: 14px;
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
@media (min-width: 640px) { .ds-live-regions-list { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .ds-live-regions-list { grid-template-columns: repeat(7, 1fr); } }

.ds-live-region {
	background: #fff; border: 1px solid var(--border, #e5e7eb);
	border-radius: 10px; padding: 10px 12px;
	display: flex; flex-direction: column; gap: 2px;
	min-width: 0;
}
.ds-live-region-up   { border-color: #86efac; background: #f0fdf4; }
.ds-live-region-down { border-color: #fca5a5; background: #fef2f2; }
.ds-live-region-flag { font-size: 18px; line-height: 1; }
.ds-live-region-name {
	font-size: 13px; font-weight: 600; color: var(--text, #0f172a);
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ds-live-region-status {
	font-size: 11px; color: var(--muted, #64748b);
	display: flex; align-items: center; gap: 4px;
}
.ds-live-region-status::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%; background: #94a3b8;
}
.ds-live-region-up   .ds-live-region-status::before { background: #16a34a; }
.ds-live-region-down .ds-live-region-status::before { background: #dc2626; }
.ds-live-regions-empty {
	color: var(--muted, #64748b); font-size: 13px; padding: 8px 0;
}
.dct-rep-prose p { color: var(--text); line-height: 1.7; }
.dct-rep-prose strong { font-weight: 600; }

/* ------ responsive (>= 640px) ------ */
@media (min-width: 640px) {
	.dct-card-grid     { grid-template-columns: repeat(2, 1fr); }
	.dct-verdict-grid  { grid-template-columns: repeat(3, 1fr); }
	.dct-footer-grid   { grid-template-columns: repeat(3, 1fr); gap: 24px; }
	.dct-report-hero-grid { grid-template-columns: 1fr auto; }
	.dct-quickfacts    { grid-template-columns: repeat(4, 1fr); }
	.dct-signals       { grid-template-columns: repeat(2, 1fr); }
}

/* ------ responsive (>= 900px) ------ */
@media (min-width: 900px) {
	.dct-card-grid    { grid-template-columns: repeat(3, 1fr); }
	.dct-info-cols    { grid-template-columns: repeat(2, 1fr); gap: 48px; }
	.dct-hero-stats   { grid-template-columns: repeat(4, 1fr); }
	.dct-signals      { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   Report extras — SERP preview, Tranco rank, asset list
   ========================================================= */

/* Google search preview */
.ds-serp {
	background: #ffffff;
	border: 1px solid #e3e6ee;
	border-radius: 12px;
	padding: 16px 18px;
	max-width: 640px;
	margin: 12px 0 28px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	font-family: arial, sans-serif;
}
.ds-serp-url {
	color: #202124;
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 4px;
}
.ds-serp-arrow {
	color: #5f6368;
	font-size: 11px;
	margin-left: 4px;
}
.ds-serp-title {
	display: block;
	color: #1a0dab;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
	margin: 4px 0 6px;
}
.ds-serp-title:hover { text-decoration: underline; }
.ds-serp-desc {
	color: #4d5156;
	font-size: 14px;
	line-height: 1.58;
}

/* Rank badges (Tranco) */
.ds-rank-badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	margin-left: 8px;
	vertical-align: middle;
}
.ds-rank-elite { background: #ede9fe; color: #6d28d9; }
.ds-rank-good  { background: #dcfce7; color: #166534; }
.ds-rank-mid   { background: #f1f5f9; color: #475569; }

/* Asset list (CSS / JS files) */
.ds-min-summary {
	display: inline-block;
	padding: 1px 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 4px;
}
.ds-min-good { background: #dcfce7; color: #166534; }
.ds-min-warn { background: #fef3c7; color: #92400e; }
.ds-min-bad  { background: #fee2e2; color: #991b1b; }

.ds-asset-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 8px 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.6;
}
.ds-asset-list li {
	padding: 2px 0;
	border-bottom: 1px dashed #e2e8f0;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.ds-asset-list li:last-child { border-bottom: none; }
.ds-asset-link {
	color: #1d4ed8;
	text-decoration: none;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 12.5px;
}
.ds-asset-link:hover { text-decoration: underline; }
.ds-asset-tag {
	display: inline-block;
	padding: 0 7px;
	border-radius: 999px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	margin-left: 4px;
	vertical-align: middle;
}
.ds-asset-tag-good { background: #dcfce7; color: #166534; }
.ds-asset-tag-warn { background: #fef3c7; color: #92400e; }
.ds-asset-tag-mute { background: #f1f5f9; color: #64748b; }
.ds-asset-meta {
	color: #64748b;
	font-size: 11.5px;
	margin-left: 6px;
}
.ds-asset-more { color: #64748b; padding-top: 4px; }

/* WHOIS privacy badge */
.ds-priv-badge {
	display: inline-block;
	padding: 2px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	margin-right: 6px;
	vertical-align: middle;
}
.ds-priv-hidden { background: #fef3c7; color: #92400e; }
.ds-priv-public { background: #dcfce7; color: #166534; }

/* Site-category badge */
.ds-cat-badge {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2px;
	background: #f1f5f9;
	color: #475569;
	margin-right: 8px;
	vertical-align: middle;
}
.ds-cat-gambling  { background: #fee2e2; color: #991b1b; }
.ds-cat-pharma    { background: #fee2e2; color: #991b1b; }
.ds-cat-streaming { background: #fef3c7; color: #92400e; }
.ds-cat-finance   { background: #fef3c7; color: #92400e; }
.ds-cat-adult     { background: #fce7f3; color: #9d174d; }
.ds-cat-crypto    { background: #ede9fe; color: #5b21b6; }
.ds-cat-risk { box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.25); }

/* "Is X Scam or legit?" hero block */
.ds-scam-q {
	margin: 28px 0 32px;
	padding: 24px 26px;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.ds-scam-h2 {
	font-size: clamp(24px, 3.4vw, 34px);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
	color: #0f172a;
}
.ds-scam-answer {
	font-size: 17px;
	line-height: 1.55;
	margin: 0;
	color: #1f2937;
	padding: 14px 18px;
	border-radius: 10px;
	border-left: 4px solid #94a3b8;
	background: #f8fafc;
}
.ds-scam-legit   .ds-scam-answer { background: #ecfdf5; border-left-color: #16a34a; color: #14532d; }
.ds-scam-mixed   .ds-scam-answer { background: #fffbeb; border-left-color: #f59e0b; color: #78350f; }
.ds-scam-scam    .ds-scam-answer { background: #fef2f2; border-left-color: #dc2626; color: #7f1d1d; font-weight: 600; }
.ds-scam-unknown .ds-scam-answer { background: #f8fafc; border-left-color: #64748b; color: #334155; }

/* "Is X Safe?" hero block — WOT-style with badge + icon */
.ds-safe-q {
	margin: 24px 0 18px;
	padding: 22px 24px;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.ds-safe-q-head {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}
.ds-safe-q-icon {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	color: #ffffff;
	background: #94a3b8;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}
.ds-safe-q-text {
	flex: 1 1 280px;
	min-width: 0;
}
.ds-safe-q-h2 {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 6px;
	letter-spacing: -0.01em;
	color: #0f172a;
}
.ds-safe-q-answer {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
	color: #334155;
}
.ds-safe-q-badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 999px;
	background: #e2e8f0;
	color: #334155;
	white-space: nowrap;
}
/* state colours — green / amber / red / grey */
.ds-safe-safe    .ds-safe-q-icon  { background: #16a34a; box-shadow: 0 4px 14px rgba(22, 163, 74, 0.28); }
.ds-safe-safe    .ds-safe-q-badge { background: #dcfce7; color: #166534; }
.ds-safe-safe    { border-color: #bbf7d0; }
.ds-safe-caution .ds-safe-q-icon  { background: #f59e0b; box-shadow: 0 4px 14px rgba(245, 158, 11, 0.28); }
.ds-safe-caution .ds-safe-q-badge { background: #fef3c7; color: #92400e; }
.ds-safe-caution { border-color: #fde68a; }
.ds-safe-unsafe  .ds-safe-q-icon  { background: #dc2626; box-shadow: 0 4px 14px rgba(220, 38, 38, 0.28); }
.ds-safe-unsafe  .ds-safe-q-badge { background: #fee2e2; color: #991b1b; }
.ds-safe-unsafe  { border-color: #fecaca; }
.ds-safe-unsafe  .ds-safe-q-answer { font-weight: 600; color: #7f1d1d; }
.ds-safe-unknown .ds-safe-q-icon  { background: #94a3b8; }
.ds-safe-unknown .ds-safe-q-badge { background: #e2e8f0; color: #334155; }
@media (max-width: 520px) {
	.ds-safe-q { padding: 18px 16px; }
	.ds-safe-q-icon { flex: 0 0 52px; width: 52px; height: 52px; font-size: 26px; }
	.ds-safe-q-badge { order: 3; }
}

/* v1.0.6 — Related reports grid (internal linking) */
.dct-related-block {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e2e8f0;
}
.dct-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}
