.history-ticker-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	background: rgba(0, 0, 0, 0.3);
	padding: 12px 0;
	margin-bottom: 0;
	border-top: 1px solid #ffffbc;
	border-bottom: 1px solid #ffffbc;
}

.history-ticker-wrapper + .section {
	margin-top: -56px;
}

@media (max-width: 768px) {
	.history-ticker-wrapper {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		border-top: 1px solid #ffffbc !important;
		border-bottom: 1px solid #ffffbc !important;
	}
	
	.history-ticker-wrapper + .section {
		margin-top: 0 !important;
	}
}

.history-ticker {
	display: flex;
	width: max-content;
	position: relative;
}

.history-ticker__content {
	display: flex;
	align-items: center;
	gap: 30px;
	white-space: nowrap;
	will-change: transform;
}

.history-ticker__content:hover {
	animation-play-state: paused !important;
}

.history-ticker__item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	flex-shrink: 0;
	text-transform: uppercase;
}

.history-ticker__text {
	color: #8f9bb8;
	text-transform: uppercase;
}

.history-ticker__text strong {
	color: #00ff88;
	font-weight: 700;
	text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.history-ticker__coin {
	width: 12px;
	height: 12px;
	display: inline-block;
	vertical-align: middle;
}

.history-ticker__price {
	color: #ffd700;
	font-weight: 600;
	text-transform: uppercase;
}

.history-ticker__separator {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	position: relative;
	filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8)) 
	        drop-shadow(0 0 12px rgba(255, 165, 0, 0.5))
	        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
	animation: separatorPulse 2s ease-in-out infinite;
}

.history-ticker__separator::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 32px;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 40%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
	pointer-events: none;
	animation: separatorGlow 2s ease-in-out infinite;
}

@keyframes separatorPulse {
	0%, 100% {
		transform: scale(1) rotate(0deg);
		opacity: 0.9;
	}
	50% {
		transform: scale(1.1) rotate(5deg);
		opacity: 1;
	}
}

@keyframes separatorGlow {
	0%, 100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.5;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

@keyframes scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
