/* Aviso Discord - caixa ATENÇÃO! estilo MIR4/DRACO, pulsante */
@keyframes marketplace-notice-pulse {
	0%, 100% {
		box-shadow: 0 0 12px rgba(255, 200, 50, 0.4), 0 0 24px rgba(255, 180, 0, 0.2), inset 0 0 12px rgba(255, 215, 0, 0.08);
		border-color: rgba(255, 215, 0, 0.6);
	}
	50% {
		box-shadow: 0 0 20px rgba(255, 200, 50, 0.7), 0 0 40px rgba(255, 180, 0, 0.35), inset 0 0 16px rgba(255, 215, 0, 0.12);
		border-color: rgba(255, 235, 100, 0.9);
	}
}

.marketplace-discord-notice {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 116px;
	height: 36px;
	margin: 6px 0 12px;
	background: linear-gradient(145deg, #2a1a4a 0%, #1d1038 50%, #150a28 100%);
	border: 2px solid rgba(255, 215, 0, 0.65);
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 215, 0, 0.15);
	text-decoration: none;
	color: #ffd700 !important;
	text-shadow: 0 0 8px rgba(255, 215, 0, 0.5), 0 0 16px rgba(255, 180, 0, 0.3);
	font-weight: 800;
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-align: center;
	cursor: pointer;
	transition: transform 0.2s ease;
	animation: marketplace-notice-pulse 2.5s ease-in-out infinite;
	z-index: 10;
}

.marketplace-discord-notice:hover {
	transform: scale(0.9);
	animation: marketplace-notice-pulse 1.5s ease-in-out infinite;
}

.marketplace-discord-notice:focus {
	outline: 2px solid rgba(255, 235, 59, 0.8);
	outline-offset: 2px;
}

.marketplace-discord-notice__badge {
	display: block;
	padding: 2px 4px;
}

.marketplace-discord-notice__tooltip {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	transform: translateY(-4px);
	min-width: 280px;
	max-width: 340px;
	padding: 14px 16px;
	background: linear-gradient(180deg, rgba(30, 25, 50, 0.98) 0%, rgba(20, 15, 35, 0.98) 100%);
	border: 1px solid rgba(255, 215, 0, 0.4);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 200, 50, 0.1);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: #e8e4dc;
	text-align: left;
	white-space: normal;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	z-index: 100;
}

.marketplace-discord-notice__tooltip::after {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	border: 8px solid transparent;
	border-bottom-color: rgba(255, 215, 0, 0.35);
}

.marketplace-discord-notice__tooltip em {
	display: block;
	margin-top: 10px;
	font-style: normal;
	font-weight: 600;
	color: #e6c84a;
	font-size: 12px;
}

.marketplace-discord-notice:hover .marketplace-discord-notice__tooltip,
.marketplace-discord-notice:focus .marketplace-discord-notice__tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
