.hfsb-bubble {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hfsb-icons {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.hfsb-icon {
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #232946;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
	text-decoration: none;
	opacity: 0;
	transform: translateY(10px) scale(0.8);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.hfsb-icon-svg svg {
	width: 26px;
	height: 26px;
	display: block;
}

.hfsb-bubble.is-expanded .hfsb-icon {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.hfsb-icon:nth-child(1) { transition-delay: 0s; }
.hfsb-icon:nth-child(2) { transition-delay: 0.03s; }
.hfsb-icon:nth-child(3) { transition-delay: 0.06s; }
.hfsb-icon:nth-child(4) { transition-delay: 0.09s; }
.hfsb-icon:nth-child(5) { transition-delay: 0.12s; }
.hfsb-icon:nth-child(6) { transition-delay: 0.15s; }

.hfsb-toggle {
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #d85a30;
	border: none;
	cursor: pointer;
	padding: 0;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}

.hfsb-toggle-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.6) rotate(-45deg);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.hfsb-toggle-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}

.hfsb-toggle-icon--open {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

.hfsb-bubble.is-expanded .hfsb-toggle-icon--open {
	opacity: 0;
	transform: scale(0.6) rotate(45deg);
}

.hfsb-bubble.is-expanded .hfsb-toggle-icon--close {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

.hfsb-live-dot {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #e63946;
	border: 2px solid #fff;
	animation: hfsb-pulse 2s ease-in-out infinite;
}

.hfsb-live-dot--main {
	width: 15px;
	height: 15px;
	top: -1px;
	right: -1px;
}

@keyframes hfsb-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5); }
	50% { box-shadow: 0 0 0 4px rgba(230, 57, 70, 0); }
}

.hfsb-live-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999998;
	background: #ff2d2d;
	color: #fff;
	text-align: center;
	padding: 12px 20px;
	font-size: 14px;
	line-height: 1.4;
}

.hfsb-live-bar a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
}

.hfsb-bubble.hfsb-bubble--bar-visible {
	bottom: 76px;
}

@media (max-width: 480px) {
	.hfsb-bubble {
		right: 14px;
		bottom: 14px;
	}
	.hfsb-toggle {
		width: 58px;
		height: 58px;
	}
	.hfsb-icon {
		width: 46px;
		height: 46px;
	}
	.hfsb-live-bar {
		padding: 10px 14px;
		font-size: 13px;
	}
	.hfsb-bubble.hfsb-bubble--bar-visible {
		bottom: 66px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hfsb-icon,
	.hfsb-toggle-icon,
	.hfsb-live-dot {
		transition: none !important;
		animation: none !important;
	}
}
