:root {
    --accent: #3a86ff;
}

body {
    background-color: #121212;
    color: #fff;
}

.card {
	background-color: #1e1e1e;
	border: none;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

.card-img-top {
	object-fit: contain;
	height: 220px;
	width: 100%;
	padding: 1.5rem;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-title {
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 0.03em;
}

.card-text {
    color: #bbbb;
}

.btn-primary {
	background: var(--accent);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	transition: background 0.2s ease;
}

.btn-primary:hover {
	background: #2a75ee;
}

footer {
	border-top: 1px solid #2a2a2a;
	font-size: 0.85rem;
}