:root {
	--bg: #0b0d12;
	--panel: #131622;
	--accent: #9b4dff;
	--accent2: #ff3c6a;
	--text: #eaeaff;
	--muted: #8a8fa3;
}

* {
	box-sizing: border-box;
	font-family: "Segoe UI", system-ui, sans-serif;
}

body {
	margin: 0;
	background: radial-gradient(circle at top, #14182a, #07080d);
	color: var(--text);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.panel {
	background: var(--panel);
	padding: 32px;
	border-radius: 16px;
	width: 420px;
	box-shadow: 0 0 40px rgba(155, 77, 255, 0.25);
}

h1, h2 {
	margin-top: 0;
	text-align: center;
}

button {
	width: 100%;
	padding: 14px;
	margin-top: 12px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease;
}

button:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 20px rgba(255, 60, 106, 0.5);
}

input {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: none;
	margin-top: 12px;
	background: #0e1020;
	color: var(--text);
	font-size: 15px;
	outline: none;
}

video {
	width: 100%;
	margin-top: 16px;
	border-radius: 12px;
	background: black;
}

.badge {
	text-align: center;
	color: var(--muted);
	font-size: 13px;
	margin-top: 8px;
}
