/* BCause — Base styles */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: #eee;
	min-height: 100vh;
	padding: 2rem;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(120deg, #a855f7, #3b82f6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	margin: 1rem 0;
	backdrop-filter: blur(10px);
}

button {
	background: linear-gradient(120deg, #a855f7, #3b82f6);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

button:active {
	transform: translateY(0);
}
