@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap');

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-height: 100vh;
	margin: 0;
	padding: 24px;
	font-family: 'Share Tech Mono', monospace;
	background: #0d0d14;
}

.PageNote {
	margin: 0;
	font-family: monospace;
	font-size: 12px;
	letter-spacing: 0.06em;
	color: #999;
}

.PanelCanvas {
	display: block;
	cursor: default;
}


/* =====================================================
   PANEL
   ===================================================== */

.Panel {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 28px;
	box-sizing: border-box;
	width: 450px;
	padding: 32px 50px;
	border: 1px solid #0ff4;
	background: #060d1a;
	clip-path: polygon(
		0 0,
		calc(100% - 24px) 0,
		100% 24px,
		100% 100%,
		24px 100%,
		0 calc(100% - 24px)
	);
}

.Panel::before,
.Panel::after {
	content: '';
	position: absolute;
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	border-color: #0ff;
	border-style: solid;
}

.Panel::before {
	top: 6px;
	left: 6px;
	border-width: 2px 0 0 2px;
}

.Panel::after {
	bottom: 6px;
	right: 6px;
	border-width: 0 2px 2px 0;
}

@keyframes title-gradient {

	0%   { background-position: 0% 50%; }
	100% { background-position: 200% 50%; }

}

.Panel__Title {
	margin: 0;
	font-family: 'Orbitron', sans-serif;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0.08em;
	color: transparent;
	background: linear-gradient(90deg, #0ff, #fff, #a78bfa, #0ff, #39ff14, #0ff);
	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	animation: title-gradient 4s linear infinite;
}

.Panel__Divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, #0ff5, #0ff, #0ff5, transparent);
}

.Panel p {
	margin: 0;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: #a8d8e8cc;
}

.Panel a {
	color: #39f;
	transition: color 0.3s;
}

.Panel a:hover {
	color: #39ff14;
}

.Panel__ButtonRow {
	display: flex;
	gap: 10px;
}

.Button {
	flex: 1;
	box-sizing: border-box;
	margin: 0;
	padding: 14px 8px;
	border: none;
	font-family: 'Orbitron', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.5s, color 0.5s, outline-color 0.5s, transform 0.1s;
	clip-path: polygon(
		0 0,
		calc(100% - 10px) 0,
		100% 10px,
		100% 100%,
		10px 100%,
		0 calc(100% - 10px)
	);
}

.Button:active {
	transform: scale( 0.97 );
}

.Button.-yes {
	color: #020810;
	background: #0ff;
}

.Button.-yes:hover {
	color: #020810;
	background: #39ff14;
}

.Button.-no {
	outline: 1px solid #0ff5;
	outline-offset: -1px;
	color: #0ff;
	background: transparent;
}

.Button.-no:hover {
	outline: 1px solid #ff4060;
	outline-offset: -1px;
	color: #ff4060;
	background: #ff103010;
}

