.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	padding: 0.6rem 1rem;
	font-weight: 600;
	border: 1px solid transparent;
	color: var(--text);
	background: transparent;
	text-decoration: none;
	transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
	background: linear-gradient(135deg, #2563eb, #1e4eb7);
	border-color: rgba(37, 99, 235, 0.4);
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover { box-shadow: 0 14px 34px rgba(37, 99, 235, 0.45); }

.btn-ghost {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.22); }
