.button-primary {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	border-radius: 12px;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.button-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
	filter: brightness(1.1);
}
