:root {
	--adr-go-accent: #2563eb;
	--adr-go-accent-dim: #dbeafe;
	--adr-go-text: #0f172a;
	--adr-go-muted: #64748b;
	--adr-go-bg: #eef2ff;
	--adr-go-card: #fff;
	--adr-go-progress-duration: 2s;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	background: var(--adr-go-bg);
	color: var(--adr-go-text);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
}

.adr-go-wrap {
	width: 100%;
	max-width: 440px;
}

.adr-go-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0 auto 14px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--adr-go-accent-dim);
	color: var(--adr-go-accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.adr-go-badge::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--adr-go-accent);
	animation: adr-go-pulse 1.2s ease-in-out infinite;
}

.adr-go-card {
	background: var(--adr-go-card);
	border-radius: 20px;
	padding: 28px 22px 24px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
	text-align: center;
}

.adr-go-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.adr-go-icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	object-fit: cover;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.adr-go-title {
	margin: 0;
	font-size: 22px;
	line-height: 1.25;
}

.adr-go-site {
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--adr-go-muted);
}

.adr-go-status {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 600;
}

.adr-go-hint {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--adr-go-muted);
}

.adr-go-trust {
	margin: 0 0 18px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	font-size: 13px;
	line-height: 1.55;
	color: #475569;
	text-align: left;
}

.adr-go-spinner {
	width: 44px;
	height: 44px;
	margin: 0 auto 16px;
	border: 3px solid #e2e8f0;
	border-top-color: var(--adr-go-accent);
	border-radius: 50%;
	animation: adr-go-spin 0.85s linear infinite;
}

.adr-go-bar {
	height: 4px;
	border-radius: 999px;
	background: #e2e8f0;
	overflow: hidden;
	margin-bottom: 8px;
}

.adr-go-bar > i {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--adr-go-accent), #60a5fa);
	animation: adr-go-progress var(--adr-go-progress-duration) linear forwards;
}

.adr-go-count {
	margin: 0 0 20px;
	font-size: 13px;
	color: var(--adr-go-muted);
}

.adr-go-fallback {
	display: none;
	margin-top: 4px;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.adr-go-fallback.is-visible {
	display: block;
}

.adr-go-fallback-title {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--adr-go-text);
}

.adr-go-btn {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--adr-go-accent);
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 13px 16px;
	font-size: 16px;
	font-weight: 600;
	border: 0;
	cursor: pointer;
}

.adr-go-btn:hover {
	background: #1d4ed8;
}

.adr-go-back {
	display: inline-block;
	margin-top: 16px;
	font-size: 13px;
	color: var(--adr-go-muted);
	text-decoration: none;
}

.adr-go-back:hover {
	color: var(--adr-go-text);
}

@keyframes adr-go-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes adr-go-progress {
	to {
		width: 100%;
	}
}

@keyframes adr-go-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(0.85);
	}
}
