.mozbeats-safe-download-wrapper {
	text-align: center;
	margin: 30px 0;
}

.mozbeats-safe-download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	max-width: 100%;
	padding: 14px 30px;
	border-radius: 999px;
	background: linear-gradient(45deg, #ff0000, #990000);
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
	animation: mozbeatsSafePulse 2s infinite;
}

.mozbeats-safe-download-btn:hover,
.mozbeats-safe-download-btn:focus {
	background: linear-gradient(45deg, #cc0000, #ff0000);
	color: #ffffff;
	transform: scale(1.06);
	text-decoration: none;
}

.mozbeats-safe-download-btn:focus-visible {
	outline: 3px solid #111111;
	outline-offset: 3px;
}

.mozbeats-safe-download-icon {
	font-size: 20px;
	line-height: 1;
}

.mozbeats-safe-download-counter {
	margin-top: 10px;
	color: #555555;
	font-size: 14px;
}

@keyframes mozbeatsSafePulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
	}
}

@media (max-width: 480px) {
	.mozbeats-safe-download-btn {
		width: 100%;
		padding: 13px 18px;
		font-size: 16px;
	}
}
