.cn-floating-gateway {
    position: fixed !important;
    top: 50px !important;
    right: 40px !important;
    z-index: 99999 !important;
    will-change: transform;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(10px);
}

.cn-floating-gateway.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.cn-floating-gateway__link {
    display: block;
    text-decoration: none;
    outline: none;
}

.cn-floating-gateway__img {
    display: block;
    width: auto;
    max-width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cn-floating-gateway:hover {
    transform: translateY(-4px) !important;
}

.cn-floating-gateway:hover .cn-floating-gateway__img {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    filter: brightness(1.05);
}

.cn-floating-gateway:active {
    transform: scale(0.96) !important;
}

@media (max-width: 768px) {
    .cn-floating-gateway {
        top: 20px !important;
        right: 20px !important;
    }
    .cn-floating-gateway__img {
        max-width: 120px;
    }
}
