/* Movie Hub – Globale Styles */

.mh-error,
.mh-empty,
.mh-no-stream {
	color: #888;
	font-style: italic;
	padding: 10px 0;
}

.mh-released {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #1a1a1a;
	color: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 600;
}

/* Modal-Animations */
.mh-modal-overlay {
	animation: mhFadeIn 0.2s ease;
}
@keyframes mhFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
	.mhg-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.mhnp-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
