.kolbo-guide {
    position: absolute;
    z-index: 9999;
    background: #0b5cff;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    direction: rtl;
    font-size: 14px;
    max-width: 240px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    cursor: pointer;
    animation: kolboPulse 1.6s infinite;
}

.kolbo-arrow {
    position: absolute;
    bottom: -12px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #0b5cff;
}

@keyframes kolboPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}
