/**
 * Engagement badges (Phase E1 + E2).
 * Loaded on game CPT views + on /game-moi/ + /game-hot/ via shortcode handlers.
 */

.tgg-card-thumb {
	position: relative;
	overflow: hidden;
}

.tgg-badge {
	display: inline-block;
	font-family: inherit;
	line-height: 1;
}

.tgg-badge-new {
	position: absolute;
	top: 8px;
	left: 8px;
	background: linear-gradient(135deg, #ff4757, #ff6b6b);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 4px rgba( 0, 0, 0, 0.18 );
	z-index: 2;
	animation: tgg-badge-pulse 2.2s ease-in-out infinite;
	pointer-events: none;
}

@keyframes tgg-badge-pulse {
	0%, 100% { transform: scale( 1 ); }
	50%      { transform: scale( 1.06 ); }
}

/* Inline variant: badge sits next to the H1 on single game pages. */
.tgg-title .tgg-badge-new,
.tgg-title-inline .tgg-badge-new {
	position: static;
	margin-left: 12px;
	font-size: 14px;
	padding: 4px 12px;
	vertical-align: middle;
	animation: none;
}

@media ( max-width: 480px ) {
	.tgg-badge-new {
		font-size: 10px;
		padding: 3px 8px;
	}
	.tgg-title .tgg-badge-new,
	.tgg-title-inline .tgg-badge-new {
		font-size: 12px;
		padding: 3px 10px;
		margin-left: 8px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.tgg-badge-new { animation: none; }
}

/* --- Phase E2 — HOT badge (orange pill, top-right of thumb) --- */

.tgg-badge-hot {
	position: absolute;
	top: 8px;
	right: 8px;
	background: linear-gradient( 135deg, #ff8c00, #ff5722 );
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 4px rgba( 0, 0, 0, 0.18 );
	z-index: 2;
	pointer-events: none;
	animation: tgg-badge-pulse 2.6s ease-in-out infinite;
}

/* Inline variant on single H1: static, no animation, larger font. */
.tgg-title .tgg-badge-hot,
.tgg-title-inline .tgg-badge-hot {
	position: static;
	margin-left: 8px;
	font-size: 14px;
	padding: 4px 12px;
	vertical-align: middle;
	animation: none;
}

@media ( max-width: 480px ) {
	.tgg-badge-hot {
		font-size: 10px;
		padding: 3px 8px;
	}
	.tgg-title .tgg-badge-hot,
	.tgg-title-inline .tgg-badge-hot {
		font-size: 12px;
		padding: 3px 10px;
		margin-left: 6px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.tgg-badge-hot { animation: none; }
}
