body {
	background-attachment: fixed;
	
	background-image: url("images/dbdBackground.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 110%;
	
	color: #e6e6e6;
	font-family: Arial, sans-serif;
	margin: 0;
	
	position: relative;
	z-index: 0;
}

body::before {
	content: "";
	inset: 0;
	position: fixed;
	
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(20, 0, 0, 0.9));
		rgba(20, 0, 0, 0.7);
		
	z-index: -2;
}

body::after {
	animation: fogMove 60s linear infinite;
	background: url("images/fog.png");
	
	content: "";
	inset: 0;
	position: fixed;
	opacity: 0.15;
	
	z-index: -1;
}

@keyframes fogMove {
	0% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(-50px, -50px);
	}
	100% {
		transform: translate(0, 0);
	}
}

header {
	background: rgba(0, 0, 0, 0.7);
	border-bottom: 2px solid #a00000;
	padding: 20px;
	text-align: center;
}

h1 {
	color: #ff4d4d;
	margin: 0;
}

h2 {
	color: #ff4d4d;
	margin: 0;
}

h4 {
	color: #ff4d4d;
	margin: 0;
}

p {
	margin-bottom: 14px;
}

.cardContainer {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 20px;
}

.card {
	backdrop-filter: blur(4px);
	background: rgba(26, 26, 26, 0.85);
	border: 1px solid #333;
	
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
	padding: 20px;
	
	transition: transform 0.2s, box-shadow 0.2s;
	width: 75%;
}

.card:hover {
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
	transform: scale(1.007);
}

.card h2 {
	color: #ff4d4d;
}

.killerList {
	display: flex;
	flex-wrap: wrap;
	
	list-style: none;
	padding: 0;
}

.killerList li {
	box-sizing: border-box;
	
	cursor: pointer;
	padding: 8px;
	text-align: center;
	
	transition: color 0.2s;
	width: 50%;
}

.killerList li:hover {
	color: #ff4d4d;
}

@media (max-width: 500px) {
	.killerList li {
		text-align: center;
		width: 100%;
	}
}

#preview {
	background: none;
	padding: 0;
	pointer-events: none;
	position: fixed;
	
}

#preview img {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 1) 0%,
		rgba(91, 21, 35, 0.7) 50%,
		rgba(0, 0, 0, 1) 100%
	);
	
	border: 2px solid #ff4d4d;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(255, 0, 0, 0.7), 0 0 40px rgba(255, 0, 0, 0.35);
	width: 350px;
}