/* Phase 3 — Dynamic badges */

.sc361-card__badges {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 4;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.sc361-badge {
	display: inline-block;
	padding: 0.2em 0.55em;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 3px;
	color: #fff;
}

.sc361-badge--new {
	background: #e50914;
}

.sc361-badge--exclusive {
	background: #564d4d;
}

.sc361-badge--live {
	background: #d0021b;
	animation: sc361-pulse 1.5s ease infinite;
}

.sc361-badge--trending {
	background: #f5a623;
	color: #111;
}

.sc361-badge--featured {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.35);
}

@keyframes sc361-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.65;
	}
}

.sc361-card__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.sc361-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.45em 0.9em;
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 4px;
	background: #fff;
	color: #111;
}

.sc361-btn--watch_now {
	background: #fff;
}

.sc361-btn--download,
.sc361-btn--custom {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
