.fc-badge {
    position: fixed;
    bottom: 40px;
    right: max(24px, calc((100vw - 1340px) / 2 + 24px));
    z-index: 9999;
}

.fc-badge a {
    display: block;
    width: 65px;
    height: 65px;
}

.fc-circle {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-text {
    position: absolute;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-badge a:hover .fc-circle svg,
.fc-badge a.active .fc-circle svg {
    opacity: 0;
}

.fc-badge a:hover .fc-text,
.fc-badge a.active .fc-text {
    opacity: 1;
}

.dash-circle {
    animation: dashRotate 6s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes dashRotate {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -113; }
}

@media (max-width: 768px) {
    .fc-badge {
        bottom: 16px;
        right: 16px;
    }
}