/* Card Specific Styles */
.archive-card {
	background: #ffffff;
	color: #1e1e1e;
	border: 3px solid #1e1e1e;
	box-shadow: 8px 8px 0px #1e1e1e;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}
.archive-card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 12px 12px 0px #ff7043;
	border-color: #ff7043;
}
.archive-card.purple-hover:hover {
	box-shadow: 12px 12px 0px #7e57c2;
	border-color: #7e57c2;
}
.card-image {
	height: 200px;
	background: #1e1e1e;
	position: relative;
	overflow: hidden;
}
.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%) contrast(120%);
	transition: all 0.3s ease;
}
.archive-card:hover .card-image img {
	filter: grayscale(0%) contrast(100%);
	transform: scale(1.05);
}
.card-tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 2px solid #1e1e1e;
	margin-right: 8px;
	margin-bottom: 8px;
	transition: all 0.2s ease;
}
.card-tag.coral {
	background: #ff7043;
	color: #1e1e1e;
}
.card-tag.purple {
	background: #7e57c2;
	color: #ffffff;
}
.project-tag.blue {
	background: #00d4ff;
	color: #1e1e1e;
}
.project-tag.black {
	background: #1e1e1e;
	color: #ffffff;
}
.card-tag:hover {
	transform: rotate(-2deg) scale(1.1);
}
/* Status Indicators */
.status-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 6px 12px;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	z-index: 10;
}
.status-badge.live {
	background: #ff7043;
	color: #1e1e1e;
	animation: pulse 2s infinite;
}
.status-badge.beta {
	background: #7e57c2;
	color: #ffffff;
}
.status-badge.concept {
	background: #ffffff;
	color: #1e1e1e;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

/* Equal height cards per row */
#cardGrid a {
	display: flex;
	flex-direction: column;
}