:root {
	--body-bg: #0a0a0a;
	--text-color: #fff;
	--hover-bg: rgba(255, 255, 255, 0.08);
	--accent-color: #5c34b4;
	--accent-hover: #7b5cff;
	--card-bg: #1a1a1a;
}

body {
	background: var(--body-bg);
	color: var(--text-color);
	font-family: 'Inter', sans-serif;
	margin: 0;
	overflow-y: scroll;
}

.section-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 25px;
	color: var(--text-color);
}

.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}

.updates-section {
	max-width: 1160px;
	margin: 20px auto;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
}

.section-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 25px;
	margin-left: 140px;
	color: var(--text-color);
}
.date-block {
	margin-bottom: 40px;
}

.date-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-color);
	text-transform: uppercase;
}

.updates-grid {
	display: flex;
	gap: 30px;
	padding-bottom: 10px;
	overflow-x: hidden;
}

.update-card {
	flex: 0 0 141px;
	height: 265px;
	background: var(--card-bg);
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.update-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.update-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
}

.update-card.empty {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-color);
	font-size: 14px;
	font-weight: 500;
}

.update-card .info {
	flex-shrink: 0;
	padding: 8px;
	text-align: center;
	background: rgba(0, 0, 0, 0.6);
	color: var(--text-color);
}

.episode-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--accent-color);
	color: #fff;
	padding: 2px 6px;
	font-size: 12px;
	border-radius: 4px;
	font-weight: 600;
}

@media (max-width: 1024px) {
	.update-card {
		flex: 1 1 120px;
		max-width: 140px;
		height: 230px;
	}
	.update-card img {
		height: 180px;
	}
}

@media (max-width: 768px) {
	.updates-grid {
		justify-content: center;
		gap: 15px;
	}
	.update-card {
		flex: 1 1 100px;
		max-width: 120px;
		height: 200px;
	}
	.update-card img {
		height: 150px;
	}
}

@media (max-width: 480px) {
	.updates-grid {
		gap: 10px;
		padding: 0 10px;
	}
	.update-card {
		flex: 1 1 90px;
		max-width: 100px;
		height: 180px;
	}
	.update-card img {
		height: 130px;
	}
}