.mak-pc-shell,
.mak-pc-mobile-admin {
	--mak-pc-ink: #10110f;
	--mak-pc-charcoal: #25231f;
	--mak-pc-paper: #f5f0e7;
	--mak-pc-stone: #d8d1c3;
	--mak-pc-muted: #776f64;
	--mak-pc-gold: #d2b989;
	--mak-pc-copper: #a36f48;
	--mak-pc-green: #58715a;
	--mak-pc-red: #9f4a3f;
	--mak-pc-line: rgba(16, 17, 15, 0.12);
	--mak-pc-shadow: 0 22px 56px rgba(16, 17, 15, 0.14);
	color: var(--mak-pc-charcoal);
	font-family: "Segoe UI", Aptos, Arial, sans-serif;
	margin: 40px auto;
	max-width: 940px;
	width: 100%;
}

.mak-pc-panel,
.mak-pc-mobile-panel {
	background: linear-gradient(135deg, #fffaf1 0%, var(--mak-pc-paper) 100%);
	border: 1px solid rgba(16, 17, 15, 0.1);
	border-radius: 8px;
	box-shadow: var(--mak-pc-shadow);
	overflow: hidden;
	padding: clamp(24px, 5vw, 48px);
	position: relative;
}

.mak-pc-panel::before,
.mak-pc-mobile-panel::before {
	background: var(--mak-pc-gold);
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.mak-pc-panel--vol::before {
	background: var(--mak-pc-red);
}

.mak-pc-kicker {
	color: var(--mak-pc-copper);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.mak-pc-title,
.mak-pc-mobile-title {
	color: var(--mak-pc-ink);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
}

.mak-pc-subtitle {
	color: var(--mak-pc-muted);
	font-size: 1.05rem;
	line-height: 1.55;
	margin: 14px 0 0;
	max-width: 620px;
}

.mak-pc-notice {
	border-radius: 8px;
	font-size: 0.98rem;
	font-weight: 650;
	line-height: 1.45;
	margin: 28px 0 0;
	padding: 14px 16px;
}

.mak-pc-notice--success {
	background: rgba(88, 113, 90, 0.13);
	border: 1px solid rgba(88, 113, 90, 0.25);
	color: #36513a;
}

.mak-pc-notice--info {
	background: rgba(210, 185, 137, 0.2);
	border: 1px solid rgba(163, 111, 72, 0.25);
	color: #62452e;
}

.mak-pc-notice--error {
	background: rgba(159, 74, 63, 0.12);
	border: 1px solid rgba(159, 74, 63, 0.25);
	color: #7b3028;
}

.mak-pc-status-card {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--mak-pc-line);
	border-radius: 8px;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-top: 30px;
	padding: clamp(18px, 4vw, 28px);
}

.mak-pc-status-label,
.mak-pc-mobile-current span {
	color: var(--mak-pc-muted);
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.mak-pc-status-value {
	color: var(--mak-pc-ink);
	display: block;
	font-size: clamp(2rem, 8vw, 4rem);
	font-weight: 650;
	letter-spacing: 0;
	line-height: 0.95;
}

.mak-pc-status-dot {
	background: var(--mak-pc-green);
	border-radius: 999px;
	box-shadow: 0 0 0 10px rgba(88, 113, 90, 0.12);
	flex: 0 0 auto;
	height: 22px;
	width: 22px;
}

.mak-pc-panel--vol .mak-pc-status-dot {
	background: var(--mak-pc-red);
	box-shadow: 0 0 0 10px rgba(159, 74, 63, 0.13);
}

.mak-pc-status-text {
	color: var(--mak-pc-charcoal);
	font-size: 1.12rem;
	font-weight: 650;
	line-height: 1.5;
	margin: 24px 0 0;
}

.mak-pc-updated {
	color: var(--mak-pc-muted);
	font-size: 0.94rem;
	line-height: 1.45;
	margin: 10px 0 0;
}

.mak-pc-copy {
	border-top: 1px solid var(--mak-pc-line);
	color: var(--mak-pc-charcoal);
	font-size: 1rem;
	line-height: 1.7;
	margin-top: 28px;
	padding-top: 24px;
}

.mak-pc-copy p {
	margin: 0;
}

.mak-pc-copy p + p {
	margin-top: 14px;
}

.mak-pc-report-form {
	margin-top: 28px;
}

.mak-pc-button {
	align-items: center;
	appearance: none;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 750;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	min-height: 52px;
	padding: 15px 22px;
	text-align: center;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
	width: auto;
}

.mak-pc-button:focus-visible {
	outline: 2px solid var(--mak-pc-copper);
	outline-offset: 3px;
}

.mak-pc-button:hover {
	transform: translateY(-1px);
}

.mak-pc-button--report {
	background: var(--mak-pc-ink);
	border-color: var(--mak-pc-ink);
	color: var(--mak-pc-paper);
}

.mak-pc-button--report:hover {
	background: var(--mak-pc-copper);
	border-color: var(--mak-pc-copper);
	color: #ffffff;
}

.mak-pc-honeypot {
	height: 1px;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	top: auto;
	width: 1px;
}

.mak-pc-mobile-admin {
	max-width: 560px;
}

.mak-pc-mobile-panel {
	padding: clamp(22px, 6vw, 36px);
}

.mak-pc-mobile-current {
	background: #ffffff;
	border: 1px solid var(--mak-pc-line);
	border-radius: 8px;
	margin-top: 24px;
	padding: 18px;
}

.mak-pc-mobile-current strong {
	color: var(--mak-pc-ink);
	display: block;
	font-size: 2rem;
	line-height: 1.05;
}

.mak-pc-mobile-current small {
	color: var(--mak-pc-muted);
	display: block;
	font-size: 0.9rem;
	line-height: 1.45;
	margin-top: 10px;
}

.mak-pc-mobile-actions {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.mak-pc-mobile-actions .mak-pc-button {
	font-size: 1.08rem;
	min-height: 72px;
	width: 100%;
}

.mak-pc-button--available {
	background: var(--mak-pc-green);
	border-color: var(--mak-pc-green);
	color: #ffffff;
}

.mak-pc-button--available:hover {
	background: #47634a;
	border-color: #47634a;
	color: #ffffff;
}

.mak-pc-button--full {
	background: var(--mak-pc-red);
	border-color: var(--mak-pc-red);
	color: #ffffff;
}

.mak-pc-button--full:hover {
	background: #87382f;
	border-color: #87382f;
	color: #ffffff;
}

.mak-pc-access-message {
	color: var(--mak-pc-muted);
	font-size: 1rem;
	line-height: 1.6;
	margin: 18px 0 0;
}

@media (max-width: 640px) {
	.mak-pc-shell,
	.mak-pc-mobile-admin {
		margin: 24px auto;
	}

	.mak-pc-status-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.mak-pc-status-dot {
		height: 18px;
		width: 18px;
	}

	.mak-pc-button {
		width: 100%;
	}
}
