.btn:hover { transform: translateY(-3px); } .link { display: inline-block; transition: transform .25s cubic-bezier(.4,0,.2,1); } .link:hover { transform: translateX(4px); }  ::-webkit-scrollbar { width: 10px;  }  ::-webkit-scrollbar-track { background: var(--scrollbar-track-color, #f1f1f1); width:12px; }  ::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb-color, #10506A); border-radius: 5px; }  ::-webkit-scrollbar-thumb:hover { background: var(--scrollbar-thumb-hover-color, #001E36); } .mobile-menu-container::-webkit-scrollbar { width: 3px; } .mobile-menu-container::-webkit-scrollbar-track { background: var(--scrollbar-track-color, #f1f1f1); } .mobile-menu-container::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb-color, #10506A); border-radius: 3px; } .mobile-menu-container::-webkit-scrollbar-thumb:hover { background: var(--scrollbar-thumb-hover-color, #001E36); }